/* ========================================
   styles.css — Buzzwind sp. z o.o.
   CLEAN VERSION (bez duplikatów)
   ======================================== */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* ========================================
   SKIP LINK (accessibility)
   ======================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c55d2;
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav__list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__list a:hover,
.nav__list a:focus {
    color: #0066cc;
}

/* Hamburger button - ukryty na desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    background: #f5f5f5;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.breadcrumb__list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb__list li:not(:last-child)::after {
    content: ' / ';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb__list a {
    color: #0066cc;
    text-decoration: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.btn--primary:hover,
.btn--primary:focus {
    background: #0052a3;
    border-color: #0052a3;
}

.btn--secondary {
    background: #fff;
    color: #0066cc;
    border-color: #0066cc;
}

.btn--secondary:hover,
.btn--secondary:focus {
    background: #f0f7ff;
}

.btn--outline {
    background: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn--outline:hover,
.btn--outline:focus {
    background: #0066cc;
    color: #fff;
}

.btn--cta {
    background: #026f07;
    color: #fff;
    border-color: #000410;
}

.btn--cta:hover,
.btn--cta:focus {
    background: #0066cc;
}

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

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #afbed7 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111;
}

.hero__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================================
   FREE AUDIT SECTION
   ======================================== */
.free-audit {
    padding: 4rem 0;
    background: #fff8f0;
}

.free-audit__header {
    text-align: center;
    margin-bottom: 3rem;
}

.free-audit__header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.free-audit__subtitle {
    font-size: 1.125rem;
    color: #666;
}

.free-audit__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.free-audit__benefits h3 {
    margin-bottom: 1rem;
}

.free-audit__benefits ul {
    list-style: none;
    padding: 0;
}

.free-audit__benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.free-audit__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.free-audit__disclaimer {
    margin-top: 1rem;
    color: #777;
}

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

.free-audit__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================================
   FORM STYLES
   ======================================== */
.audit-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.form-group--checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group--checkbox input {
    width: auto;
}

.audit-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1.5rem;
    border-radius: 4px;
    color: #155724;
}

/* ========================================
   HELP SECTION
   ======================================== */
.help-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.help-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.help-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.help-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.help-card a {
    color: #0066cc;
    font-weight: 600;
}

.help-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
}

.service-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: 4rem 0;
    background: #f9f9f9;
}

.process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.process-step__number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    background: #f7fafc;
    user-select: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: #edf2f7;
}

