/* --- Import czcionek --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- Zmienne (paleta kolorów i style) --- */
:root {
    --cream: #F5F7FF;
    --soft-white: #FFFFFF;
    --forest: #0B1120;
    --charcoal: #1E293B;
    --warm-gray: #4D5B78;
    --sage: #6366F1;
    --rust: #22D3EE;
    --light-border: rgba(99, 102, 241, 0.18);
    --dark-border: rgba(15, 23, 42, 0.35);
    --neon-glow: rgba(99, 102, 241, 0.25);
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #22D3EE 100%);
    --gradient-surface: linear-gradient(145deg, rgba(99, 102, 241, 0.12) 0%, rgba(34, 211, 238, 0.08) 100%);
    --surface-tint: rgba(15, 23, 42, 0.04);
}

body.dark-mode {
    --cream: #020617;
    --soft-white: #0F172A;
    --forest: #E2E8F0;
    --charcoal: #E2E8F0;
    --warm-gray: #94A3B8;
    --sage: #818CF8;
    --rust: #38E1FF;
    --light-border: rgba(129, 140, 248, 0.22);
    --dark-border: rgba(12, 20, 38, 0.7);
    --neon-glow: rgba(56, 225, 255, 0.35);
    --gradient-primary: linear-gradient(135deg, #818CF8 0%, #38E1FF 100%);
    --gradient-surface: linear-gradient(145deg, rgba(129, 140, 248, 0.18) 0%, rgba(56, 225, 255, 0.16) 100%);
    --surface-tint: rgba(148, 163, 184, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 70px; /* Dla sticky nav */
}

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

section {
    padding: clamp(4rem, 10vh, 6rem) 0;
    position: relative;
}

/* Sekcje naprzemiennie */
section:nth-of-type(even) {
    background-color: var(--soft-white);
}

/* --- Nawigacja --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--soft-white);
    z-index: 1000;
    border-bottom: 1px solid var(--light-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.navbar-logo {
    font-family: 'Sora', 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-link {
    color: var(--warm-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-link:hover {
    color: var(--forest);
}

.navbar-link.active {
    color: var(--forest);
    font-weight: 600;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rust);
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--light-border);
    background: var(--soft-white);
    cursor: pointer;
    gap: 6px;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.hamburger:focus-visible {
    outline: 2px solid var(--rust);
    outline-offset: 2px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--forest);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    box-shadow: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nav-cta {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .navbar-menu {
        gap: 0.75rem;
    }

    .hamburger {
        display: flex;
        z-index: 1101;
    }

    .navbar-link {
        font-size: 0.95rem;
    }

    .nav-cta {
        margin-top: 0.5rem;
    }
}

/* --- Pasek postępu --- */
#progress-bar {
    position: fixed;
    top: 70px; /* Pod nawigacją */
    left: 0;
    height: 4px;
    background: var(--rust);
    width: 0%;
    z-index: 999;
    transition: width 0.1s linear;
}

/* --- Przełącznik motywu --- */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    z-index: 1001;
    background: var(--soft-white);
    border: 2px solid var(--light-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .theme-toggle {
        top: auto;
        bottom: 100px;
        right: 1rem;
    }
}

.theme-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--forest);
}

/* --- Sekcja Hero --- */
.hero {
    padding: 2rem 0;
    text-align: center;
    min-height: calc(80vh - 70px);
    display: flex;
    align-items: center;
    position: relative; 
    overflow: hidden; 
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* --- Animacja tła w Hero --- */
@keyframes subtle-pan {
    0% { transform: scale(1.1) translate(2%, -2%); }
    50% { transform: scale(1.1) translate(-2%, 2%); }
    100% { transform: scale(1.1) translate(2%, -2%); }
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 1;
    background-image: radial-gradient(circle, var(--sage) 0%, transparent 70%);
    opacity: 0.15;
    animation: subtle-pan 45s infinite linear alternate;
    transition: opacity 0.3s ease;
}

body.dark-mode .hero::before {
    opacity: 0.1;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 0;
        min-height: auto;
    }

    .hero-inner {
        gap: 1.5rem;
    }

    .hero-content {
        order: 1;
        display: contents;
        text-align: center;
        align-items: center;
    }

    .hero-badge,
    .hero h1,
    .hero-trust {
        width: 100%;
        max-width: min(520px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        order: 1;
    }

    .hero h1 {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .hero h1 .hero-line {
        white-space: normal;
    }

    .hero-media {
        order: 3;
        width: 100%;
        max-width: min(360px, 90vw);
        margin: 1rem auto 0;
    }

    .hero-trust {
        order: 4;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.6rem);
        line-height: 1.1;
    }

    .hero h1 .hero-line-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .hero-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: clamp(3rem, 7vw, 6rem);
    }
}

.hero-content {
    max-width: 600px;
    display: grid;
    gap: clamp(1.2rem, 2vw, 1.8rem);
}

@media (min-width: 992px) {
    .hero-content {
        flex: 1;
        padding-right: 2.5rem;
        display: grid;
        gap: clamp(1.2rem, 2vw, 1.8rem);
        margin-right: clamp(1.8rem, 3.5vw, 4rem);
    }
}

.hero-media {
    flex-shrink: 0;
    max-width: 400px;
}

@media (min-width: 992px) {
    .hero-media {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        padding-left: clamp(1.3rem, 3vw, 3.2rem);
    }
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    width: fit-content;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rust);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
}
.hero h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: clamp(2.2rem, 5.8vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--forest);
    width: fit-content;
    margin: 0 0 1.25rem 0;
    text-align: left;
}

@media (min-width: 992px) {
    .hero h1 {
        margin-left: 0;
        margin-right: 0;
    }
}


.hero h1 .hero-line {
    display: block;
    text-align: left;
    white-space: nowrap;
}

.hero h1 .hero-line-primary {
    font-weight: 700;
}

.hero h1 .hero-line-subtitle {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: rgba(32, 45, 72, 0.95);
    text-transform: none;
    margin-top: 0.35rem;
}
body.dark-mode .hero h1 .hero-line-subtitle {
    color: rgba(226, 232, 240, 0.78);
}

body.dark-mode .hero h1 {
    color: var(--cream);
}

/* --- Style Typografii --- */
h1, h2, h3 {
    font-family: 'Sora', 'Space Grotesk', sans-serif;
    color: var(--forest);
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.section-subtitle {
    text-align: center;
    color: var(--warm-gray);
    max-width: 70ch;
    margin: 0 auto 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

body.dark-mode .section-subtitle {
    color: rgba(226, 232, 240, 0.88);
}

body.dark-mode .section-subtitle a,
body.dark-mode .section-header .section-subtitle a,
body.dark-mode .faq .section-subtitle a {
    color: rgba(148, 163, 184, 0.95);
    text-decoration: underline;
}

/* --- Style Przycisków --- */
.cta-button {
    display: inline-block;
    background: var(--forest);
    color: var(--cream);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(29, 46, 48, 0.3);
    border: 2px solid var(--forest);
}

.cta-button:hover {
    background: var(--rust);
    border-color: var(--rust);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--neon-glow);
}

.cta-button.secondary {
    background: transparent;
    color: var(--forest);
    border-color: var(--light-border);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--soft-white);
    border-color: var(--forest);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cta-button.inverted {
    background: transparent;
    border: 2px solid var(--cream);
}

.cta-button.inverted:hover {
    background: var(--rust);
    border-color: var(--rust);
    color: var(--cream);
}

/* --- Sekcja Problem i Rozwiązanie --- */
.problem-solution {
    padding-top: 8rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch; 
}

@media (min-width: 768px) { 
    .problem-grid { 
        grid-template-columns: 1fr 1fr; 
    } 
}

.problem-text-box, .problem-visual-box {
    text-align: center;
    border: 1px solid var(--light-border);
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
}

.problem-visual-box {
    background-color: #f0fdf2;
}

body.dark-mode .problem-visual-box {
    background-color: #1c2b1e;
}

.problem-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin: 0 auto 1.5rem auto;
    display: block;
}

.problem-text-box h3, .problem-visual-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.problem-text-box h3 {
     color: var(--warm-gray);
}

.problem-visual-box h3 {
    color: var(--rust);
}

.problem-text-box p, .problem-visual-box p { 
    color: var(--warm-gray); 
}

/* --- Tabela Porównawcza --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--soft-white);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.comparison-table th, .comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--light-border);
}

.comparison-table th {
    font-family: 'Crimson Text', serif;
    background-color: var(--cream);
    font-size: 1.2rem;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--forest);
}

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

.comparison-table td:nth-child(3) { 
    background-color: #f0fdf2; 
}

body.dark-mode .comparison-table td:nth-child(3) { 
    background-color: #1c2b1e; 
}

.comparison-table .check-icon { 
    color: var(--sage); 
    font-weight: bold; 
}

.comparison-table .cross-icon { 
    color: var(--rust); 
    font-weight: bold; 
}

.table-footnote {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--warm-gray);
}

@media (max-width: 600px) {
    .comparison-table thead { 
        display: none; 
    }
    .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td {
        display: block; 
        width: 100%;
    }
    .comparison-table tr { 
        margin-bottom: 1rem; 
        border: 1px solid var(--light-border); 
        border-radius: 1rem; 
    }
    .comparison-table td { 
        text-align: right; 
        padding-left: 50%; 
        position: relative; 
        border-bottom: 1px solid var(--light-border); 
    }
    .comparison-table td:last-child { 
        border-bottom: none; 
    }
    .comparison-table td::before {
        content: attr(data-label);
        position: absolute; 
        left: 1.5rem; 
        width: calc(50% - 3rem);
        text-align: left; 
        font-weight: 600; 
        color: var(--forest);
    }
}

/* --- Sekcja Jak Działam --- */
.steps-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-tab {
    background-color: var(--soft-white);
    border: 2px solid var(--light-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.step-tab.active {
    border-color: var(--rust);
    box-shadow: 0 8px 25px rgba(183, 77, 42, 0.2);
    transform: translateY(-5px);
}

.step-tab .step-number {
    font-size: 2.5rem;
    font-family: 'Crimson Text', serif;
    color: var(--warm-gray);
    transition: color 0.3s ease;
}

.step-tab.active .step-number {
    color: var(--rust);
}

.step-tab .step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest);
    margin: 0.5rem 0;
}

.step-tab .step-subtitle {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

.steps-content-wrapper {
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    min-height: 150px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-content p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    text-align: center;
    max-width: 65ch;
    margin: 0 auto;
}

/* --- Sekcja Korzyści --- */
.benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
}

.benefit-card { 
    background: var(--soft-white); 
    padding: 2rem; 
    border-radius: 1.5rem; 
    border: 1px solid var(--light-border); 
}

.benefit-card .icon {
    width: 40px;
    height: 40px;
    color: var(--rust);
    margin-bottom: 1rem;
}

.benefit-card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 0.5rem; 
}

.benefit-card p { 
    color: var(--warm-gray); 
    font-size: 0.95rem; 
}

/* --- Sekcja Zaufanie --- */
.trust-box {
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 1.5rem;
    padding: clamp(2rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-box {
        grid-template-columns: auto 1fr;
        text-align: left;
    }
}

.trust-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cream);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

.trust-content .cta-button {
    font-size: 1rem;
}

/* --- Sekcja Dowód Społeczny (Testimonials) --- */
.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
}

.testimonial-card { 
    background: var(--cream); 
    padding: 2rem; 
    border-radius: 1.5rem; 
    border: 1px solid var(--light-border); 
    display: flex; 
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card .quote {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-border);
}

.author-info .author-name {
    font-weight: 600;
    color: var(--rust);
    margin: 0;
}

.author-info .author-title {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin: 0;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 46, 48, 0.95);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.testimonial-card:hover .testimonial-overlay {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-overlay h4 {
    color: var(--cream);
    font-family: 'Crimson Text', serif;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
    opacity: 0.9;
}

.testimonial-overlay .cta-button {
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
}

/* --- Sekcja Cennik --- */
.pricing {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.8), rgba(237, 250, 255, 0.85));
    border-radius: 2.5rem;
}

.pricing::before,
.pricing::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.5;
}

.pricing::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 60%);
    top: -180px;
    right: -120px;
}

.pricing::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    bottom: -140px;
    left: -80px;
}

.pricing > .container,
.pricing > .container * {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2.2rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 20px 45px rgba(12, 22, 44, 0.12);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.15), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card.recommended {
    border: 2px solid rgba(239, 68, 68, 0.35);
    box-shadow: 0 28px 60px rgba(239, 68, 68, 0.18);
}

.pricing-card.recommended::after {
    background: radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.18), transparent 55%);
}

.pricing-card.recommended .badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.pricing-card .package-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest);
}

.pricing-card .price {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--forest);
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
    display: grid;
    gap: 0.7rem;
}

.pricing-card .features li {
    color: rgba(37, 50, 76, 0.82);
    font-size: 0.95rem;
}

.pricing-card .features li svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 4px;
}

.pricing-card .cta-button {
    width: 100%;
}

body.dark-mode .pricing {
    background: linear-gradient(135deg, rgba(8, 14, 32, 0.95), rgba(6, 13, 27, 0.95));
}

body.dark-mode .pricing-card {
    background: rgba(10, 16, 32, 0.92);
    border-color: rgba(129, 140, 248, 0.25);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.8);
}

body.dark-mode .pricing-card::after {
    opacity: 0.4;
}

body.dark-mode .pricing-card .package-name,
body.dark-mode .pricing-card .price {
    color: rgba(248, 250, 252, 0.95);
}

body.dark-mode .pricing-card .features li {
    color: rgba(226, 232, 240, 0.78);
}

/* --- Sekcja Gwarancja --- */
.guarantee-section {
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.65), rgba(234, 246, 244, 0.65));
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.guarantee-card {
    display: grid;
    grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2rem, 5vw, 3.8rem);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 30px 70px rgba(12, 22, 44, 0.12);
    align-items: center;
}

.guarantee-icon {
    width: 120px;
    height: 120px;
    border-radius: 1.5rem;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 60px;
    height: 60px;
    color: var(--forest);
}

.guarantee-content h3 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--forest);
    background: rgba(34, 211, 238, 0.18);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    margin-bottom: 0.8rem;
}

.guarantee-points {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.guarantee-point {
    background: rgba(240, 247, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 1.2rem;
    padding: 1rem 1.2rem;
}

.guarantee-point strong {
    display: block;
    font-size: 0.95rem;
    color: var(--forest);
    margin-bottom: 0.4rem;
}

.guarantee-point p {
    margin: 0;
    color: rgba(37, 50, 76, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee-icon {
        margin: 0 auto;
    }

    .guarantee-badge {
        justify-content: center;
    }
}

body.dark-mode .guarantee-section {
    background: linear-gradient(135deg, rgba(8, 14, 32, 0.9), rgba(6, 13, 26, 0.9));
}

body.dark-mode .guarantee-card {
    background: rgba(10, 16, 32, 0.9);
    border-color: rgba(129, 140, 248, 0.25);
}

body.dark-mode .guarantee-icon {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(129, 140, 248, 0.35);
}

body.dark-mode .guarantee-point {
    background: rgba(19, 28, 56, 0.85);
    border-color: rgba(129, 140, 248, 0.25);
}

body.dark-mode .guarantee-point p {
    color: rgba(226, 232, 240, 0.78);
}

/* --- Sekcja Oferta Specjalna (MVP) --- */
.special-offer {
    background-color: var(--soft-white);
    padding: clamp(4rem, 10vh, 6rem) 0;
    text-align: center;
}

.special-offer .offer-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
    color: var(--cream);
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.special-offer h2 {
    color: var(--cream);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.special-offer .offer-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 248, 242, 0.9);
    margin-bottom: 1.5rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.special-offer .offer-price {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(253, 248, 242, 0.3);
}

.special-offer .cta-button {
    background: var(--rust);
    border-color: var(--rust);
    color: var(--cream);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(183, 77, 42, 0.4);
}

.special-offer .cta-button:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--rust);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(253, 248, 242, 0.3);
}

/* Tryb ciemny adjustments */
body.dark-mode .special-offer .offer-box {
    background: linear-gradient(135deg, #3a4a4c 0%, #1d2e30 100%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

body.dark-mode .special-offer .offer-box::before {
    background: radial-gradient(circle, rgba(29, 46, 48, 0.3) 0%, transparent 70%);
}

body.dark-mode .special-offer .cta-button {
    background: var(--rust);
    border-color: var(--rust);
    color: var(--cream);
    box-shadow: 0 8px 25px rgba(199, 93, 58, 0.4);
}

body.dark-mode .special-offer .cta-button:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--rust);
    box-shadow: 0 12px 30px rgba(253, 248, 242, 0.3);
}

/* --- Sekcja FAQ --- */
.faq {
    position: relative;
    padding: clamp(4rem, 12vh, 6rem) 0;
    background: linear-gradient(140deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 211, 238, 0.05) 35%, rgba(12, 23, 53, 0.08) 100%);
    overflow: hidden;
}

.faq::before,
.faq::after {
    content: '';
    position: absolute;
    width: clamp(420px, 58vw, 640px);
    height: clamp(420px, 58vw, 640px);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.22), transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.faq::before {
    top: -20%;
    left: -15%;
}

.faq::after {
    bottom: -25%;
    right: -12%;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

@media (max-width: 980px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }
}

.faq-aside {
    display: grid;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1.75rem;
    padding: clamp(1.75rem, 4vw, 2.4rem);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.32);
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: rgba(37, 50, 76, 0.92);
    width: fit-content;
}

body.dark-mode .faq-aside {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(129, 140, 248, 0.25);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.65);
}

body.dark-mode .faq-badge {
    color: rgba(226, 232, 240, 0.9);
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(129, 140, 248, 0.35);
}

body.dark-mode .faq-aside h3,
body.dark-mode .quick-faq h4,
body.dark-mode .quick-faq-question,
body.dark-mode .faq-highlights,
body.dark-mode .faq-highlights li,
body.dark-mode .faq-note,
body.dark-mode .faq-aside p {
    color: rgba(226, 232, 240, 0.92);
}

body.dark-mode .quick-faq-item,
body.dark-mode .quick-faq-answer {
    background: rgba(15, 23, 42, 0.7);
}

body.dark-mode .quick-faq-question svg {
    background: rgba(99, 102, 241, 0.25);
    color: rgba(226, 232, 240, 0.85);
}

.faq-aside h3 {
    font-size: clamp(1.55rem, 3vw, 1.9rem);
    color: var(--forest);
}

.quick-faq {
    margin: 1.5rem 0;
}

.quick-faq h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--forest);
}

.quick-faq-item {
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    overflow: hidden;
}

.quick-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    text-align: left;
}

.quick-faq-question svg {
    width: 18px;
    height: 18px;
    color: rgba(37, 50, 76, 0.72);
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    transition: transform 0.35s ease, background 0.35s ease;
}

.quick-faq-item.active .quick-faq-question svg {
    transform: rotate(45deg);
    background: rgba(99, 102, 241, 0.18);
}

.quick-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1.2rem;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.35s ease;
}

.quick-faq-item.active .quick-faq-answer {
    opacity: 1;
    padding: 0.8rem 1.2rem 1rem;
    max-height: 500px;
}

.faq-highlights {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    color: rgba(37, 50, 76, 0.9);
}

.faq-highlights li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.96rem;
}

.faq-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85), rgba(34, 211, 238, 0.7));
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(34, 211, 238, 0.78));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 18px 36px rgba(99, 102, 241, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-cta::after {
    content: '→';
    font-size: 1.1rem;
}

.faq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(34, 211, 238, 0.28);
}

.faq-accordion {
    display: grid;
    gap: 1.25rem;
}

.faq-list {
    display: grid;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 1.5rem;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    overflow: hidden;
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    transform: translateY(-4px);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: clamp(1.2rem, 3vw, 1.6rem) clamp(1.6rem, 3vw, 2rem);
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    width: 28px;
    height: 28px;
    color: rgba(37, 50, 76, 0.72);
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    transition: transform 0.35s ease, background 0.35s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    background: rgba(99, 102, 241, 0.18);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 clamp(1.6rem, 3vw, 2rem);
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: clamp(0.85rem, 2vw, 1.1rem) clamp(1.6rem, 3vw, 2rem) clamp(1.15rem, 2.3vw, 1.55rem);
    max-height: 1000px;
}

.faq-answer p {
    color: rgba(37, 50, 76, 0.82);
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.68;
    padding: 0;
}

body.dark-mode .faq {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.82) 100%);
}

body.dark-mode .faq::before,
body.dark-mode .faq::after {
    background: radial-gradient(circle at 40% 40%, rgba(56, 225, 255, 0.28), transparent 70%);
    opacity: 0.38;
}

body.dark-mode .faq-aside {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(129, 140, 248, 0.35);
    box-shadow: 0 28px 60px rgba(3, 7, 18, 0.55);
}

body.dark-mode .faq-badge {
    background: rgba(129, 140, 248, 0.14);
    border-color: rgba(129, 140, 248, 0.38);
    color: rgba(226, 232, 240, 0.75);
}

body.dark-mode .faq-highlights li {
    color: rgba(226, 232, 240, 0.8);
}

body.dark-mode .faq-cta {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.95), rgba(56, 225, 255, 0.8));
    box-shadow: 0 22px 44px rgba(56, 225, 255, 0.28);
}

body.dark-mode .faq-item {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.28);
    box-shadow: 0 26px 60px rgba(3, 7, 18, 0.55);
}

body.dark-mode .faq-question {
    color: rgba(226, 232, 240, 0.92);
}

body.dark-mode .faq-question svg {
    color: rgba(226, 232, 240, 0.85);
    background: rgba(129, 140, 248, 0.12);
}

body.dark-mode .faq-answer p {
    color: rgba(226, 232, 240, 0.78);
}

/* --- Final CTA --- */
.final-cta {
    position: relative;
    padding: clamp(4rem, 10vh, 6rem) 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(29, 46, 48, 0.9)), url('../images/tlo.webp');
    background-size: cover;
    background-position: center;
    color: rgba(248, 250, 252, 0.95);
}