.faq-item p {
    padding: 1.25rem;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    color: #666;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 4rem 0;
    background: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial footer {
    font-weight: 600;
    color: #0066cc;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 4rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Kontakt page — grid formularz + dane (używane z inline style) */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #0066cc;
}

.contact-cta {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
}

.contact-cta .btn {
    display: block;
    margin-bottom: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #222;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover,
.footer-col a:focus {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-contact {
    font-size: 0.875rem;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
}

.footer-legal {
    text-align: right;
    font-size: 0.875rem;
    color: #aaa;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
/* ========================================
   COOKIE WALL (fullscreen overlay)
   ======================================== */
.cw-overlay{position:fixed;inset:0;z-index:999999;display:flex;align-items:center;justify-content:center;background:rgba(8,10,18,.78);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);padding:16px;transition:opacity .3s ease,visibility .3s ease}
.cw-overlay[aria-hidden="true"]{opacity:0;visibility:hidden;pointer-events:none}
body.cw-no-scroll{overflow:hidden}
.cw-card{background:#fff;border-radius:16px;max-width:480px;width:100%;padding:36px 32px 32px;box-shadow:0 20px 60px rgba(0,0,0,.25);text-align:center;position:relative}
.cw-icon{width:56px;height:56px;background:linear-gradient(135deg,#0066cc,#1a56db);border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.cw-icon svg{width:28px;height:28px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.cw-title{font-size:1.35rem;font-weight:700;color:#111;margin-bottom:8px;line-height:1.3}
.cw-desc{font-size:.9rem;color:#555;line-height:1.55;margin-bottom:24px}
.cw-desc a{color:#0066cc;text-decoration:underline}
.cw-buttons{display:flex;flex-direction:column;gap:10px}
.cw-btn{display:block;width:100%;padding:14px 20px;border-radius:8px;font-size:.95rem;font-weight:600;cursor:pointer;border:none;transition:background .2s,transform .1s;text-align:center;font-family:inherit}
.cw-btn:active{transform:scale(.98)}
.cw-btn--accept{background:#0066cc;color:#fff}
.cw-btn--accept:hover{background:#0052a3}
.cw-btn--reject{background:#f1f3f5;color:#333}
.cw-btn--reject:hover{background:#e2e6ea}
.cw-btn--settings{background:none;color:#0066cc;font-size:.85rem;font-weight:500;padding:8px;text-decoration:underline;border:none;cursor:pointer;font-family:inherit}
.cw-btn--settings:hover{color:#0052a3}
.cw-settings{display:none;text-align:left;margin:16px 0 8px;padding:16px;background:#f8f9fa;border-radius:10px}
.cw-settings.active{display:block}
.cw-settings__title{font-size:.85rem;font-weight:700;color:#111;margin-bottom:12px}
.cw-toggle-row{display:flex;align-items:center;justify-content:space-between;padding:8px 0;border-bottom:1px solid #e9ecef}
.cw-toggle-row:last-child{border-bottom:none}
.cw-toggle-label{font-size:.85rem;color:#333}
.cw-toggle-label small{display:block;font-size:.75rem;color:#888;font-weight:400;margin-top:2px}
.cw-switch{position:relative;width:44px;height:24px;flex-shrink:0}
.cw-switch input{opacity:0;width:0;height:0}
.cw-switch .cw-slider{position:absolute;cursor:pointer;inset:0;background:#ccc;border-radius:24px;transition:background .2s}
.cw-switch .cw-slider::before{content:'';position:absolute;width:18px;height:18px;border-radius:50%;background:#fff;left:3px;bottom:3px;transition:transform .2s}
.cw-switch input:checked+.cw-slider{background:#0066cc}
.cw-switch input:checked+.cw-slider::before{transform:translateX(20px)}
.cw-switch input:disabled+.cw-slider{background:#b0b8c1;cursor:not-allowed}
.cw-btn--save{background:#0066cc;color:#fff;margin-top:12px}
.cw-btn--save:hover{background:#0052a3}
@media(max-width:480px){.cw-card{padding:28px 20px 24px;border-radius:14px}.cw-title{font-size:1.2rem}}
 

/* ========================================
   FOCUS STYLES
   ======================================== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
summary:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
    padding: 4rem 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pricing-card--featured {
    border-color: #0066cc;
    position: relative;
}

.pricing-card--featured::before {
    content: 'Najpopularniejszy';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066cc;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff8e1;
    border-left: 4px solid #ffa000;
    font-size: 0.875rem;
}

.pricing-table {
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.pricing-table tr:hover {
    background: #f9f9f9;
}

.pricing-faq {
    padding: 4rem 0;
    background: #f9f9f9;
}

/* ========================================
   PAGE HEADER (podstrony)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #C8E6F5 0%, #d5bfed 100%);
    color: #D5DCEF;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1A237E;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #283593;
}

.page-intro {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: #283593;
}

/* ========================================
   SERVICE DETAIL (z obrazkami)
   ======================================== */
.service-detail {
    padding: 4rem 0;
    background: #fff;
}

.service-detail:nth-child(even) {
    background: #f9f9f9;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
}

.alt-bg {
    background: #f9f9f9;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-text li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Odwrócona kolejność (obraz po prawej) */
.service-detail--reverse .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail--reverse .service-image {
    order: -1;
}

.service-detail--reverse .service-text {
    order: 1;
}

/* Service CTA */
.service-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.service-cta .btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
}

.service-cta .btn--primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.service-cta .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.plan {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan__list {
    flex: 1;
    margin-bottom: 1.5rem;
}

.plan__cta {
    margin-top: auto;
}

/* ========================================
   SERVICE OVERVIEW
   ======================================== */
.service-overview {
    padding: 4rem 0;
    background: #f9f9f9;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.overview-card h2 {
    margin-bottom: 1rem;
}

.overview-card .btn {
    margin-top: 1rem;
}

/* ========================================
   WHY BOTH
   ======================================== */
.why-both {
    padding: 4rem 0;
}

.why-both h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.why-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* ========================================
   RELATED SERVICES
   ======================================== */
.related-services {
    padding: 4rem 0;
    background: #f9f9f9;
}

.related-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.related-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-card h3 {
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.related-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BACK TO OFFER
   ======================================== */
.back-to-offer {
    margin: 2rem 0;
    text-align: center;
}

.back-to-offer .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-offer .btn::before {
    content: '←';
    font-size: 1.2rem;
}

/* ========================================
   CTA SECTION (podstrony)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   EXTENDED SERVICES GRID (3x3)
   ======================================== */
.services-grid--extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ========================================
   ARTICLE ENHANCEMENTS
   ======================================== */
.lead,
.article-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-left: 4px solid #667eea;
    border-radius: 4px;
    line-height: 1.7;
}

.formula-box {
    background: #f7fafc;
    border: 2px solid #cbd5e0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
}

.formula-box p {
    margin-bottom: 0.5rem;
}

.formula-box strong {
    font-size: 1.125rem;
    color: #0066cc;
}

.formula-example {
    font-size: 0.9375rem;
    color: #666;
    font-style: italic;
}

.highlight-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.0625rem;
}

.highlight-box strong {
    color: #d84315;
}

.example-box {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.example-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #0066cc;
    font-size: 1.125rem;
}

.example-box p {
    margin-bottom: 0.75rem;
}

.example-box p:last-child {
    margin-bottom: 0;
}

.example-box ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.article-table thead {
    background: #f7fafc;
}

.article-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #cbd5e0;
}

.article-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-table tbody tr:hover {
    background: #f7fafc;
}

.article-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
    margin: 2rem 0;
    font-weight: 500;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.article-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
}

.article-cta h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.article-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.article-cta .btn {
    margin: 0 0.5rem;
}

.article-related {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.article-related h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-related li {
    margin-bottom: 0.75rem;
}

.article-related a {
    color: #667eea;
    text-decoration: none;
}

.article-related a:hover {
    text-decoration: underline;
}

/* ========================================
   TOOLS SECTION
   ======================================== */
.tools-slider {
    overflow: hidden;
}

.tools-slider .slider-container {
    overflow: hidden;
}

.tools-section img {
    transition: all 0.3s ease;
}

.tools-section img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

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

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

/* Hero animations */
.hero__content h1 { animation: fadeInSlide 0.8s ease-out; }
.hero__content .hero__subtitle { animation: fadeInSlide 1s ease-out 0.2s both; }
.hero__content .hero__cta { animation: fadeInSlide 1.2s ease-out 0.4s both; }
.hero__image { animation: fadeIn 1.2s ease-out 0.6s both; }

/* Page header animations */
.page-header h1 { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }
.page-header .page-subtitle { opacity: 0; animation: fadeInSlide 1s ease-out 0.2s forwards; }

/* Section animations */
.service-detail h2,
.service-overview h2,
.pricing-section h2 { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }

.service-detail p,
.service-detail ul,
.service-overview p { opacity: 0; animation: fadeInSlide 1s ease-out 0.2s forwards; }

/* Blog article animations */
.article-header h1 { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }
.article-meta { opacity: 0; animation: fadeInSlide 1s ease-out 0.2s forwards; }
.article-image { opacity: 0; animation: fadeIn 1s ease-out 0.4s forwards; }
.article-content > p:first-of-type { opacity: 0; animation: fadeInSlide 1s ease-out 0.6s forwards; }

/* Stagger: service cards */
.service-card { animation: fadeInSlide 0.8s ease-out backwards; }
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

/* Stagger: help cards */
.help-card:nth-child(1) { animation-delay: 0.1s; }
.help-card:nth-child(2) { animation-delay: 0.2s; }
.help-card:nth-child(3) { animation-delay: 0.3s; }
.help-card:nth-child(4) { animation-delay: 0.4s; }
.help-card:nth-child(5) { animation-delay: 0.5s; }
.help-card:nth-child(6) { animation-delay: 0.6s; }

/* Stagger: process steps */
.process-step { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }
.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }

/* Stagger: FAQ items */
.faq-item { opacity: 0; animation: fadeInSlide 0.6s ease-out forwards; }
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Stagger: testimonials */
.testimonial { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }
.testimonial:nth-child(1) { animation-delay: 0.2s; }
.testimonial:nth-child(2) { animation-delay: 0.4s; }
.testimonial:nth-child(3) { animation-delay: 0.6s; }

/* Stagger: related cards */
.related-card { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }
.related-card:nth-child(1) { animation-delay: 0.2s; }
.related-card:nth-child(2) { animation-delay: 0.4s; }
.related-card:nth-child(3) { animation-delay: 0.6s; }

/* Stagger: why items */
.why-item { opacity: 0; animation: fadeInSlide 0.8s ease-out forwards; }
.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }

/* Stagger: pricing table rows */
.pricing-table tr { opacity: 0; animation: fadeInSlide 0.4s ease-out forwards; }
.pricing-table tr:nth-child(1) { animation-delay: 0.1s; }
.pricing-table tr:nth-child(2) { animation-delay: 0.15s; }
.pricing-table tr:nth-child(3) { animation-delay: 0.2s; }
.pricing-table tr:nth-child(4) { animation-delay: 0.25s; }
.pricing-table tr:nth-child(5) { animation-delay: 0.3s; }

/* CTA pulse */
.btn--primary { animation: ctaPulse 2s ease-in-out 1.5s infinite; }

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

/* ========================================
   RESPONSIVE: TABLET (769px - 1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid--extended {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE: MOBILE (max 768px)
   Jeden blok — wszystkie reguły mobile
   ======================================== */
@media (max-width: 768px) {

    /* --- HAMBURGER MENU --- */
    .menu-toggle {
        display: block;
    }

    .header__inner {
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .header__inner .nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .header__inner .btn--cta {
        display: none;
        width: 100%;
        order: 4;
        text-align: center;
        margin-top: 0.5rem;
    }

    .header__inner .nav.active {
        display: block;
        padding: 1rem 0 0.5rem;
    }

    .header__inner .btn--cta.active {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__list li a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .logo {
        flex-shrink: 0;
    }

    /* --- HERO --- */
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero__content h1 {
        font-size: 2rem;
    }

    .trust-badge {
        flex-wrap: wrap;
    }

    .free-audit-cta h2 {
        font-size: 1.75rem !important;
    }

    /* --- FREE AUDIT --- */
    .free-audit__content {
        grid-template-columns: 1fr;
    }

    /* --- CONTACT --- */
    .contact-content {
        grid-template-columns: 1fr;
    }

    /* --- FOOTER --- */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-legal {
        text-align: left;
    }

    /* --- SERVICE DETAIL --- */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail--reverse .service-image {
        order: -1;
    }

    .service-detail--reverse .service-text {
        order: 1;
    }

    .service-text h2 {
        font-size: 1.5rem;
    }

    /* --- PAGE HEADER --- */
    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-intro {
        font-size: 1rem;
    }

    /* --- TABLES --- */
    .article-table {
        font-size: 0.875rem;
    }

    .article-table th,
    .article-table td {
        padding: 0.5rem;
    }

    .article-content .lead {
        font-size: 1.125rem;
    }

    /* --- CTA SECTION --- */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.875rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* --- GRIDS --- */
    .services-grid--extended {
        grid-template-columns: 1fr;
    }

    /* --- FIX: horizontal scroll --- */
         body {
         overflow-x: hidden;
    }

    /* --- KONTAKT: grid na 1 kolumnę --- */
    .contact-page-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* =============================================
   ARTICLE SYSTEM (baza wiedzy - artykuły)
   ============================================= */

/* ── Article Header ── */
.article-header { padding: 3rem 0 2rem; border-bottom: 1px solid #e5e7eb; }
.article-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.article-tag { display: inline-block; padding: .25rem .75rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.article-meta time { font-size: .8rem; color: #9ca3af; }
.article-header h1 { font-size: 2.25rem; line-height: 1.25; color: #1a202c; margin: 0 0 1rem; }
.article-lead { font-size: 1.1rem; color: #4a5568; line-height: 1.7; max-width: 760px; }

/* Article Tags */
.tag--seo { background: #dbeafe; color: #1d4ed8; }
.tag--local { background: #d1fae5; color: #065f46; }
.tag--opinie { background: #fce7f3; color: #9d174d; }
.tag--www { background: #d1fae5; color: #065f46; }
.tag--ux { background: #e0f2fe; color: #0369a1; }
.tag--sklepy { background: #d1fae5; color: #065f46; }
.tag--ecommerce { background: #dbeafe; color: #1d4ed8; }
.tag--tech { background: #f3f4f6; color: #374151; }

/* ── TL;DR Red Box ── */
.tldr-box { background: #fef2f2; border-left: 4px solid #dc2626; border-radius: 8px; padding: 1.5rem 2rem; margin: 2rem 0; }
.tldr-box h2 { color: #dc2626; font-size: 1rem; font-weight: 700; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .05em; }
.tldr-box ul { margin: 0; padding-left: 1.25rem; }
.tldr-box ul li { color: #1a202c; font-size: .9rem; line-height: 1.6; margin-bottom: .5rem; }
.tldr-box ul li a { color: #dc2626; text-decoration: underline; }
.tldr-box ul li:last-child { margin-bottom: 0; }

/* ── Article Body ── */
.article-body { padding: 2.5rem 0; }
.article-body h2 { font-size: 1.6rem; color: #1a202c; margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid #e5e7eb; }
.article-body h3 { font-size: 1.15rem; color: #1a202c; margin: 1.75rem 0 .75rem; }
.article-body p { color: #4a5568; line-height: 1.75; margin: 0 0 1rem; }
.article-body ul,
.article-body ol { color: #4a5568; line-height: 1.75; margin: 0 0 1rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: .4rem; }
.article-body strong { color: #1a202c; }
.article-body code { background: #f3f4f6; padding: .15rem .4rem; border-radius: 4px; font-size: .875em; color: #1a202c; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }

/* ── Info Boxes ── */
.box { border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.box--blue { background: #f0f7ff; border-left: 4px solid #0066cc; }
.box--blue h4 { color: #0066cc; margin: 0 0 .5rem; font-size: .95rem; }
.box--green { background: #f0fdf4; border-left: 4px solid #16a34a; }
.box--green h4 { color: #16a34a; margin: 0 0 .5rem; font-size: .95rem; }
.box--yellow { background: #fffbeb; border-left: 4px solid #d97706; }
.box--yellow h4 { color: #d97706; margin: 0 0 .5rem; font-size: .95rem; }
.box--purple { background: #f5f3ff; border-left: 4px solid #7c3aed; }
.box--purple h4 { color: #7c3aed; margin: 0 0 .5rem; font-size: .95rem; }
.box--gray { background: #f9fafb; border-left: 4px solid #6b7280; }
.box--gray h4 { color: #374151; margin: 0 0 .5rem; font-size: .95rem; }
.box--dark { background: #1a202c; border-radius: 10px; padding: 1.5rem 2rem; margin: 1.5rem 0; }
.box--dark h4 { color: #e2e8f0; margin: 0 0 1rem; font-size: .95rem; }
.box p, .box ul, .box ol { margin: 0; color: #374151; font-size: .9rem; line-height: 1.65; }
.box ul, .box ol { padding-left: 1.25rem; }
.box li { margin-bottom: .3rem; }

/* ── Case Box ── */
.case-box { background: #f5f3ff; border: 1px solid #c4b5fd; border-radius: 10px; padding: 1.75rem 2rem; margin: 2rem 0; }
.case-box__label { font-size: .75rem; font-weight: 700; color: #7c3aed; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.case-box h3 { margin: 0 0 .75rem; font-size: 1.15rem; color: #1a202c; }
.case-box p { margin: 0 0 .75rem; color: #374151; font-size: .9rem; line-height: 1.65; }
.case-box p:last-child { margin-bottom: 0; }
.case-result { display: inline-block; background: #7c3aed; color: #fff; font-size: .8rem; font-weight: 700; padding: .3rem .8rem; border-radius: 20px; margin-top: .25rem; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.25rem 1.5rem; }
.step__num { background: #0066cc; color: #fff; font-weight: 800; font-size: .9rem; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step__body h4 { margin: 0 0 .4rem; font-size: 1rem; color: #1a202c; }
.step__body p { margin: 0 0 .5rem; font-size: .875rem; color: #4a5568; line-height: 1.6; }
.step__body p:last-child { margin: 0; }
.step__body ul { margin: .25rem 0 .75rem; padding-left: 1.25rem; font-size: .875rem; color: #4a5568; line-height: 1.65; }
.step__body ul:last-child { margin-bottom: 0; }
.step__tip { background: #f0f7ff; border-left: 3px solid #0066cc; border-radius: 4px; padding: .6rem .9rem; margin-top: .75rem; font-size: .825rem; color: #1d4ed8; line-height: 1.55; }
.step__tip a { color: #1d4ed8; }
.step__body .business-tip { background: #f0f7ff; border-left: 3px solid #0066cc; border-radius: 4px; padding: .6rem .9rem; margin-top: .75rem; font-size: .825rem; color: #1d4ed8; line-height: 1.55; }

/* ── Errors List ── */
.errors-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.error-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; border-radius: 8px; background: #fff; border: 1px solid #e5e7eb; border-left: 3px solid #dc2626; }
.error-item__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.error-item__problem { font-weight: 700; font-size: .9rem; color: #1a202c; margin-bottom: .2rem; }
.error-item__fix { font-size: .85rem; color: #4a5568; line-height: 1.55; }
.fix-label { font-size: .75rem; font-weight: 700; color: #16a34a; text-transform: uppercase; margin-right: .3rem; }

/* ── Checklist ── */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.checklist li { display: flex; align-items: flex-start; gap: .75rem; padding: .75rem 1rem; border-radius: 8px; margin-bottom: .5rem; background: #f9fafb; font-size: .9rem; color: #374151; line-height: 1.55; }
.checklist li::before { content: "☐"; color: #0066cc; font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }

/* ── CTA Block (article) ── */
.cta-article { background: linear-gradient(135deg, #1a202c, #2d3748); border-radius: 12px; padding: 2.5rem 2rem; margin: 3rem 0; text-align: center; }
.cta-article h2 { color: #fff; font-size: 1.5rem; margin: 0 0 .75rem; }
.cta-article p { color: #cbd5e0; margin: 0 0 1.5rem; line-height: 1.6; }
.cta-article__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-article .btn-white { background: #fff; color: #1a202c; padding: .75rem 1.75rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: .95rem; transition: opacity .15s; }
.cta-article .btn-white:hover { opacity: .9; }
.cta-article .btn-outline-white { background: transparent; color: #fff; padding: .75rem 1.75rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: .95rem; border: 2px solid rgba(255,255,255,.5); transition: border-color .15s; }
.cta-article .btn-outline-white:hover { border-color: #fff; }

/* Green CTA variant (local-seo, sklepy) */
.cta-article--green { background: linear-gradient(135deg, #065f46, #047857); }
.cta-article--green .btn-white { color: #065f46; }

/* ── FAQ (article) ── */
.faq { margin: 1.5rem 0; }
.faq-item { border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: .75rem; overflow: hidden; }
.faq-item summary { padding: 1rem 1.25rem; font-weight: 600; font-size: .95rem; color: #1a202c; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "＋"; color: #0066cc; font-size: 1.1rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: "－"; }
.faq-item__body { padding: .25rem 1.25rem 1rem; color: #4a5568; font-size: .875rem; line-height: 1.7; }
.faq-item__body p { margin: 0 0 .5rem; }
.faq-item__body p:last-child { margin: 0; }
.faq-item__body code { background: #f3f4f6; padding: .1rem .35rem; border-radius: 3px; font-size: .875em; color: #1a202c; }

/* ── Related ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.related-card { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.25rem; text-decoration: none; transition: box-shadow .2s, transform .2s; display: block; }
.related-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.related-card__tag { font-size: .72rem; font-weight: 700; color: #10b981; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem; }
.related-card h4 { margin: 0 0 .4rem; font-size: .95rem; color: #1a202c; line-height: 1.4; }
.related-card p { margin: 0; font-size: .8rem; color: #718096; line-height: 1.5; }

/* ── Numbered Cards (typografia) ── */
.numbered-cards { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.numbered-card { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 1.5rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; }
.numbered-card__num { min-width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; flex-shrink: 0; background: #dbeafe; color: #1d4ed8; }
.numbered-card__body h4 { margin: 0 0 .35rem; font-size: .975rem; color: #1a202c; }
.numbered-card__body p { margin: 0; font-size: .875rem; color: #4a5568; line-height: 1.6; }

/* ── Pairing Cards (typografia) ── */
.pairing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pairing-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.pairing-card__top { padding: 1rem 1.25rem; border-bottom: 1px solid #e5e7eb; background: #f9fafb; }
.pairing-card__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #6b7280; margin-bottom: .25rem; }
.pairing-card__title { font-size: 1rem; font-weight: 700; color: #1a202c; }
.pairing-card__body { padding: 1rem 1.25rem; }
.pairing-card__body p { font-size: .85rem; color: #4a5568; margin: 0 0 .5rem; line-height: 1.55; }
.pairing-card__body p:last-child { margin: 0; }
.pairing-card__use { font-size: .78rem; color: #0066cc; font-weight: 600; }

/* ── Hierarchy Demo (typografia) ── */
.hierarchy-demo { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 2rem; margin: 1.5rem 0; }
.hierarchy-demo__h1 { font-size: 1.6rem; font-weight: 800; color: #1a202c; margin: 0 0 .4rem; padding-left: .75rem; border-left: 4px solid #0066cc; }
.hierarchy-demo__h2 { font-size: 1.2rem; font-weight: 700; color: #1a202c; margin: .75rem 0 .3rem; padding-left: .75rem; border-left: 4px solid #0ea5e9; }
.hierarchy-demo__h3 { font-size: 1rem; font-weight: 600; color: #374151; margin: .5rem 0 .25rem; padding-left: .75rem; border-left: 4px solid #7dd3fc; }
.hierarchy-demo__body { font-size: .85rem; color: #6b7280; padding-left: .75rem; margin: .2rem 0 .4rem; line-height: 1.5; }
.hierarchy-demo__legend { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px dashed #e5e7eb; }
.hierarchy-demo__legend-item { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: #6b7280; }
.hierarchy-demo__legend-dot { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; }

/* ── Metrics Grid (typografia) ── */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.metric-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.25rem; text-align: center; }
.metric-card__name { font-size: .75rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem; }
.metric-card__value { font-size: 1.4rem; font-weight: 800; color: #dc2626; margin-bottom: .3rem; }
.metric-card__desc { font-size: .78rem; color: #4a5568; line-height: 1.45; }

/* ── Platform Cards (sklepy) ── */
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.platform-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.platform-card__top { padding: 1rem 1.25rem; border-bottom: 1px solid #e5e7eb; }
.platform-card__name { font-size: 1.05rem; font-weight: 800; color: #1a202c; margin-bottom: .2rem; }
.platform-card__tagline { font-size: .8rem; color: #6b7280; }
.platform-card__body { padding: 1rem 1.25rem; }
.platform-card__body p { font-size: .85rem; color: #4a5568; margin: 0 0 .75rem; line-height: 1.55; }
.platform-card__for { font-size: .8rem; font-weight: 600; color: #065f46; background: #d1fae5; padding: .3rem .7rem; border-radius: 20px; display: inline-block; margin-bottom: .5rem; }
.platform-card__not { font-size: .8rem; font-weight: 600; color: #9d174d; background: #fce7f3; padding: .3rem .7rem; border-radius: 20px; display: inline-block; }
.platform-card__cost { font-size: .78rem; color: #6b7280; margin-top: .6rem; padding-top: .6rem; border-top: 1px dashed #e5e7eb; }

/* ── Compare Table (sklepy) ── */
.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .85rem; }
.compare-table thead tr { background: #1a202c; color: #fff; }
.compare-table th { padding: .75rem 1rem; text-align: left; font-weight: 600; }
.compare-table th:first-child { width: 30%; }
.compare-table tbody tr:nth-child(even) { background: #f9fafb; }
.compare-table td { padding: .7rem 1rem; border-bottom: 1px solid #e5e7eb; color: #374151; vertical-align: top; }
.compare-table td:first-child { font-weight: 600; color: #1a202c; }
.tag-yes { display: inline-block; background: #d1fae5; color: #065f46; padding: .1rem .5rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.tag-no { display: inline-block; background: #fee2e2; color: #991b1b; padding: .1rem .5rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.tag-mid { display: inline-block; background: #fef3c7; color: #92400e; padding: .1rem .5rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }

/* ── Cost Cards (sklepy) ── */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.cost-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.25rem; text-align: center; }
.cost-card__label { font-size: .75rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.cost-card__range { font-size: 1.4rem; font-weight: 800; color: #1a202c; margin-bottom: .35rem; }
.cost-card__desc { font-size: .78rem; color: #4a5568; line-height: 1.45; }

/* ── Risk Table (migracja) ── */
.risk-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .875rem; }
.risk-table thead tr { background: #1a202c; color: #fff; }
.risk-table th { padding: .75rem 1rem; text-align: left; font-weight: 600; }
.risk-table tbody tr:nth-child(even) { background: #f9fafb; }
.risk-table td { padding: .7rem 1rem; border-bottom: 1px solid #e5e7eb; color: #374151; vertical-align: top; line-height: 1.5; }
.risk-table td:first-child { font-weight: 600; color: #dc2626; width: 35%; }

/* ── Snippet Box (migracja) ── */
.snippet-box { background: #1a202c; border-radius: 10px; padding: 1.5rem 2rem; margin: 1.5rem 0; }
.snippet-box__label { font-size: .72rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.snippet-box p { color: #e2e8f0; font-size: .9rem; line-height: 1.7; margin: 0 0 .75rem; }
.snippet-box p:last-child { margin: 0; }
.snippet-box ul { color: #e2e8f0; font-size: .875rem; line-height: 1.65; margin: 0; padding-left: 1.25rem; }
.snippet-box li { margin-bottom: .35rem; }

/* ── Monitor Grid (migracja) ── */
.monitor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.monitor-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.monitor-card__top { padding: .75rem 1.25rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.monitor-card__top--gsc { background: #dbeafe; color: #1d4ed8; }
.monitor-card__top--ga4 { background: #fce7f3; color: #9d174d; }
.monitor-card__top--ops { background: #d1fae5; color: #065f46; }
.monitor-card__body { padding: 1rem 1.25rem; }
.monitor-card__body ul { list-style: none; padding: 0; margin: 0; }
.monitor-card__body li { font-size: .845rem; color: #374151; padding: .35rem 0 .35rem 1rem; border-bottom: 1px solid #f3f4f6; line-height: 1.5; position: relative; }
.monitor-card__body li::before { content: "→"; position: absolute; left: 0; color: #6b7280; font-size: .75rem; top: .45rem; }
.monitor-card__body li:last-child { border-bottom: none; }

/* ── NAP Table (local-seo) ── */
.nap-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .875rem; }
.nap-table thead tr { background: #1a202c; color: #fff; }
.nap-table th { padding: .75rem 1rem; text-align: left; font-weight: 600; }
.nap-table tbody tr:nth-child(even) { background: #f9fafb; }
.nap-table td { padding: .75rem 1rem; border-bottom: 1px solid #e5e7eb; vertical-align: top; color: #374151; }
.nap-table td:first-child { font-weight: 600; color: #1a202c; }
.nap-table td code { background: #fef2f2; color: #dc2626; padding: .1rem .35rem; border-radius: 3px; font-size: .8rem; }

/* ── Review Templates (local-seo) ── */
.review-templates { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.review-tpl { border-radius: 8px; padding: 1rem 1.25rem; border: 1px solid #e5e7eb; }
.review-tpl--pos { background: #f0fdf4; border-left: 4px solid #16a34a; }
.review-tpl--neu { background: #fffbeb; border-left: 4px solid #d97706; }
.review-tpl--neg { background: #fef2f2; border-left: 4px solid #dc2626; }
.review-tpl__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.review-tpl--pos .review-tpl__label { color: #16a34a; }
.review-tpl--neu .review-tpl__label { color: #d97706; }
.review-tpl--neg .review-tpl__label { color: #dc2626; }
.review-tpl__text { font-size: .875rem; color: #374151; line-height: 1.6; font-style: italic; }

/* ── Factors Grid (local-seo) ── */
.factors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.factor-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.25rem; text-align: center; }
.factor-card__icon { font-size: 2rem; margin-bottom: .5rem; }
.factor-card__name { font-size: .8rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.factor-card__title { font-size: 1rem; font-weight: 800; color: #1a202c; margin-bottom: .4rem; }
.factor-card__desc { font-size: .8rem; color: #4a5568; line-height: 1.5; }

/* ── Msg Example (local-seo) ── */
.msg-example { background: #1a202c; border-radius: 10px; padding: 1.25rem 1.5rem; margin: 1rem 0; }
.msg-example__label { font-size: .72rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .6rem; }
.msg-example__text { font-size: .9rem; color: #e2e8f0; line-height: 1.65; font-style: italic; }

/* ── Article System Responsive ── */
@media (max-width: 768px) {
    .article-header h1 { font-size: 1.65rem; }
    .grid-2, .grid-3, .pairing-grid, .platform-grid, .metrics-grid,
    .cost-grid, .monitor-grid, .factors-grid, .related-grid { grid-template-columns: 1fr; }
    .numbered-card, .step, .error-item { flex-direction: column; }
    .cta-article__btns { flex-direction: column; align-items: center; }
    .hierarchy-demo__legend { gap: .6rem; }
    .compare-table, .risk-table { font-size: .78rem; }
    .compare-table th, .compare-table td,
    .risk-table th, .risk-table td { padding: .5rem .7rem; }
}
.toc-section{padding:3rem 0;background:#f9fafb}
.toc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-top:2rem}
.toc-category{background:#fff;border-radius:12px;padding:1.75rem 2rem;box-shadow:0 2px 8px rgba(0,0,0,.07);transition:transform .2s,box-shadow .2s;border-top:4px solid transparent}
.toc-category:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(0,0,0,.1)}
.toc-category--seo{border-color:#0066cc}.toc-category--ads{border-color:#dc2626}.toc-category--analityka{border-color:#f59e0b}.toc-category--performance{border-color:#6366f1}.toc-category--www{border-color:#10b981}
.toc-category h3{margin:0 0 .3rem;font-size:1.25rem;display:flex;align-items:center;gap:.5rem}
.toc-category--seo h3{color:#0066cc}.toc-category--ads h3{color:#dc2626}.toc-category--analityka h3{color:#d97706}.toc-category--performance h3{color:#6366f1}.toc-category--www h3{color:#10b981}
.toc-count{font-size:.8rem;color:#9ca3af;margin-bottom:1.25rem}
.toc-category ul{list-style:none;padding:0;margin:0}
.toc-category li{margin-bottom:.6rem}
.toc-category li a{color:#4a5568;text-decoration:none;display:flex;align-items:baseline;gap:.4rem;font-size:.875rem;transition:color .15s}
.toc-category li a::before{content:"→";flex-shrink:0;font-size:.8rem}
.toc-category--seo li a::before{color:#0066cc}.toc-category--ads li a::before{color:#dc2626}.toc-category--analityka li a::before{color:#d97706}.toc-category--performance li a::before{color:#6366f1}.toc-category--www li a::before{color:#10b981}
.toc-category li a:hover{color:#0066cc}
.section-heading{font-size:1.75rem;margin:3rem 0 1.5rem;padding-bottom:.6rem;border-bottom:3px solid #e5e7eb;color:#1a202c;display:flex;align-items:center;gap:.5rem}
.section-heading--seo{border-color:#0066cc}.section-heading--ads{border-color:#dc2626}.section-heading--analityka{border-color:#f59e0b}.section-heading--performance{border-color:#6366f1}.section-heading--www{border-color:#10b981}
.blog-list{padding:4rem 0;background:#fff}
.blog-card{display:flex;gap:0;background:#fff;border:1px solid #e5e7eb;border-radius:10px;margin-bottom:1.5rem;overflow:hidden;transition:transform .25s,box-shadow .25s}
.blog-card:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(0,0,0,.1)}
.blog-card--reverse{flex-direction:row-reverse}
.blog-card--reverse .blog-card__content{padding:1.25rem 0 1.25rem 1.5rem}
.blog-card__img{width:260px;min-width:260px;height:175px;object-fit:cover;display:block;flex-shrink:0}
.blog-card__placeholder{width:260px;min-width:260px;height:175px;display:flex;align-items:center;justify-content:center;font-size:2.75rem;flex-shrink:0;position:relative}
.ph--seo{background:linear-gradient(135deg,#0066cc,#1e40af)}.ph--ads{background:linear-gradient(135deg,#dc2626,#991b1b)}.ph--analityka{background:linear-gradient(135deg,#f59e0b,#d97706)}.ph--performance{background:linear-gradient(135deg,#6366f1,#4338ca)}.ph--www{background:linear-gradient(135deg,#10b981,#065f46)}
.img-todo::after{content:"⚠ DODAJ WEBP";position:absolute;bottom:6px;left:6px;background:rgba(0,0,0,.65);color:#fcd34d;font-size:.6rem;font-weight:700;padding:.15rem .4rem;border-radius:4px;pointer-events:none}
.blog-card__content{flex:1;display:flex;flex-direction:column;gap:.6rem;padding:1.25rem 1.5rem 1.25rem 1.5rem}
.blog-card__tag{display:inline-block;padding:.2rem .65rem;border-radius:20px;font-size:.75rem;font-weight:600;width:fit-content}
.tag--seo{background:#dbeafe;color:#1d4ed8}.tag--ads{background:#fee2e2;color:#991b1b}.tag--analityka{background:#fef9c3;color:#854d0e}.tag--performance{background:#ede9fe;color:#4338ca}.tag--www{background:#d1fae5;color:#065f46}
.toc-category--ai{border-color:#8b5cf6}
.toc-category--ai h3{color:#7c3aed}
.toc-category--ai li a::before{color:#8b5cf6}
.section-heading--ai{border-color:#8b5cf6}
.tag--ai{background:#ede9fe;color:#5b21b6}
.blog-card__content h3{margin:0;font-size:1.1rem;line-height:1.4}
.blog-card__content h3 a{color:#1a202c;text-decoration:none}
.blog-card__content h3 a:hover{color:#0066cc}
.blog-card__content p{margin:0;color:#4a5568;font-size:.875rem;line-height:1.6}
.blog-card__meta{display:flex;align-items:center;gap:1rem;margin-top:auto;padding-top:.5rem;flex-wrap:wrap}
.blog-card__meta time{font-size:.78rem;color:#9ca3af}
.blog-card__btn{display:inline-block;padding:.35rem .9rem;border:2px solid #0066cc;border-radius:6px;color:#0066cc;font-size:.78rem;font-weight:600;text-decoration:none;transition:color .15s}
.blog-card__btn:hover{background:#0066cc;color:#fff}
@media(max-width:768px){.blog-card{flex-direction:column}.blog-card__img,.blog-card__placeholder{width:100%;min-width:0;height:200px}.toc-grid{grid-template-columns:1fr}}

/* ── ARTICLE BASE ── */
.article-header{padding:3rem 0 2rem;border-bottom:1px solid #e5e7eb}
.article-meta{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;margin-bottom:1rem}
.article-tag{display:inline-block;padding:.25rem .75rem;border-radius:20px;font-size:.75rem;font-weight:600}
.tag--seo{background:#dbeafe;color:#1d4ed8}
.tag--local{background:#d1fae5;color:#065f46}
.tag--opinie{background:#fce7f3;color:#9d174d}
.article-meta time{font-size:.8rem;color:#9ca3af}
.article-header h1{font-size:2.25rem;line-height:1.25;color:#1a202c;margin:0 0 1rem}
.article-lead{font-size:1.1rem;color:#4a5568;line-height:1.7;max-width:760px}

/* ── TL;DR RED BOX ── */
.tldr-box{background:#fef2f2;border-left:4px solid #dc2626;border-radius:8px;padding:1.5rem 2rem;margin:2rem 0}
.tldr-box h2{color:#dc2626;font-size:1rem;font-weight:700;margin:0 0 1rem;text-transform:uppercase;letter-spacing:.05em}
.tldr-box ul{margin:0;padding-left:1.25rem}
.tldr-box ul li{color:#1a202c;font-size:.9rem;line-height:1.6;margin-bottom:.5rem}
.tldr-box ul li a{color:#dc2626;text-decoration:underline}
.tldr-box ul li:last-child{margin-bottom:0}

/* ── CONTENT ── */
.article-body{padding:2.5rem 0}
.article-body h2{font-size:1.6rem;color:#1a202c;margin:2.5rem 0 1rem;padding-bottom:.5rem;border-bottom:2px solid #e5e7eb}
.article-body h3{font-size:1.15rem;color:#1a202c;margin:1.75rem 0 .75rem}
.article-body p{color:#4a5568;line-height:1.75;margin:0 0 1rem}
.article-body ul,
.article-body ol{color:#4a5568;line-height:1.75;margin:0 0 1rem;padding-left:1.5rem}
.article-body li{margin-bottom:.4rem}
.article-body strong{color:#1a202c}

/* ── GRIDS ── */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin:1.5rem 0}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin:1.5rem 0}

/* ── INFO BOXES ── */
.box{border-radius:8px;padding:1.25rem 1.5rem;margin:1.5rem 0}
.box--blue{background:#f0f7ff;border-left:4px solid #0066cc}
.box--blue h4{color:#0066cc;margin:0 0 .5rem;font-size:.95rem}
.box--green{background:#f0fdf4;border-left:4px solid #16a34a}
.box--green h4{color:#16a34a;margin:0 0 .5rem;font-size:.95rem}
.box--yellow{background:#fffbeb;border-left:4px solid #d97706}
.box--yellow h4{color:#d97706;margin:0 0 .5rem;font-size:.95rem}
.box--gray{background:#f9fafb;border-left:4px solid #6b7280}
.box--gray h4{color:#374151;margin:0 0 .5rem;font-size:.95rem}
.box--dark{background:#1a202c;border-radius:10px;padding:1.5rem 2rem;margin:1.5rem 0}
.box--dark h4{color:#e2e8f0;margin:0 0 1rem;font-size:.95rem}
.box p,.box ul,.box ol{margin:0;color:#374151;font-size:.9rem;line-height:1.65}
.box ul,.box ol{padding-left:1.25rem}
.box li{margin-bottom:.3rem}

/* ── CASE BOX ── */
.case-box{background:#f5f3ff;border:1px solid #c4b5fd;border-radius:10px;padding:1.75rem 2rem;margin:2rem 0}
.case-box__label{font-size:.75rem;font-weight:700;color:#7c3aed;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.75rem}
.case-box h3{margin:0 0 .75rem;font-size:1.15rem;color:#1a202c}
.case-box p{margin:0 0 .75rem;color:#374151;font-size:.9rem;line-height:1.65}
.case-box p:last-child{margin-bottom:0}
.case-result{display:inline-block;background:#7c3aed;color:#fff;font-size:.8rem;font-weight:700;padding:.3rem .8rem;border-radius:20px;margin-top:.25rem}

/* ── STEPS ── */
.steps{display:flex;flex-direction:column;gap:1.25rem;margin:1.5rem 0}
.step{display:flex;gap:1.25rem;align-items:flex-start;background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:1.25rem 1.5rem}
.step__num{background:#0066cc;color:#fff;font-weight:800;font-size:.95rem;width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.step__body h4{margin:0 0 .4rem;font-size:1rem;color:#1a202c}
.step__body p{margin:0 0 .5rem;font-size:.875rem;color:#4a5568;line-height:1.6}
.step__body p:last-child{margin:0}
.step__body ul{margin:.5rem 0 0;padding-left:1.25rem;font-size:.875rem;color:#4a5568}
.step__body .business-tip{background:#f0f7ff;border-left:3px solid #0066cc;border-radius:4px;padding:.6rem .9rem;margin-top:.75rem;font-size:.825rem;color:#1d4ed8;line-height:1.55}

/* ── ERRORS LIST ── */
.errors-list{display:flex;flex-direction:column;gap:.75rem;margin:1.5rem 0}
.error-item{display:flex;gap:1rem;align-items:flex-start;padding:1rem 1.25rem;border-radius:8px;background:#fff;border:1px solid #e5e7eb;border-left:3px solid #dc2626}
.error-item__icon{font-size:1.1rem;flex-shrink:0;margin-top:.1rem}
.error-item__problem{font-weight:700;font-size:.9rem;color:#1a202c;margin-bottom:.2rem}
.error-item__fix{font-size:.85rem;color:#4a5568;line-height:1.55}
.fix-label{font-size:.75rem;font-weight:700;color:#16a34a;text-transform:uppercase;margin-right:.3rem}

/* ── NAP TABLE ── */
.nap-table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.875rem}
.nap-table thead tr{background:#1a202c;color:#fff}
.nap-table th{padding:.75rem 1rem;text-align:left;font-weight:600}
.nap-table tbody tr:nth-child(even){background:#f9fafb}
.nap-table td{padding:.75rem 1rem;border-bottom:1px solid #e5e7eb;vertical-align:top;color:#374151}
.nap-table td:first-child{font-weight:600;color:#1a202c}
.nap-table td code{background:#fef2f2;color:#dc2626;padding:.1rem .35rem;border-radius:3px;font-size:.8rem}

/* ── REVIEW TEMPLATES ── */
.review-templates{display:flex;flex-direction:column;gap:.75rem;margin:1.5rem 0}
.review-tpl{border-radius:8px;padding:1rem 1.25rem;border:1px solid #e5e7eb}
.review-tpl--pos{background:#f0fdf4;border-left:4px solid #16a34a}
.review-tpl--neu{background:#fffbeb;border-left:4px solid #d97706}
.review-tpl--neg{background:#fef2f2;border-left:4px solid #dc2626}
.review-tpl__label{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.4rem}
.review-tpl--pos .review-tpl__label{color:#16a34a}
.review-tpl--neu .review-tpl__label{color:#d97706}
.review-tpl--neg .review-tpl__label{color:#dc2626}
.review-tpl__text{font-size:.875rem;color:#374151;line-height:1.6;font-style:italic}

/* ── CHECKLIST ── */
.checklist{list-style:none;padding:0;margin:1.5rem 0}
.checklist li{display:flex;align-items:flex-start;gap:.75rem;padding:.75rem 1rem;border-radius:8px;margin-bottom:.5rem;background:#f9fafb;font-size:.9rem;color:#374151;line-height:1.55}
.checklist li::before{content:"☐";color:#0066cc;font-size:1.1rem;flex-shrink:0;margin-top:.05rem}

/* ── FACTORS GRID ── */
.factors-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin:1.5rem 0}
.factor-card{background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:1.25rem;text-align:center}
.factor-card__icon{font-size:2rem;margin-bottom:.5rem}
.factor-card__name{font-size:.8rem;font-weight:700;color:#6b7280;text-transform:uppercase;letter-spacing:.04em;margin-bottom:.5rem}
.factor-card__title{font-size:1rem;font-weight:800;color:#1a202c;margin-bottom:.4rem}
.factor-card__desc{font-size:.8rem;color:#4a5568;line-height:1.5}

/* ── CTA BLOCK ── */
.cta-article{background:linear-gradient(135deg,#065f46,#047857);border-radius:12px;padding:2.5rem 2rem;margin:3rem 0;text-align:center}
.cta-article h2{color:#fff;font-size:1.5rem;margin:0 0 .75rem}
.cta-article p{color:#d1fae5;margin:0 0 1.5rem;line-height:1.6}
.cta-article__btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn-white{background:#fff;color:#065f46;padding:.75rem 1.75rem;border-radius:8px;font-weight:700;text-decoration:none;font-size:.95rem;transition:opacity .15s}
.btn-white:hover{opacity:.9}
.btn-outline-white{background:transparent;color:#fff;padding:.75rem 1.75rem;border-radius:8px;font-weight:700;text-decoration:none;font-size:.95rem;border:2px solid rgba(255,255,255,.6);transition:border-color .15s}
.btn-outline-white:hover{border-color:#fff}

/* ── FAQ ── */
.faq{margin:1.5rem 0}
.faq-item{border:1px solid #e5e7eb;border-radius:8px;margin-bottom:.75rem;overflow:hidden}
.faq-item summary{padding:1rem 1.25rem;font-weight:600;font-size:.95rem;color:#1a202c;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"＋";color:#0066cc;font-size:1.1rem;flex-shrink:0}
.faq-item[open] summary::after{content:"－"}
.faq-item__body{padding:.25rem 1.25rem 1rem;color:#4a5568;font-size:.875rem;line-height:1.7}
.faq-item__body p{margin:0 0 .5rem}
.faq-item__body p:last-child{margin:0}

/* ── RELATED ── */
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin:1.5rem 0}
.related-card{background:#f9fafb;border:1px solid #e5e7eb;border-radius:8px;padding:1.25rem;text-decoration:none;transition:box-shadow .2s,transform .2s;display:block}
.related-card:hover{box-shadow:0 6px 20px rgba(0,0,0,.08);transform:translateY(-2px)}
.related-card__tag{font-size:.72rem;font-weight:700;color:#10b981;text-transform:uppercase;letter-spacing:.04em;margin-bottom:.4rem}
.related-card h4{margin:0 0 .4rem;font-size:.95rem;color:#1a202c;line-height:1.4}
.related-card p{margin:0;font-size:.8rem;color:#718096;line-height:1.5}

/* ── MSG EXAMPLE ── */
.msg-example{background:#1a202c;border-radius:10px;padding:1.25rem 1.5rem;margin:1rem 0}
.msg-example__label{font-size:.72rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.6rem}
.msg-example__text{font-size:.9rem;color:#e2e8f0;line-height:1.65;font-style:italic}

.why-us {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.why-us h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 2rem;
}

.why-us__content {
    max-width: 720px;
    margin: 0 auto;
}

.why-us__lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-us__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.page-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #eff4ff;
  border: 1px solid #dbeafe;
  color: #1a56db;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  flex-shrink: 0;
}
.page-header__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-header__points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
}
.page-header__points li::before {
  content: "✓";
  color: #059669;
  font-weight: 800;
}
.page-header__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .page-header__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .page-header__cta .btn {
    width: 100%;
    text-align: center;
  }
}
/* ========================================
   KONIEC PLIKU
   ======================================== */