.final-cta .section-tag,
.final-cta h2,
.final-cta p {
    color: rgba(248, 250, 252, 0.95);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.final-cta-copy {
    display: grid;
    gap: 1rem;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.final-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.final-cta-list li {
    position: relative;
    padding-left: 1.1rem;
}

.final-cta-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: rgba(34, 211, 238, 0.9);
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: clamp(1.8rem, 4vw, 2.5rem);
    backdrop-filter: blur(12px);
    display: grid;
    gap: 1rem;
}

body.dark-mode .subscription-highlight p,
body.dark-mode .subscription-card .package-name,
body.dark-mode .subscription-card .price,
body.dark-mode .subscription-card .offer-note,
body.dark-mode .subscription-card .subscription-note,
body.dark-mode .final-cta-card p,
body.dark-mode .final-cta-card li,
body.dark-mode .final-cta-card .final-cta-note {
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .final-cta-card {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(129, 140, 248, 0.25);
}

.final-cta-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.final-cta-card li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.final-cta-card li::before {
    content: '✔';
    color: rgba(34, 211, 238, 0.9);
    font-weight: 600;
}

.final-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta .secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

body.dark-mode .final-cta {
    background: linear-gradient(135deg, rgba(5, 9, 20, 0.95), rgba(8, 18, 28, 0.95)), url('../images/tlo.webp');
}

/* --- Formularz kontaktowy --- */
.contact-form {
    background-color: var(--soft-white);
    padding: clamp(4rem, 10vh, 6rem) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.contact-info-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 1.5rem;
    padding: clamp(1.8rem, 4vw, 2.5rem);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1.2rem;
}

.contact-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: rgba(37, 50, 76, 0.85);
}

.contact-highlights li {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.contact-highlights strong {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.18);
    color: var(--forest);
    font-size: 0.85rem;
}

body.dark-mode .contact-highlights {
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .contact-highlights strong {
    background: rgba(99, 102, 241, 0.25);
    color: rgba(241, 245, 249, 0.95);
}

.contact-meta {
    display: grid;
    gap: 1rem;
}

.contact-meta span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(37, 50, 76, 0.6);
}

.contact-meta p {
    margin: 0.2rem 0 0 0;
    color: rgba(37, 50, 76, 0.9);
}

body.dark-mode .contact-meta span {
    color: rgba(148, 163, 184, 0.85);
}

body.dark-mode .contact-meta p,
body.dark-mode .contact-meta a,
body.dark-mode .contact-note {
    color: rgba(226, 232, 240, 0.92);
}

body.dark-mode .contact-note {
    background: rgba(15, 23, 42, 0.65);
}

.contact-note {
    font-size: 0.9rem;
    color: rgba(37, 50, 76, 0.8);
    background: rgba(99, 102, 241, 0.08);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
}

.form-wrapper {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--forest);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-border);
    border-radius: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    background-color: var(--soft-white);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(183, 77, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
    opacity: 0.7;
}

/* Styl dla przycisku w formularzu */
.contact-form .cta-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(29, 46, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--neon-glow);
}

/* Styl dla animacji ładowania */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--cream);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

body.dark-mode .contact-info-panel {
    background: rgba(10, 16, 32, 0.85);
    border-color: rgba(129, 140, 248, 0.25);
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .contact-note {
    background: rgba(15, 23, 42, 0.7);
    color: rgba(226, 232, 240, 0.85);
}

/* Tryb ciemny dla formularza */
body.dark-mode .form-wrapper {
    background-color: #1A1A1A;
    border-color: rgba(168, 181, 160, 0.6);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background-color: #2D2D2D;
    border-color: rgba(168, 181, 160, 0.6);
    color: var(--cream);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(199, 93, 58, 0.2);
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: var(--warm-gray);
}

/* Responsywność */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.9rem;
    }
}

/* --- Footer --- */
.site-footer {
    background-color: var(--forest);
    color: var(--cream);
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h3 {
    color: var(--cream);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 248, 242, 0.1);
    opacity: 0.7;
}

/* Responsywność */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sub-footer {
    background-color: var(--charcoal);
    color: var(--cream);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(253, 248, 242, 0.1);
}

.sub-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sub-footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.sub-footer a {
    color: var(--cream);
    text-decoration: none;
    transition: opacity 0.3s;
}

.sub-footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-heart {
    color: var(--rust);
}

@media (max-width: 768px) {
    .sub-footer .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* --- Pływający Widget --- */
.chat-widget { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 60px; 
    height: 60px; 
    background: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); 
    z-index: 1000; 
}

.chat-widget:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); 
}

.chat-widget svg { 
    width: 28px; 
    height: 28px; 
    color: white; 
}

/* --- Animacje --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Efekty hover dla kart */
.benefit-card, .pricing-card:not(.recommended) {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover, .pricing-card:not(.recommended):hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--soft-white);
    border-top: 1px solid var(--light-border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1100;
    gap: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

body.dark-mode .cookie-banner {
    background: #1A1A1A;
    border-color: var(--dark-border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 900px;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.cookie-text {
    text-align: center;
    max-width: 600px;
}

@media (min-width: 768px) {
    .cookie-text {
        text-align: left;
    }
}

.cookie-text h3 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.cookie-text a {
    color: var(--rust);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: var(--forest);
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: row;
        width: auto;
        justify-content: flex-end;
    }
}

.cookie-btn {
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-accept {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

.cookie-accept:hover {
    background: var(--rust);
    border-color: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 77, 42, 0.3);
}

.cookie-preferences {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--light-border);
}

body.dark-mode .cookie-preferences {
    color: var(--cream);
    border-color: var(--dark-border);
}

/* Upewnij się, że przycisk "Ustawienia" jest widoczny w trybie ciemnym */
#show-preferences-btn.cookie-btn {
    color: var(--forest);
    border-color: var(--light-border);
}

body.dark-mode #show-preferences-btn.cookie-btn {
    color: #FFFFFF; /* Biały tekst */
    border-color: #FFFFFF; /* Biała ramka */
}

.cookie-preferences:hover {
    background: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

body.dark-mode .cookie-preferences:hover {
    background: rgba(255,255,255,0.05);
}

.cookie-preferences-menu {
    width: 100%;
    max-width: 600px;
    background: var(--cream);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

body.dark-mode .cookie-preferences-menu {
    background: #1A1A1A;
    border-color: var(--dark-border);
}

.cookie-preferences-menu h4 {
    font-family: 'Crimson Text', serif;
    color: var(--forest);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cookie-preferences-menu p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cookie-options-group {
    margin-bottom: 1.5rem;
}

.cookie-options-group:last-child {
    margin-bottom: 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rust);
}

.cookie-option label {
    font-weight: 500;
    color: var(--forest);
}

body.dark-mode .cookie-option label {
    color: var(--cream);
}

.cookie-option-desc {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-left: 1.5rem;
    margin-top: 0.2rem;
    line-height: 1.4;
}

.cookie-preferences-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.cookie-accept-selected {
    background: var(--forest);
    color: var(--cream);
    border: 2px solid var(--forest);
}

.cookie-accept-selected:hover {
    background: var(--rust);
    border-color: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 77, 42, 0.3);
}

.cookie-reject {
    background: transparent;
    color: var(--rust);
    border: 2px solid var(--rust);
}

.cookie-reject:hover {
    background: rgba(183, 77, 42, 0.1);
    transform: translateY(-2px);
}

/* --- Jak działam? (Steps) --- */
.steps-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-tab {
    background-color: var(--soft-white);
    border: 2px solid var(--light-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.step-tab.active {
    border-color: var(--rust);
    box-shadow: 0 8px 25px rgba(183, 77, 42, 0.2);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: var(--rust);
}

.step-tab.active .step-icon {
    color: var(--rust);
}

.step-tab .step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest);
    margin: 0.5rem 0;
}

.step-tab .step-subtitle {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

.steps-content-wrapper {
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    min-height: 150px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-content p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    text-align: center;
    max-width: 65ch;
    margin: 0 auto;
}

/* --- Portfolio --- */
.portfolio {
    position: relative;
    padding: clamp(4rem, 12vh, 6rem) 0;
    background: linear-gradient(140deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 211, 238, 0.05) 35%, rgba(12, 23, 53, 0.08) 100%);
    overflow: hidden;
}

.portfolio::before,
.portfolio::after {
    content: '';
    position: absolute;
    inset: -25% -20% auto -20%;
    height: clamp(420px, 55vh, 520px);
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.35), transparent 60%),
                radial-gradient(circle at 70% 40%, rgba(34, 211, 238, 0.25), transparent 65%);
    filter: blur(60px);
    opacity: 0.7;
    z-index: 0;
    transform: translate3d(0, var(--portfolio-parallax-y, 0px), 0);
    will-change: transform;
}

.portfolio::after {
    inset: auto -25% -30% -25%;
    height: clamp(360px, 45vh, 460px);
    background: radial-gradient(circle at 60% 30%, rgba(34, 211, 238, 0.22), transparent 65%),
                radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.28), transparent 60%);
    opacity: 0.55;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio-parallax {
    position: absolute;
    top: clamp(-6rem, -12vh, -4rem);
    left: 50%;
    width: min(1080px, 90vw);
    height: clamp(480px, 60vh, 620px);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-parallax-layer {
    position: absolute;
    inset: 0;
    border-radius: clamp(220px, 40vw, 340px);
    filter: blur(55px);
    transform: translate3d(-50%, var(--layer-shift, 0px), 0);
    left: 50%;
    width: 100%;
    mix-blend-mode: screen;
}

.portfolio-parallax-layer.layer-grid {
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.12) 0, rgba(34, 211, 238, 0.12) 1px, transparent 1px, transparent 80px),
        radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.25), transparent 60%);
    opacity: 0.6;
    --layer-shift: var(--portfolio-parallax-grid, 0px);
}

.portfolio-parallax-layer.layer-glow {
    background: radial-gradient(circle at 25% 35%, rgba(99, 102, 241, 0.45), transparent 65%),
                radial-gradient(circle at 70% 55%, rgba(34, 211, 238, 0.4), transparent 60%),
                radial-gradient(circle at 45% 80%, rgba(15, 23, 42, 0.35), transparent 70%);
    opacity: 0.8;
    filter: blur(75px);
    --layer-shift: var(--portfolio-parallax-glow, 0px);
}

.portfolio-orb {
    position: absolute;
    width: clamp(220px, 28vw, 320px);
    height: clamp(220px, 28vw, 320px);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(129, 140, 248, 0.55), transparent 65%);
    filter: blur(45px);
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-left {
    top: 12%;
    left: 12%;
    animation-delay: -2s;
    transform: translateZ(0) translate3d(0, var(--portfolio-orb-shift, 0px), 0);
}

.orb-right {
    bottom: -10%;
    right: 8%;
    animation-delay: -6s;
    transform: translateZ(0) translate3d(0, calc(var(--portfolio-orb-shift, 0px) * 0.6), 0);
    background: radial-gradient(circle at 60% 40%, rgba(56, 225, 255, 0.5), transparent 65%);
}

.portfolio-trail {
    position: absolute;
    width: 140%;
    height: clamp(160px, 26vh, 220px);
    top: 28%;
    left: 50%;
    transform: translate(-50%, 0) rotate(-4deg);
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.0) 0%, rgba(34, 211, 238, 0.15) 35%, rgba(255, 255, 255, 0.25) 50%, rgba(99, 102, 241, 0.18) 65%, rgba(99, 102, 241, 0.0) 100%);
    opacity: 0.55;
    mix-blend-mode: screen;
    filter: blur(28px);
    animation: trailDrift 10s linear infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate3d(0, var(--portfolio-orb-shift, 0px), 0);
    }
    50% {
        transform: translate3d(0, calc(var(--portfolio-orb-shift, 0px) + 24px), 0);
    }
}

@keyframes trailDrift {
    0% {
        transform: translate(-50%, -6px) rotate(-6deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-48%, 4px) rotate(-2deg);
        opacity: 0.65;
    }
    100% {
        transform: translate(-50%, -6px) rotate(-6deg);
        opacity: 0.4;
    }
}

.portfolio-grid {
    display: grid;
    /* Wymuszenie 2 kolumn dla lepszej widoczności na desktopie */
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 2.75rem);
    margin-top: clamp(2rem, 5vw, 3rem);
    position: relative;
    isolation: isolate;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .portfolio-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.portfolio-item {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    backdrop-filter: blur(8px);
    height: 100%;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: -30% -40%;
    background: conic-gradient(from 210deg, rgba(99, 102, 241, 0.35), transparent 45%, rgba(34, 211, 238, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.portfolio-item:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.18);
    border-color: rgba(99, 102, 241, 0.28);
}

.portfolio-item:hover::before {
    opacity: 0.8;
}

.portfolio-preview {
    position: relative;
    overflow: hidden;
}

.portfolio-preview::before {
    content: '';
    position: absolute;
    inset: -45% -55% 10% -55%;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.22), transparent 65%);
    opacity: 0.24;
    mix-blend-mode: screen;
    transform: rotate(8deg);
    animation: portfolioSheen 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.portfolio-image-placeholder,
.portfolio-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: clamp(280px, 34vw, 420px);
    object-fit: cover;
    display: block;
}

.portfolio-image-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.75), rgba(34, 211, 238, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.06em;
    position: relative;
}

.portfolio-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 65%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 1;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.78) 75%);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-preview::after {
    opacity: 1;
}

.portfolio-item:hover .portfolio-preview::before,
.portfolio-item:focus-within .portfolio-preview::before {
    opacity: 0.42;
    animation-duration: 4s;
}

.portfolio-overlay-label {
    font-size: 0.85rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.85);
}

@keyframes portfolioSheen {
    0%, 100% {
        transform: translate3d(-10%, -12%, 0) rotate(8deg);
    }
    45% {
        transform: translate3d(18%, 6%, 0) rotate(12deg);
    }
    70% {
        transform: translate3d(32%, 2%, 0) rotate(6deg);
    }
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.92), rgba(34, 211, 238, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.25);
}

.portfolio-cta::after {
    content: '\2197';
    font-size: 1rem;
}

.portfolio-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(34, 211, 238, 0.28);
}

.portfolio-cta-disabled {
    cursor: default;
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
    opacity: 0.7;
}

.portfolio-cta-disabled::after {
    content: '\2022';
}

.portfolio-content {
    position: relative;
    z-index: 1;
    padding: clamp(1.6rem, 3vw, 2rem);
    display: grid;
    gap: 0.8rem;
}

.portfolio-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.28);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(37, 50, 76, 0.92);
    width: fit-content;
}

.portfolio-title {
    font-size: clamp(1.35rem, 2.3vw, 1.55rem);
    color: var(--forest);
}

.portfolio-desc {
    color: rgba(37, 50, 76, 0.92);
    font-size: 0.98rem;
    line-height: 1.6;
}

[data-state="upcoming"] .portfolio-overlay-label {
    color: rgba(226, 232, 240, 0.72);
}

body.dark-mode .portfolio {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 100%);
}

body.dark-mode .portfolio::before {
    opacity: 0.45;
    filter: blur(80px);
}

body.dark-mode .portfolio::after {
    opacity: 0.35;
}

body.dark-mode .portfolio-parallax-layer.layer-grid {
    background:
        repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.08) 0, rgba(148, 163, 184, 0.08) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(90deg, rgba(129, 140, 248, 0.18) 0, rgba(129, 140, 248, 0.18) 1px, transparent 1px, transparent 80px),
        radial-gradient(circle at 40% 40%, rgba(56, 225, 255, 0.32), transparent 60%);
    opacity: 0.55;
}

body.dark-mode .portfolio-parallax-layer.layer-glow {
    background: radial-gradient(circle at 25% 35%, rgba(129, 140, 248, 0.45), transparent 65%),
                radial-gradient(circle at 70% 55%, rgba(56, 225, 255, 0.42), transparent 60%),
                radial-gradient(circle at 45% 80%, rgba(5, 12, 35, 0.45), transparent 70%);
    opacity: 0.75;
}

body.dark-mode .portfolio-orb {
    background: radial-gradient(circle at 30% 30%, rgba(129, 140, 248, 0.58), transparent 65%);
}

body.dark-mode .orb-right {
    background: radial-gradient(circle at 60% 40%, rgba(56, 225, 255, 0.5), transparent 65%);
}

body.dark-mode .portfolio-trail {
    background: linear-gradient(90deg, rgba(56, 225, 255, 0) 0%, rgba(56, 225, 255, 0.12) 35%, rgba(226, 232, 240, 0.18) 50%, rgba(129, 140, 248, 0.14) 65%, rgba(129, 140, 248, 0) 100%);
}

body.dark-mode .portfolio-preview::before {
    background:
        linear-gradient(130deg, rgba(226, 232, 240, 0.6) 0%, rgba(226, 232, 240, 0.12) 35%, rgba(226, 232, 240, 0) 70%),
        radial-gradient(circle at 20% 30%, rgba(56, 225, 255, 0.25), transparent 65%);
    opacity: 0.3;
}

body.dark-mode .portfolio-item {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 30px 55px rgba(2, 6, 23, 0.45);
}

body.dark-mode .portfolio-item::before {
    background: conic-gradient(from 200deg, rgba(129, 140, 248, 0.45), transparent 45%, rgba(56, 225, 255, 0.4), transparent);
}

body.dark-mode .portfolio-content {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.55) 100%);
}

body.dark-mode .portfolio-chip {
    background: rgba(129, 140, 248, 0.16);
    border-color: rgba(129, 140, 248, 0.32);
    color: rgba(226, 232, 240, 0.78);
}

body.dark-mode .portfolio-desc {
    color: rgba(226, 232, 240, 0.82);
}

/* --- Sekcja Korzyści (dwie kolumny) --- */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .benefits-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    max-width: 400px; /* Maksymalna szerokość zdjęcia */
    margin: 0 auto; /* Wyśrodkowanie zdjęcia na mniejszych ekranach */
}

@media (min-width: 768px) {
    .benefits-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .benefits-image img {
        max-width: none;
        margin: 0;
    }
}

/* --- Analysis Page Styles --- */
.analysis-form-section .form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-hint {
    font-size: 0.9rem;
    color: var(--warm-gray);
    text-align: center;
    margin-top: 1rem;
}

.analysis-results-section .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.analysis-results-section .result-card {
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.result-card h4 {
    font-size: 1.2rem;
    color: var(--rust);
    margin-bottom: 0.5rem;
}

.result-card .result-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.result-card .result-desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.analysis-results-section .results-details {
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem; /* Add margin between details sections */
}

.results-details h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.results-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.results-details ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-border);
}

.results-details ul li:last-child {
    border-bottom: none;
}

.results-details p {
    margin-bottom: 1rem;
}

/* --- Ranking Gauge (PRO) --- */
.ranking-gauge-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.ranking-summary-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin: 1.5rem auto 0 auto;
    max-width: 60ch;
    color: var(--warm-gray);
}

.ranking-gauge-container {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    transition: box-shadow 0.5s ease-out;
}

.ranking-gauge-container.score-low {
    box-shadow: 0 0 25px -5px #B74D2A;
}
.ranking-gauge-container.score-medium {
    box-shadow: 0 0 25px -5px #f5b700;
}
.ranking-gauge-container.score-high {
    box-shadow: 0 0 25px -5px var(--sage);
}

.ranking-gauge-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.ranking-gauge-track,
.ranking-gauge-fill {
    fill: none;
    stroke-width: 18;
}

.ranking-gauge-track {
    stroke: var(--light-border);
    opacity: 0.3;
}

.ranking-gauge-fill {
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ranking-gauge-fill.score-low {
    stroke: var(--rust);
}

.ranking-gauge-fill.score-medium {
    stroke: #f5b700;
}

.ranking-gauge-fill.score-high {
    stroke: var(--sage);
}

.ranking-score-text {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: rgba(253, 248, 242, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.05);
}

body.dark-mode .ranking-score-text {
    background: rgba(30, 46, 48, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

#ranking-score-value {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
}

#ranking-score-value::after {
    content: '/100';
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--warm-gray);
    margin-left: 4px;
}

.ranking-score-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* --- Keywords Table --- */
.keywords-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.keywords-table th,
.keywords-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-border);
}

.keywords-table th {
    font-weight: 600;
    background-color: var(--soft-white);
}

.keywords-table tbody tr:hover {
    background-color: var(--cream);
}

/* --- Recommendation Table & Cards --- */
.recommendation-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.recommendation-table th,
.recommendation-table td {
    padding: 1rem;
    border: 1px solid var(--light-border);
    vertical-align: top;
    text-align: left;
}

.recommendation-table th {
    width: 50%;
    font-size: 1.1rem;
}

.recommendation-table th:first-child {
    color: var(--sage);
}

.recommendation-table th:last-child {
    color: var(--rust);
}

.what-to-do {
    margin-top: 3rem;
    text-align: center;
}

.what-to-do h5 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Crimson Text', serif;
}

.recommendation-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.recommendation-card {
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.recommendation-card-icon {
    width: 48px;
    height: 48px;
    color: var(--rust);
    margin-bottom: 1rem;
}

.recommendation-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.recommendation-card-text {
    font-size: 0.95rem;
    color: var(--warm-gray);
    margin: 0;
}

/* --- NOWE STYLE --- */

/* Przyciski w Hero */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Nowa sekcja "Jak pracuję" - Timeline */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: var(--light-border);
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--rust);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    border: 3px solid var(--soft-white);
    z-index: 1;
}

.step-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.step-details p {
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.step-duration {
    font-style: italic;
    color: var(--sage);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .steps-timeline::before {
        left: 19px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Uproszczona tabela porównawcza */
.comparison-table.simple {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}
.comparison-table.simple th {
    text-align: center;
    width: 50%;
}
.comparison-table.simple td {
    text-align: center;
}

/* Cennik - dopiski */
.price-note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-gray);
}

.price-note--centered {
    text-align: center;
}


.subscription-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 246, 244, 0.95));
    padding: 2.5rem 2.4rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    margin-top: 3rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.subscription-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.12), transparent 40%);
    pointer-events: none;
}

.subscription-card > * {
    position: relative;
    z-index: 1;
}

.subscription-card .price {
    font-family: 'Crimson Text', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--forest);
}

.subscription-card .package-name {
    font-size: 1.5rem;
}

.subscription-card .cta-button {
    justify-self: start;
}

.subscription-highlight {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1.2rem;
    padding: 1.25rem 1.4rem;
    display: grid;
    gap: 0.4rem;
}

.subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 211, 238, 0.15);
    color: var(--forest);
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.offer-note,
.subscription-note,
.subscription-highlight p {
    color: rgba(37, 50, 76, 0.85);
}

.subscription-note {
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    border-left: 3px solid rgba(99, 102, 241, 0.35);
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
}

body.dark-mode .subscription-card {
    background: linear-gradient(135deg, rgba(10, 16, 32, 0.92), rgba(15, 27, 48, 0.92));
    border-color: rgba(129, 140, 248, 0.25);
}

body.dark-mode .subscription-card::after {
    opacity: 0.4;
}

body.dark-mode .subscription-highlight {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(129, 140, 248, 0.35);
}

body.dark-mode .subscription-note {
    background: rgba(15, 23, 42, 0.7);
    border-left-color: rgba(129, 140, 248, 0.45);
    color: rgba(226, 232, 240, 0.85);
}

body.dark-mode .subscription-highlight p,
body.dark-mode .subscription-card .package-name,
body.dark-mode .subscription-card .price,
body.dark-mode .subscription-card .offer-note,
body.dark-mode .subscription-card .subscription-badge {
    color: rgba(241, 245, 249, 0.95);
}

/* Sekcja KPI */
.kpi-section {
    background-color: var(--soft-white);
}

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

.kpi-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--light-border);
}

.kpi-card h3 {
    font-size: 3.5rem;
    color: var(--rust);
    margin-bottom: 0.5rem;
}

.kpi-card p {
    color: var(--warm-gray);
    font-weight: 500;
}

/* Sekcja Lokalizacje */
.locations-section {
    padding-bottom: 3rem;
}

.locations-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.locations-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 1.6rem;
    padding: clamp(1.8rem, 4vw, 2.5rem);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1rem;
}

.locations-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.locations-metrics li {
    display: flex;
    gap: 0.8rem;
    align-items: baseline;
}

.locations-metrics strong {
    font-size: 1.6rem;
    color: var(--forest);
}

.locations-metrics span {
    color: rgba(37, 50, 76, 0.8);
}

.locations-note {
    font-size: 0.9rem;
    color: rgba(37, 50, 76, 0.75);
}

.locations-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-content: flex-start;
}

.locations-tag {
    background-color: var(--soft-white);
    color: var(--warm-gray);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

.locations-tag.is-featured {
    background: rgba(34, 211, 238, 0.15);
    color: var(--forest);
    border-color: rgba(34, 211, 238, 0.4);
}

body.dark-mode .locations-card {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(129, 140, 248, 0.25);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.65);
}

body.dark-mode .locations-metrics strong {
    color: rgba(241, 245, 249, 0.95);
}

body.dark-mode .locations-metrics span,
body.dark-mode .locations-card p,
body.dark-mode .locations-note,
body.dark-mode .locations-section .section-subtitle {
    color: rgba(203, 213, 225, 0.9);
}

body.dark-mode .locations-tag {
    background: rgba(15, 23, 42, 0.7);
    color: rgba(226, 232, 240, 0.9);
    border-color: rgba(129, 140, 248, 0.25);
}

body.dark-mode .locations-tag.is-featured {
    background: rgba(34, 211, 238, 0.22);
    color: rgba(11, 18, 35, 0.95);
}

/* Poprawka dla listy w karcie abonamentu */
.subscription-card .features {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto;
    text-align: left;
    max-width: 400px;
}

.subscription-card .features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--warm-gray);
}

body.dark-mode .subscription-card .features li {
    color: rgba(226, 232, 240, 0.85);
}

.subscription-card .features li svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 4px;
}

/* --- DODATKOWE ANIMACJE --- */

/* Animacja "rysowania" linii w timeline */
.steps-timeline::before {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-it-works.animate .steps-timeline::before {
    transform: scaleY(1);
}

/* Animacja pojawiania się kroków w timeline (staggered) */
.how-it-works .step {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.how-it-works.animate .step {
    opacity: 1;
    transform: translateX(0);
}

.how-it-works.animate .step:nth-child(1) { transition-delay: 0.3s; }
.how-it-works.animate .step:nth-child(2) { transition-delay: 0.5s; }
.how-it-works.animate .step:nth-child(3) { transition-delay: 0.7s; }

/* Animacja "wyskakiwania" kart KPI (staggered) */
.kpi-grid .kpi-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.kpi-section.animate .kpi-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.kpi-section.animate .kpi-card:nth-child(1) { transition-delay: 0.1s; }
.kpi-section.animate .kpi-card:nth-child(2) { transition-delay: 0.2s; }
.kpi-section.animate .kpi-card:nth-child(3) { transition-delay: 0.3s; }

/* Animacja pojawiania się pigułek z lokalizacjami */
.locations-tags .locations-tag {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.locations-section.animate .locations-tag {
    opacity: 1;
    transform: translateY(0);
}

.locations-section.animate .locations-tag:nth-child(1) { transition-delay: 0.05s; }
.locations-section.animate .locations-tag:nth-child(2) { transition-delay: 0.1s; }
.locations-section.animate .locations-tag:nth-child(3) { transition-delay: 0.15s; }
.locations-section.animate .locations-tag:nth-child(4) { transition-delay: 0.2s; }
.locations-section.animate .locations-tag:nth-child(5) { transition-delay: 0.25s; }
.locations-section.animate .locations-tag:nth-child(6) { transition-delay: 0.3s; }
.locations-section.animate .locations-tag:nth-child(7) { transition-delay: 0.35s; }
.locations-section.animate .locations-tag:nth-child(8) { transition-delay: 0.4s; }
.locations-section.animate .locations-tag:nth-child(9) { transition-delay: 0.45s; }

/* Dodanie subtelnej animacji do kart z cenami przy pojawianiu się */
.pricing-grid .pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing.animate .pricing-card {
    opacity: 1;
    transform: translateY(0);
}

.pricing.animate .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing.animate .pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing.animate .pricing-card:nth-child(3) { transition-delay: 0.3s; }

.subscription-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: 0.4s; /* Pojawia się po kartach */
}

.pricing.animate .subscription-card {
    opacity: 1;
    transform: translateY(0);
}

/* --- STYLE DLA SEKCJI SEO --- */

#seo {
    background-color: var(--soft-white);
}

.availability-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--sage);
    font-weight: 500;
}

.seo-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Równe wysokości kart */
}

.seo-card {
    background: var(--cream);
    border: 1px solid var(--light-border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.seo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.seo-card.featured {
    border-color: var(--rust);
    border-width: 2px;
}

@media (min-width: 992px) {
    .seo-card.featured {
        transform: scale(1.05);
    }
    .seo-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

.seo-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rust);
    color: var(--cream);
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.seo-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.seo-card .price {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-card .features {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--warm-gray);
}

.seo-card .features li {
    margin-bottom: 0.75rem;
}

.seo-card .effect {
    font-style: italic;
    color: var(--sage);
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 40px; /* Wyrównuje przyciski do dołu */
}

.seo-card .cta-button {
    width: 100%;
    margin-top: auto; /* Wypycha przycisk na dół karty */
}

.notice {
    background-color: var(--sage);
    color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 500;
    max-width: 800px;
    margin: -1rem auto 3rem auto;
}

.badge-client {
    background-color: var(--sage);
    color: var(--cream);
    padding: 0.2rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 1rem auto;
    display: inline-block;
}

.requires-subscription {
    text-align: center;
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-top: 1rem;
}

.why-us-note {
    background-color: var(--cream);
    border: 1px solid var(--light-border);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.why-us-note h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.seo-form-wrapper {
    max-width: 700px;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0 auto;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.seo-form-wrapper h4 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.seo-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seo-form-wrapper .form-hint-inline {
    text-align: center;
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-top: 0.5rem;
}

.subscription-card.seo-dependency {
    border-style: solid;
    border-color: var(--rust);
    margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
    margin-bottom: clamp(0.35rem, 2vw, 0.75rem);
}

#seo .seo-form-wrapper {
    margin-top: clamp(0.5rem, 1.5vw, 0.9rem);
}

@media (max-width: 640px) {
    #seo .subscription-card.seo-dependency {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #seo .seo-form-wrapper {
        margin-top: 0.5rem;
    }
}

/* --- 2025 Visual Refresh --- */
body {
    background: radial-gradient(120% 120% at 50% -10%, rgba(99, 102, 241, 0.14) 0%, transparent 60%),
                radial-gradient(100% 120% at 10% 80%, rgba(34, 211, 238, 0.12) 0%, transparent 70%),
                var(--cream);
    min-height: 100%;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: -20% -20% 40% -20%;
    pointer-events: none;
    background: radial-gradient(550px at 80% 25%, rgba(99, 102, 241, 0.22), transparent 75%),
                radial-gradient(420px at 15% 70%, rgba(34, 211, 238, 0.18), transparent 75%);
    opacity: 0.6;
    z-index: -1;
    transition: opacity 0.4s ease;
}

body.dark-mode::before {
    opacity: 0.35;
}

section {
    isolation: isolate;
}

section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(34, 211, 238, 0.05) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#progress-bar {
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.45);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(12px);
}

body.dark-mode .theme-toggle {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(129, 140, 248, 0.35);
}

.navbar {
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px) saturate(140%);
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.82);
    border-bottom-color: rgba(129, 140, 248, 0.25);
}

.navbar-logo {
    color: var(--forest);
    letter-spacing: 0.02em;
}

.navbar-link {
    color: rgba(37, 50, 76, 0.92);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.dark-mode .navbar-link {
    color: rgba(226, 232, 240, 0.85);
}

.navbar-link::after {
    height: 2px;
    background: var(--gradient-primary);
}

.navbar-link:hover {
    color: var(--forest);
}

.hero {
    padding: clamp(6.5rem, 12vh, 9.5rem) 0 clamp(4rem, 10vh, 6rem);
    min-height: calc(90vh - 70px);
    justify-content: center;
    text-align: left;
}

.hero::after {
    content: none;
}

body.dark-mode .hero::after {
    content: none;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-media {
    display: grid;
    gap: 1.2rem;
    justify-items: center;
    position: relative;
    z-index: 2;
    align-self: center;
}

.hero-visual-wrapper {
    position: relative;
    width: clamp(260px, 36vw, 440px);
    animation: heroFloat 14s ease-in-out infinite;
}
.hero-visual-outline {
    display: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: var(--neon-glow);
    border-radius: 50%;
    filter: blur(40px);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-visual {
    position: relative;
    border-radius: 32px;
    padding: clamp(0.05rem, 0.18vw, 0.12rem);
    background: var(--gradient-primary);
    border: 2px solid rgba(99, 102, 241, 0.28);
    box-shadow: 0 22px 55px rgba(59, 130, 246, 0.25);
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(-1.5deg);
    }
}

body.dark-mode .hero-visual-outline {
    display: none;
}

body.dark-mode .hero-visual {
    border-color: rgba(129, 140, 248, 0.45);
    background: var(--gradient-primary);
    box-shadow: 0 45px 95px rgba(3, 7, 18, 0.6);
}

@media (max-width: 540px) {
    .hero h1 {
        font-size: clamp(1.3rem, 7vw, 1.9rem);
        gap: 0.25rem;
    }

    .hero h1 .hero-line-subtitle {
        font-size: clamp(0.95rem, 4.2vw, 1.2rem);
    }
}

@media (max-width: 720px) {
    .hero-visual-wrapper {
        width: clamp(220px, 64vw, 320px);
        animation: heroFloat 16s ease-in-out infinite;
    }

    .hero-visual {
        transform: rotate(0deg);
        border-radius: 28px;
    }

    .hero-visual-outline {
        display: none;
    }
}

body.dark-mode .hero-glow {
    background: radial-gradient(circle, rgba(56, 225, 255, 0.5), transparent 65%);
    opacity: 0.75;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: inherit;
    transform: scale(1.04);
    transform-origin: center bottom;
}

.hero-media-caption {
    font-size: 0.9rem;
    max-width: 320px;
    text-align: center;
    color: rgba(43, 56, 85, 0.9);
}

body.dark-mode .hero-media-caption {
    color: rgba(226, 232, 240, 0.7);
}

@media (max-width: 900px) {
    .hero-media {
        justify-items: center;
    }
}

@media (max-width: 720px) {
    .hero::after {
        content: none;
    }

    .hero h1 {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .hero h1 .hero-line {
        text-align: center;
    }
}

@media (min-width: 900px) {
    .hero-media-caption {
        text-align: left;
    }
}

.hero-actions {
    padding: clamp(2.5rem, 7vh, 4.5rem) 0;
}

.hero-actions-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-actions-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

.hero-actions-copy {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-actions-subtitle {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    color: rgba(15, 23, 42, 0.82);
    font-weight: 500;
    max-width: 40ch;
}

body.dark-mode .hero-actions-subtitle {
    color: rgba(226, 232, 240, 0.86);
}

.hero-actions .hero-cta-buttons {
    justify-content: flex-start;
    gap: 1rem;
}

@media (max-width: 640px) {
    .hero-actions .hero-cta-buttons {
        justify-content: center;
        text-align: center;
    }
}

.hero-actions .hero-note {
    max-width: 46ch;
}

.hero-actions-card {
    background: var(--gradient-surface);
    border: 1px solid var(--light-border);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.07);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero-actions-card::after {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.hero-actions-card > * {
    position: relative;
    z-index: 1;
}

body.dark-mode .hero-actions-card {
    background: rgba(4, 7, 20, 0.9);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.75);
}

.hero-actions-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-pill {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--charcoal);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-pill-accent {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

body.dark-mode .hero-pill {
    background: rgba(15, 23, 42, 0.65);
    color: var(--forest);
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-actions-description {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.78);
    max-width: 45ch;
}

body.dark-mode .hero-actions-description {
    color: rgba(226, 232, 240, 0.86);
}

.hero-actions-badges {
    display: grid;
    gap: 0.75rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.7);
    margin-top: 0.5rem;
}

.hero-actions-badges span {
    background: rgba(255, 255, 255, 0.55);
    border: 1px dashed rgba(15, 23, 42, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
}

body.dark-mode .hero-actions-badges {
    color: rgba(226, 232, 240, 0.8);
}

body.dark-mode .hero-actions-badges span {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(226, 232, 240, 0.25);
}

.hero-badge-full {
    width: 100%;
    text-align: center;
    letter-spacing: 0.06em;
}

.hero-badge-split {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-badge-split span {
    flex: 1 1 140px;
    text-align: center;
}

.hero-actions-side {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
}

body.dark-mode .hero-actions-side {
    background: rgba(2, 6, 23, 0.85);
    border-color: rgba(226, 232, 240, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-actions-list {
    list-style: none;
    margin-top: 1.25rem;
    display: grid;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.82);
}

.hero-actions-list li {
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}

.hero-actions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.15);
    border: 2px solid var(--sage);
}

body.dark-mode .hero-actions-list {
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .hero-actions-list li::before {
    border-color: var(--rust);
    background: rgba(56, 225, 255, 0.12);
}

.hero h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: clamp(2.2rem, 5.8vw, 3.9rem);
    line-height: 1.08;
    color: var(--forest);
    position: relative;
    z-index: 3;
    width: fit-content;
}

body.dark-mode .hero h1,
body.dark-mode .hero h1 .hero-line,
body.dark-mode .hero h1 .hero-line-subtitle {
    color: #F8FAFC;
}

.hero-trust {
    margin-top: 1.5rem;
    padding: 1.1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    max-width: 520px;
}

body.dark-mode .hero-trust {
    background: rgba(2, 6, 23, 0.8);
    border-color: rgba(226, 232, 240, 0.12);
    box-shadow: 0 10px 35px rgba(2, 6, 23, 0.6);
}

.hero-trust-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.78);
    margin-bottom: 0.6rem;
}

body.dark-mode .hero-trust-title {
    color: rgba(226, 232, 240, 0.86);
}


.hero-trust-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* --- Mobile overrides (late in file to win cascade) --- */
@media (max-width: 900px) {
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .hamburger {
        display: flex;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--light-border);
        background: var(--soft-white);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
        z-index: 1101;
    }

    .navbar-links {
        position: fixed;
        top: 70px;
        left: 50%;
        right: auto;
        display: none;
        flex-direction: column;
        gap: 0.65rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 1.25rem;
        padding: 1.2rem 1rem;
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
        pointer-events: none;
        width: auto;
        min-width: clamp(220px, 85vw, 320px);
        z-index: 1100;
    }

    .navbar-links.active {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .navbar-link {
        width: 100%;
        text-align: center;
        padding: 0.6rem 0.9rem;
        border-radius: 999px;
        background: rgba(99, 102, 241, 0.08);
    }

    .navbar-link::after {
        display: none;
    }

    .theme-toggle {
        top: auto;
        bottom: 100px;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        order: 1;
        display: contents;
        text-align: center;
        align-items: center;
    }

    .hero-badge,
    .hero h1,
    .hero-trust {
        width: 100%;
        max-width: min(520px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        order: 1;
    }

    .hero h1 {
        order: 2;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero h1 .hero-line {
        white-space: normal;
    }

    .hero-media {
        order: 3;
        width: 100%;
        max-width: min(360px, 90vw);
        margin: 1rem auto 0;
    }

    .hero {
        padding: 1.5rem 0 0;
        min-height: auto;
    }

    .hero-inner {
        gap: 1.5rem;
    }

    .hero-trust {
        order: 4;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.6rem);
        line-height: 1.1;
    }

    .hero h1 .hero-line-subtitle {
        font-size: 1rem;
    }
}

.hero-trust-metrics span {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    color: rgba(15, 23, 42, 0.72);
    flex: 1 1 140px;
    text-align: center;
}

.hero-trust-metrics strong {
    font-size: 1rem;
    margin-right: 0.25rem;
}

body.dark-mode .hero-trust-metrics span {
    background: rgba(99, 102, 241, 0.18);
    color: rgba(226, 232, 240, 0.85);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
    margin-top: 0.25rem;
}

.hero-link::after {
    content: '↗';
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.hero-link:hover::after {
    transform: translate(2px, -2px);
}

body.dark-mode .hero-link {
    color: var(--sage);
}

.hero .subtitle {
    max-width: 52ch;
    color: rgba(37, 50, 76, 0.92);
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
    text-wrap: pretty;
}

.hero-statement {
    display: grid;
    gap: 1rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 1px;
    background: var(--sage);
    opacity: 0.6;
}

.hero-highlights {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    max-width: 640px;
}

.hero-highlights li {
    position: relative;
    padding: 1.05rem 1.4rem 1.05rem 1.75rem;
    background: rgba(255, 255, 255, 0.82);
    border-left: 3px solid var(--sage);
    border-radius: 1rem;
    color: var(--warm-gray);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    font-size: 0.97rem;
}

body.dark-mode .hero-highlights li {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.25);
    color: rgba(226, 232, 240, 0.88);
    border-left-color: var(--sage);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-metric {
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(99, 102, 241, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
}

body.dark-mode .hero-metric {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(129, 140, 248, 0.25);
    color: rgba(226, 232, 240, 0.8);
}

.hero-cta-buttons {
    justify-content: flex-start;
}

@media (max-width: 640px) {
    .hero-cta-buttons {
        justify-content: center;
    }
}

.hero-note {
    font-size: 0.96rem;
    color: rgba(43, 56, 85, 0.88);
    max-width: 48ch;
}

body.dark-mode .hero-note {
    color: rgba(226, 232, 240, 0.75);
}

@media (max-width: 720px) {
    .hero-note {
        text-align: center;
    }
}

.essentials-section {
    padding-top: clamp(3rem, 8vh, 4.5rem);
}

.essentials-content {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.1rem);
    max-width: 760px;
    justify-items: start;
    margin: 0 auto;
}

.essentials-metrics {
    justify-content: flex-start;
}

@media (max-width: 720px) {
    .essentials-content {
        justify-items: center;
        text-align: left;
    }

    .essentials-metrics {
        justify-content: center;
        text-align: center;
    }
}

.process-section {
    position: relative;
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: clamp(1.4rem, 2.6vw, 1.9rem);
    border-radius: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body.dark-mode .process-step {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.3);
}

.process-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 16px 32px rgba(99, 102, 241, 0.35);
}

.process-copy h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.process-copy p {
    color: rgba(37, 50, 76, 0.92);
    margin-bottom: 0.5rem;
}

body.dark-mode .process-copy p {
    color: rgba(226, 232, 240, 0.78);
}

.process-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sage);
    font-weight: 600;
}

body.dark-mode .process-duration {
    color: rgba(129, 140, 248, 0.85);
}

@media (max-width: 640px) {
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-index {
        margin: 0 auto;
    }

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

.hero-aside {
    position: relative;
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.8rem, 3vw, 2.4rem);
    border-radius: 1.8rem;
    background: rgba(5, 10, 25, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.45);
    box-shadow: 0 35px 65px rgba(11, 17, 32, 0.45);
    color: #e2e8f0;
    overflow: hidden;
}

body.dark-mode .hero-aside {
    background: rgba(2, 6, 23, 0.82);
    border-color: rgba(129, 140, 248, 0.45);
}

.hero-aside::before {
    content: '';
    position: absolute;
    inset: -40% auto auto -30%;
    width: 320px;
    height: 320px;
    background: radial-gradient(closest-side, rgba(34, 211, 238, 0.25), transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-aside::after {
    content: '';
    position: absolute;
    inset: auto -20% -30% auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(closest-side, rgba(99, 102, 241, 0.35), transparent 70%);
    opacity: 0.65;
    pointer-events: none;
}

.hero-aside > * {
    position: relative;
    z-index: 1;
}

.hero-aside-header {
    display: grid;
    gap: 0.75rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.55);
    background: rgba(34, 211, 238, 0.1);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #38e1ff;
    font-weight: 600;
}

body.dark-mode .hero-chip {
    background: rgba(56, 225, 255, 0.2);
    border-color: rgba(56, 225, 255, 0.45);
    color: #7df5ff;
}

.hero-aside h2 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    color: #f8fafc;
    line-height: 1.3;
}

.hero-aside-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.hero-aside-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.4);
    font-size: 1.2rem;
    font-weight: 600;
    color: #38e1ff;
}

.step-copy h3 {
    font-size: 1.1rem;
    color: #f8fafc;
    margin-bottom: 0.35rem;
}

.step-copy p {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.hero-aside .step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(129, 140, 248, 0.85);
}

.hero-aside-note {
    padding: 1rem 1.2rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(56, 225, 255, 0.35);
    background: rgba(15, 23, 42, 0.55);
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
}

body.dark-mode .hero-aside-note {
    background: rgba(8, 15, 35, 0.7);
    border-color: rgba(56, 225, 255, 0.45);
    color: rgba(226, 232, 240, 0.78);
}

@media (max-width: 900px) {
    .hero {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .hero {
        text-align: center;
    }

    .hero-content {
        justify-items: center;
    }

    .hero-label::before {
        display: none;
    }

    .hero-highlights {
        text-align: left;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-aside {
        text-align: left;
    }
}

.section-header.align-left {
    text-align: left;
    max-width: 780px;
    margin-left: 0;
    justify-items: start;
}

.section-header.align-left .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.12);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rust);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16);
}

body.dark-mode .section-tag {
    background: rgba(129, 140, 248, 0.18);
    border-color: rgba(129, 140, 248, 0.35);
    color: var(--sage);
}

.insight-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
    margin-top: clamp(2.5rem, 4vw, 3rem);
}

.insight-card {
    display: grid;
    gap: 1.8rem;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 32px 65px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
}

body.dark-mode .insight-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.35);
}

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

.insight-body {
    padding: clamp(1.8rem, 3vw, 2.4rem);
    display: grid;
    gap: 1rem;
}

.insight-body h3 {
    font-size: clamp(1.6rem, 2.4vw, 1.9rem);
    color: var(--forest);
}

.insight-body p {
    color: rgba(32, 45, 72, 0.95);
    line-height: 1.7;
}

body.dark-mode .insight-body h3 {
    color: var(--forest);
}

body.dark-mode .insight-body p {
    color: rgba(226, 232, 240, 0.78);
}

.problem-card .insight-body,
.solution-card .insight-body {
    position: relative;
    padding-top: 3.2rem;
}

.problem-card .insight-body::before {
    content: 'Problem';
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(239, 68, 68, 0.8);
}

.solution-card .insight-body::before {
    content: 'Rozwiązanie';
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
}

body.dark-mode .problem-card .insight-body::before {
    background: rgba(239, 68, 68, 0.22);
    border-color: rgba(239, 68, 68, 0.45);
    color: #fca5a5;
}

body.dark-mode .solution-card .insight-body::before {
    background: rgba(34, 211, 238, 0.22);
    border-color: rgba(34, 211, 238, 0.45);
    color: #67e8f9;
}

/* --- Wyniki klientów --- */
.outcomes-grid {
    display: grid;
    gap: clamp(1.8rem, 3vw, 2.6rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: clamp(2rem, 4vw, 3rem);
}

.outcome-card {
    position: relative;
    display: grid;
    gap: 1.6rem;
    padding: clamp(1.8rem, 3vw, 2.3rem);
    border-radius: 1.8rem;
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.outcome-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -30% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(closest-side, rgba(99, 102, 241, 0.2), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.outcome-card header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.outcome-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.16);
    border: 1px solid rgba(99, 102, 241, 0.35);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--sage);
}

.outcome-metric {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(11, 17, 32, 0.8);
}

.metric-value {
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 700;
    display: inline-block;
    margin-right: 0.6rem;
    color: var(--forest);
}

.outcome-description {
    color: rgba(37, 50, 76, 0.92);
    line-height: 1.75;
}

.outcome-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(43, 56, 85, 0.86);
}

.outcomes-cta {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.8rem, 3vw, 2.6rem);
    border-radius: 2rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(34, 211, 238, 0.12));
    display: grid;
    gap: 1.8rem;
    align-items: center;
}

.outcomes-cta-copy h3 {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    margin-bottom: 0.6rem;
    color: var(--forest);
}

.outcomes-cta-copy p {
    color: rgba(37, 50, 76, 0.92);
    max-width: 52ch;
}

.outcomes-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.outcome-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.dark-mode .outcome-card {
    background: rgba(8, 15, 35, 0.78);
    border-color: rgba(129, 140, 248, 0.35);
}

body.dark-mode .outcome-card::after {
    background: radial-gradient(closest-side, rgba(129, 140, 248, 0.28), transparent 70%);
    opacity: 0.75;
}

body.dark-mode .metric-value,
body.dark-mode .outcome-metric {
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .outcome-description {
    color: rgba(226, 232, 240, 0.78);
}

body.dark-mode .outcome-meta {
    color: rgba(148, 163, 184, 0.75);
}

body.dark-mode .outcomes-cta {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.18), rgba(56, 225, 255, 0.18));
    border-color: rgba(56, 225, 255, 0.4);
}

@media (max-width: 720px) {
    .outcome-card header {
        align-items: flex-start;
    }

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

    .outcomes-cta-copy p {
        margin: 0 auto;
    }

    .outcomes-cta-actions {
        justify-content: center;
    }
}

/* --- Warianty AI vs Tradycyjna --- */
.ai-variant {
    margin-top: clamp(2.5rem, 5vw, 3.8rem);
    display: grid;
    gap: clamp(1.8rem, 3vw, 2.6rem);
}

.variant-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--sage);
    width: fit-content;
}

body.dark-mode .variant-label {
    background: rgba(129, 140, 248, 0.18);
    border-color: rgba(129, 140, 248, 0.35);
}

.battlecards-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.3rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.battle-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1.8rem;
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(12px);
    padding: clamp(1.6rem, 3vw, 2.2rem);
    display: grid;
    gap: 1.4rem;
}

.battle-card header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.battle-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.16);
    border: 1px solid rgba(99, 102, 241, 0.35);
    font-weight: 700;
    color: var(--sage);
}

.battle-meter {
    display: grid;
    gap: 0.6rem;
}

.meter-track {
    position: relative;
    height: 10px;
    background: rgba(99, 102, 241, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.meter-track .meter {
    position: absolute;
    top: 0;
    bottom: 0;
}

.meter-track .meter.agency {
    left: 0;
    width: calc(var(--agency) * 1%);
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.35), rgba(239, 68, 68, 0.65));
}

.meter-track .meter.ai {
    right: 0;
    width: calc(var(--ai) * 1%);
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.4), rgba(99, 102, 241, 0.7));
}

.meter-legends {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(43, 56, 85, 0.86);
}

.battle-columns {
    display: grid;
    gap: 1rem;
}

.battle-side {
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.battle-side.agency {
    border-color: rgba(239, 68, 68, 0.25);
    background: rgba(239, 68, 68, 0.08);
}

.battle-side.ai {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.08);
}

.side-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.6rem;
}

body.dark-mode .battle-card {
    background: rgba(8, 15, 35, 0.78);
    border-color: rgba(129, 140, 248, 0.32);
}

body.dark-mode .battle-side.agency {
    background: rgba(239, 68, 68, 0.18);
}

body.dark-mode .battle-side.ai {
    background: rgba(56, 225, 255, 0.18);
}

.slider-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.2rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.slider-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1.6rem;
    border: 1px solid rgba(99, 102, 241, 0.22);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
    padding: clamp(1.6rem, 3vw, 2.1rem);
    display: grid;
    gap: 1.2rem;
}

.slider-card header h3 {
    font-size: 1.2rem;
}

.slider-card header p {
    color: rgba(43, 56, 85, 0.88);
    font-size: 0.95rem;
}

.slider-control {
    display: grid;
    gap: 0.75rem;
}

.slider-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(43, 56, 85, 0.8);
    font-weight: 600;
}

.slider-control input[type="range"] {
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.5) 0%, rgba(34, 211, 238, 0.5) 100%);
    outline: none;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--gradient-primary);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.35);
    cursor: pointer;
}

.slider-control input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--gradient-primary);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.35);
    cursor: pointer;
}

.slider-output {
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.slider-side {
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slider-side.is-active {
    opacity: 1;
    transform: translateY(-2px);
}

body.dark-mode .slider-card {
    background: rgba(8, 15, 35, 0.78);
    border-color: rgba(129, 140, 248, 0.32);
}

body.dark-mode .slider-side {
    background: rgba(8, 15, 35, 0.82);
    border-color: rgba(129, 140, 248, 0.25);
}

.timeline-wrapper {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.timeline-column {
    position: relative;
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.timeline-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.timeline-column ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    position: relative;
}

.timeline-column ol::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 2px;
    background: rgba(99, 102, 241, 0.18);
}

.timeline-column.timeline-column--agency ol::before {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.65), rgba(239, 68, 68, 0.2));
}

.timeline-column.timeline-column--ai ol::before {
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.6), rgba(99, 102, 241, 0.3));
}

.timeline-column li {
    position: relative;
}

.timeline-column li::before {
    content: '';
    position: absolute;
    left: -1.45rem;
    top: 0.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--sage);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.timeline-column.timeline-column--agency li::before {
    border-color: rgba(239, 68, 68, 0.75);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
}

.timeline-column.timeline-column--ai li::before {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
}

.timeline-title {
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.timeline-column p {
    color: rgba(43, 56, 85, 0.88);
    line-height: 1.6;
}

body.dark-mode .timeline-column p {
    color: rgba(226, 232, 240, 0.78);
}

/* --- Laboratorium decyzji --- */
.variant-lab {
    display: grid;
    gap: clamp(2rem, 4vw, 3.2rem);
}

@media (min-width: 992px) {
    .variant-lab {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .variant-lab .variant-label,
    .variant-lab .lab-intro,
    .variant-lab .lab-control {
        grid-column: 1 / -1;
    }
}

.lab-intro {
    max-width: 720px;
    display: grid;
    gap: 1rem;
}

.lab-control {
    display: grid;
    gap: 1.4rem;
    padding: clamp(1.6rem, 3vw, 2rem);
    border-radius: 1.8rem;
    border: 1px solid rgba(99, 102, 241, 0.22);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.lab-stage-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: space-between;
    align-items: baseline;
}

.lab-stage-counter {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(43, 56, 85, 0.86);
    font-weight: 600;
}

.lab-stage-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest);
}

.lab-control .lab-slider {
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.45) 0%, rgba(34, 211, 238, 0.55) 100%);
    outline: none;
}

.lab-control .lab-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.35);
    cursor: pointer;
}

.lab-control .lab-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.35);
    cursor: pointer;
}

.lab-stage-markers {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.lab-stage-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px dashed rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(43, 56, 85, 0.9);
    transition: all 0.25s ease;
    cursor: pointer;
}

.lab-stage-marker.is-active {
    border-style: solid;
    border-color: rgba(99, 102, 241, 0.55);
    color: var(--forest);
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}

.lab-grid {
    display: grid;
    gap: clamp(1.8rem, 3vw, 2.6rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lab-stream {
    display: grid;
    gap: 1.4rem;
    padding: clamp(1.6rem, 3vw, 2.1rem);
    border-radius: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.22);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.lab-stream-label {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(43, 56, 85, 0.9);
}

.lab-steps {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lab-step {
    padding: 1.2rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background: rgba(255, 255, 255, 0.72);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0.45;
}

.lab-step:not(.is-active) {
    display: none;
}

.lab-step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(34, 211, 238, 0.16));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lab-step.is-active {
    opacity: 1;
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 18px 40px rgba(99, 102, 241, 0.25);
}

.lab-step.is-active::after {
    opacity: 1;
}

.lab-step.is-past {
    opacity: 0.7;
}

.lab-step-title {
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--forest);
}

.lab-step p {
    color: rgba(43, 56, 85, 0.88);
    position: relative;
    z-index: 1;
}

.lab-portal {
    display: grid;
    gap: 1.6rem;
    padding: clamp(1.8rem, 3vw, 2.4rem);
    border-radius: 2.2rem;
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: radial-gradient(circle at top, rgba(217, 226, 255, 0.9), rgba(255, 255, 255, 0.75));
    position: relative;
    overflow: hidden;
}

.lab-portal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="400" height="400" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="200" cy="200" r="190" stroke="rgba(99,102,241,0.08)" stroke-width="1.5" stroke-dasharray="6 10"/%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
}

.lab-portal-header {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
}

.lab-portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(99, 102, 241, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--forest);
}

.lab-portal-cards {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.lab-portal-card {
    padding: 1.4rem 1.6rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    opacity: 0.3;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.lab-portal-card:not(.is-active) {
    display: none;
}

.lab-portal-card.is-active {
    opacity: 1;
    transform: scale(1) translateY(-2px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 18px 45px rgba(99, 102, 241, 0.28);
}

.lab-portal-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.lab-portal-card p {
    color: rgba(44, 56, 82, 0.85);
    margin-bottom: 0.8rem;
}

.lab-portal-metric {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.18);
}

.lab-stream--agency {
    border-color: rgba(239, 68, 68, 0.25);
    background: rgba(255, 247, 247, 0.86);
}

.lab-stream--ai {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(237, 250, 255, 0.86);
}

body.dark-mode .lab-control,
body.dark-mode .lab-stream,
body.dark-mode .lab-portal-card {
    background: rgba(8, 15, 35, 0.78);
    border-color: rgba(129, 140, 248, 0.32);
    color: rgba(226, 232, 240, 0.85);
}

body.dark-mode .lab-stage-marker {
    background: rgba(12, 19, 45, 0.65);
    border-color: rgba(129, 140, 248, 0.25);
    color: rgba(203, 213, 225, 0.75);
}

body.dark-mode .lab-stage-marker.is-active {
    background: rgba(99, 102, 241, 0.28);
    border-color: rgba(165, 180, 252, 0.55);
    color: rgba(226, 232, 240, 0.95);
}

body.dark-mode .lab-step,
body.dark-mode .lab-portal {
    background: rgba(10, 18, 42, 0.82);
    border-color: rgba(129, 140, 248, 0.26);
    color: rgba(226, 232, 240, 0.82);
}

body.dark-mode .lab-portal::before {
    opacity: 0.3;
}

body.dark-mode .lab-portal-badge {
    background: rgba(17, 24, 56, 0.9);
    border-color: rgba(129, 140, 248, 0.35);
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .lab-portal-card p,
body.dark-mode .lab-step p {
    color: rgba(205, 216, 231, 0.85);
}

body.dark-mode .lab-portal-metric {
    background: rgba(34, 211, 238, 0.25);
    color: rgba(226, 232, 240, 0.92);
}

@media (max-width: 1024px) {
    .lab-grid {
        grid-template-columns: 1fr;
    }

    .lab-portal-card {
        transform: none;
    }

    .lab-portal-card.is-active {
        transform: translateY(-2px);
    }
}

@media (max-width: 720px) {
    .battle-columns {
        grid-template-columns: 1fr;
    }

    .slider-control {
        grid-template-columns: 1fr;
    }

    .timeline-column {
        padding-left: 1.5rem;
    }

    .lab-stage-markers {
        grid-template-columns: 1fr 1fr;
    }

    .lab-stage-marker {
        font-size: 0.72rem;
        padding: 0.45rem 0.6rem;
    }
}

.cta-button {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 22px 55px rgba(99, 102, 241, 0.35);
}

.cta-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(99, 102, 241, 0.4);
}

.cta-button.secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--forest);
    border: 1px solid rgba(99, 102, 241, 0.35);
    box-shadow: none;
}

body.dark-mode .cta-button.secondary {
    color: var(--forest);
    background: rgba(129, 140, 248, 0.15);
    border-color: rgba(129, 140, 248, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.25);
}

.wave-divider .shape-fill {
    fill: var(--cream);
    opacity: 0.9;
}

body.dark-mode .wave-divider .shape-fill {
    fill: var(--soft-white);
    opacity: 0.7;
}

.steps-timeline::before {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.35) 0%, rgba(34, 211, 238, 0.15) 100%);
}

.step {
    padding: clamp(1rem, 2vw, 1.4rem);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
}

.step-number {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.step-details {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 1.2rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

body.dark-mode .step-details {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.25);
}

.step-duration {
    color: var(--sage);
    font-weight: 600;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 1.5rem;
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
}

.benefit-card .icon {
    color: var(--sage);
    background: rgba(99, 102, 241, 0.15);
    padding: 0.85rem;
    border-radius: 1rem;
}

.benefit-card h3 {
    color: rgba(15, 23, 42, 0.9);
}

.benefit-card p {
    color: rgba(37, 50, 76, 0.75);
}

body.dark-mode .benefit-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(129, 140, 248, 0.2);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.65);
}

body.dark-mode .benefit-card h3 {
    color: rgba(241, 245, 249, 0.96);
}

body.dark-mode .benefit-card p {
    color: rgba(203, 213, 225, 0.9);
}

body.dark-mode .benefit-card .icon {
    background: rgba(99, 102, 241, 0.25);
    color: rgba(226, 232, 240, 0.9);
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 102, 241, 0.16);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

.portfolio-item:hover {
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.portfolio-image-placeholder {
    background: var(--gradient-primary);
}

.portfolio-title {
    color: var(--forest);
}

.section-header .section-subtitle {
    color: rgba(37, 50, 76, 0.92);
}

body.dark-mode .section-header .section-subtitle {
    color: rgba(226, 232, 240, 0.92);
}

.why-us-note,
.seo-form-wrapper {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
}

body.dark-mode .why-us-note,
body.dark-mode .seo-form-wrapper {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.25);
}

.site-footer {
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.95) 0%, #020617 100%);
}

.footer-bottom {
    opacity: 0.8;
}

.site-footer,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li,
.sub-footer p,
.sub-footer a {
    color: rgba(226, 232, 240, 0.9);
}

.site-footer a:hover,
.sub-footer a:hover {
    color: rgba(129, 140, 248, 1);
}

/* --- Sekcja darmowego audytu GBP --- */
.free-audit-section {
    padding: clamp(4rem, 10vh, 6rem) 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(34, 211, 238, 0.12) 100%), #f0f4ff;
    position: relative;
    overflow: hidden;
}

.free-audit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(34, 211, 238, 0.25) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
    animation: pulseBackground 6s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.free-audit-section .container {
    position: relative;
    z-index: 1;
}

.free-audit-section .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.free-audit-section .section-header.align-left {
    text-align: center;
}

.free-audit-section .section-tag {
    background: linear-gradient(135deg, var(--sage), var(--rust));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.free-audit-section .section-tag::before {
    display: none;
}

.free-audit-section .section-tag::after {
    content: '★';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.audit-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--rust));
    z-index: 1;
}

@media (min-width: 992px) {
    .audit-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.audit-form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.audit-form .form-group {
    margin-bottom: 1.2rem;
}

.audit-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--forest);
    font-size: 0.95rem;
}

.audit-form .form-group input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--light-border);
    border-radius: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    background-color: var(--soft-white);
    color: var(--charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.audit-form .form-group input:focus {
    outline: none;
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.audit-form .cta-button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--sage), var(--rust));
    color: white;
    border: none;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px var(--neon-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.audit-form .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rust), var(--sage));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.audit-form .cta-button:hover {
    background: linear-gradient(135deg, var(--rust), var(--sage));
    transform: translateY(-4px);
    box-shadow: 0 15px 30px var(--neon-glow);
}

.audit-form .cta-button:hover::before {
    opacity: 1;
}

.audit-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
    position: relative;
    padding-bottom: 0.8rem;
}

.audit-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--rust));
    border-radius: 999px;
}

.audit-info {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--light-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.audit-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.audit-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.audit-info ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.audit-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sage);
    font-weight: bold;
}

.audit-note {
    font-style: italic;
    color: var(--warm-gray);
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-border);
}

/* Tryb ciemny dla sekcji audytu */
body.dark-mode .free-audit-section {
    background-color: #1A1A1A;
}

body.dark-mode .audit-form,
body.dark-mode .audit-info {
    background-color: #2D2D2D;
    border-color: rgba(168, 181, 160, 0.6);
    color: var(--cream);
}

body.dark-mode .audit-form .form-group label {
    color: #FFFFFF;
}

body.dark-mode .audit-form .form-group input {
    background-color: #3D3D3D;
    border-color: rgba(168, 181, 160, 0.6);
    color: var(--cream);
}

body.dark-mode .audit-form .form-group input:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(56, 225, 255, 0.2);
}

body.dark-mode .audit-info h3 {
    color: #FFFFFF;
}

body.dark-mode .audit-info ul li {
    color: rgba(226, 232, 240, 0.85);
}

/* --- AUDYT GBP LANDING --- */
body.audyt-page {
    background: radial-gradient(circle at top, rgba(99,102,241,0.08), transparent 45%), #020617;
    min-height: 100vh;
}

.audyt-page main {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 4rem);
    padding-bottom: 4rem;
}

.audit-hero {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.audit-frame {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.8rem);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

@media (max-width: 640px) {
    .audit-frame {
        grid-template-columns: minmax(0, 1fr);
        padding: clamp(1.25rem, 6vw, 1.75rem);
    }
}

body.dark-mode .audit-frame {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(129, 140, 248, 0.25);
}

.audit-lead {
    display: grid;
    gap: 1rem;
}

.audit-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--sage);
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.audit-lead-subtitle {
    font-size: 1.05rem;
    max-width: 48ch;
    color: rgba(37, 50, 76, 0.8);
}

.audit-lead-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.audit-lead-metrics li {
    flex: 1 1 140px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
}

.audit-lead-metrics strong {
    display: block;
    font-size: 1.4rem;
    color: var(--forest);
}

.audit-lead-metrics span {
    font-size: 0.85rem;
    color: rgba(37, 50, 76, 0.75);
}

body.dark-mode .audit-lead-metrics li {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(129, 140, 248, 0.35);
}

body.dark-mode .audit-lead-metrics strong,
body.dark-mode .audit-lead-metrics span,
body.dark-mode .audit-lead-subtitle {
    color: rgba(226, 232, 240, 0.9);
}

.audit-trust {
    display: grid;
    gap: 0.4rem;
    color: rgba(37, 50, 76, 0.7);
}

.audit-trust div {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.audit-trust span {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-weight: 600;
}

body.dark-mode .audit-trust,
body.dark-mode .audit-trust span {
    color: rgba(226, 232, 240, 0.85);
    border-color: rgba(129, 140, 248, 0.4);
}

.audit-form-card {
    background: rgba(3, 7, 18, 0.95);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2rem);
    border: 1px solid rgba(129, 140, 248, 0.4);
    color: #fff;
    display: grid;
    gap: 1.25rem;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.65);
}

.audit-form-head p {
    font-size: 1.1rem;
    font-weight: 600;
}

.audit-form-head span {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.7);
}

.audit-mini-note ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 0.4rem;
    font-size: 0.92rem;
}

.audit-mini-note p,
.audit-mini-note li,
.audit-how h3,
.audit-how li {
    color: rgba(248, 250, 252, 0.95);
}

.audit-how {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-top: 1rem;
}

.audit-report-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.report-preview {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.report-preview header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.report-preview header strong {
    font-size: 2.4rem;
    color: var(--sage);
}

.report-preview ul,
.report-preview ol {
    margin: 0;
    padding-left: 1rem;
    color: rgba(37, 50, 76, 0.85);
}

body.dark-mode .report-preview {
    background: rgba(15, 23, 42, 0.88);
    border-color: rgba(129, 140, 248, 0.25);
    color: rgba(226, 232, 240, 0.9);
}

body.dark-mode .report-preview ul,
body.dark-mode .report-preview ol {
    color: rgba(226, 232, 240, 0.9);
}

.audit-card,
.audit-section-card,
.audit-case,
.audit-data-card,
.audit-faq details {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.audit-card,
.audit-section-card {
    padding: clamp(1.8rem, 4vw, 2.6rem);
}

body.dark-mode .audit-card,
body.dark-mode .audit-section-card,
body.dark-mode .audit-case,
body.dark-mode .audit-data-card,
body.dark-mode .audit-faq details {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(129, 140, 248, 0.35);
    color: rgba(226, 232, 240, 0.92);
}

.audit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.15);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.audit-hero h1,
.audit-hero p,
.audit-section-card h2 {
    color: var(--forest);
}

body.dark-mode .audyt-page h1,
body.dark-mode .audyt-page h2,
body.dark-mode .audit-note {
    color: rgba(241, 245, 249, 0.95);
}

.audit-intake {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.audit-intake input {
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

body.dark-mode .audit-intake input {
    background: rgba(2, 6, 23, 0.85);
    color: rgba(241, 245, 249, 0.95);
    border-color: rgba(129, 140, 248, 0.4);
}

.audit-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: #fff;
    min-height: 54px;
}

.audit-cta-btn.secondary {
    background: transparent;
    color: var(--forest);
    border: 1px solid rgba(99, 102, 241, 0.4);
}

body.dark-mode .audit-cta-btn.secondary {
    color: rgba(241, 245, 249, 0.95);
    border-color: rgba(129, 140, 248, 0.6);
}

.audit-intake input.shake {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-3px); }
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.6);
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

body.dark-mode .trust-bar span {
    background: rgba(15, 23, 42, 0.65);
    color: rgba(226, 232, 240, 0.9);
}

.report-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sage);
}

.report-snapshot {
    display: grid;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.8);
}

body.dark-mode .report-snapshot {
    color: rgba(226, 232, 240, 0.85);
}

.audit-steps ol {
    display: grid;
    gap: 1rem;
    list-style: none;
    counter-reset: steps;
    padding: 0;
}

.audit-steps li {
    counter-increment: steps;
    padding-left: 3rem;
    position: relative;
}

.audit-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    color: var(--forest);
    font-weight: 600;
}

body.dark-mode .audit-steps li::before {
    background: rgba(99, 102, 241, 0.3);
    color: rgba(241, 245, 249, 0.95);
}

.audit-checklist ul {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
}

.audit-checklist li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.audit-checklist li::before {
    content: '✔';
    color: var(--sage);
    font-weight: 700;
}

.audit-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.audit-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.audit-case strong {
    font-size: 2rem;
    display: block;
    color: var(--sage);
}

.audit-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.audit-update {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.6);
}

body.dark-mode .audit-update {
    color: rgba(148, 163, 184, 0.85);
}

.audit-secondary-cta {
    text-align: center;
}

.audit-secondary-cta .cta-button {
    margin-top: 1rem;
}

.audit-sticky-cta {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 90%);
    background: rgba(15, 23, 42, 0.92);
    border-radius: 999px;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.55);
    z-index: 999;
}

.audit-sticky-cta button {
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 640px) {
    .audit-sticky-cta {
        bottom: 0.75rem;
    }
}
.audit-steps-list,
.audit-checklist-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: rgba(37, 50, 76, 0.85);
}

.audit-steps-list li strong {
    display: block;
    font-size: 1.05rem;
}

body.dark-mode .audit-steps-list,
body.dark-mode .audit-checklist-list {
    color: rgba(226, 232, 240, 0.9);
}

.mini-audit-step2 {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}
