/* uslugi-szczegoly.css */

:root {
    --bg-dark: #0A0A0B;
}

.service-detail-page {
    background-color: var(--bg-dark) !important;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.service-hero {
    padding: 180px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(172, 195, 182, 0.1) 0%, transparent 70%);
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.process-section,
.pricing-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-section::before,
.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(172, 195, 182, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(90deg, #fff, var(--accent), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s linear infinite;
}

@keyframes textGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.in-view::after {
    width: 120px;
}

/* Process Timeline (Step-by-step) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    margin-bottom: 4rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(172, 195, 182, 0.2);
}

.process-step:hover::after {
    /* Animacja po najechaniu, element dekoracyjny */
    box-shadow: 0 0 20px var(--accent-glow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 30px var(--accent), 0 0 10px #fff;
    color: #fff;
}

.process-step h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.process-step:hover p {
    opacity: 1;
}

/* Timeline Pulse Animation */
.timeline-connector {
    position: absolute;
    top: 40px;
    /* adjusted to intersect with the steps nicely */
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), #fff, var(--accent), transparent);
    background-size: 200% 100%;
    z-index: 1;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px var(--accent));
    animation: pulse-flow 3s infinite linear;
}

@media (max-width: 768px) {
    .timeline-connector {
        display: none;
        /* ukryj na mobilnych gdzie grid robi się kolumną */
    }
}

@keyframes pulse-flow {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Delivery Options Cards */
.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .delivery-options {
        grid-template-columns: 1fr;
    }
}

.delivery-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.5s ease-out, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.delivery-card:hover {
    border-color: var(--accent);
    background: rgba(172, 195, 182, 0.05);
}

.delivery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.delivery-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 2;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.inpost-badge {
    display: inline-block;
    background: #FFCC00;
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card:hover .inpost-badge {
    transform: translate(3px, -3px) rotate(5deg);
    box-shadow: -2px 5px 10px rgba(0, 0, 0, 0.5);
}

/* Pricing Section */
.pricing-table-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(172, 195, 182, 0.05);
}

.pricing-name {
    font-weight: 500;
    font-size: 1.1rem;
}

.pricing-value {
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px 100px;
    background: linear-gradient(180deg, transparent, rgba(172, 195, 182, 0.05));
    border-top: 1px solid var(--border-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn-cta-large {
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

/* Shipping Form Section */
.shipping-form-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-control option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}


.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    min-width: 1.2rem;
    min-height: 1.2rem;
    accent-color: var(--accent);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.code-display-group {
    background: rgba(172, 195, 182, 0.1);
    border: 1px dashed var(--accent);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    display: none;
    /* Ukryte do momentu wybrania urządzenia */
}

.code-display-group.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.generated-code {
    font-family: 'Space Grotesk', monospace;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

/* 3D Box Success Animation */
.success-animation-container {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(172, 195, 182, 0.2);
}

.success-animation-container.active {
    display: block;
    animation: fadeIn 0.8s ease-out;
}

.success-animation-container p {
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}

.success-animation-container.active p {
    animation: fadeInText 0.5s forwards 5s;
    /* Delay to show after truck is loaded */
}

@keyframes fadeInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Persistent 3D Isometric Hero Animation --- */
.hero-3d-scene {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
    margin: 3rem auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1.8);
}

@media (max-width: 600px) {
    .hero-3d-scene {
        transform: scale(1.2);
        height: 350px;
    }
}

.isometric-carton {
    position: relative;
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(45deg);
}

.carton-shadow {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    filter: blur(15px);
    transform: translateZ(-2px);
}

.carton-base {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.carton-face {
    position: absolute;
    background: #8b5a2b;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.carton-bottom {
    width: 120px;
    height: 120px;
    transform: translateZ(0);
    background: #5c3a18;
}

/* Walls */
.carton-front {
    width: 120px;
    height: 60px;
    top: 120px;
    left: 0;
    transform-origin: top;
    transform: rotateX(90deg);
}

.carton-back {
    width: 120px;
    height: 60px;
    top: -60px;
    left: 0;
    transform-origin: bottom;
    transform: rotateX(-90deg);
    background: #7a4f25;
}

.carton-left {
    width: 60px;
    height: 120px;
    top: 0;
    left: -60px;
    transform-origin: right;
    transform: rotateY(90deg);
    background: #6e4620;
}

.carton-right {
    width: 60px;
    height: 120px;
    top: 0;
    left: 120px;
    transform-origin: left;
    transform: rotateY(-90deg);
    background: #9c6732;
}

/* Glow Effect inside box */
.carton-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 10px;
    left: 10px;
    background: var(--accent);
    filter: blur(20px);
    opacity: 0;
    transform: translateZ(5px);
    animation: glowPulseLoop 6s infinite;
}

@keyframes glowPulseLoop {

    0%,
    30% {
        opacity: 0;
        box-shadow: 0 0 0px var(--accent);
    }

    35%,
    60% {
        opacity: 0.8;
        box-shadow: 0 0 40px var(--accent);
    }

    70%,
    100% {
        opacity: 0;
        box-shadow: 0 0 0px var(--accent);
    }
}

/* Falling Device (Phone) */
.falling-device-3d {
    position: absolute;
    width: 40px;
    height: 60px;
    top: 30px;
    left: 40px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin: bottom center;
    color: #fff;
    opacity: 0;
    animation: dropDeviceLoop 6s infinite cubic-bezier(0.5, 0, 1, 1);
}

.falling-device-3d svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px !important;
    height: 60px !important;
    display: block;
}

@keyframes dropDeviceLoop {

    0%,
    15% {
        transform: translateZ(250px);
        opacity: 0;
    }

    20% {
        opacity: 1;
        transform: translateZ(150px);
    }

    30% {
        transform: translateZ(5px);
        opacity: 1;
    }

    35% {
        transform: translateZ(15px);
        opacity: 1;
    }

    40%,
    80% {
        transform: translateZ(5px);
        opacity: 1;
    }

    85%,
    100% {
        transform: translateZ(5px);
        opacity: 0;
    }
}

/* Cartesian Flaps */
.carton-flap {
    position: absolute;
    background: #a67b4b;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.flap-front-3d {
    width: 120px;
    height: 60px;
    top: 120px;
    left: 0;
    transform-origin: top;
    animation: closeFlapFrontLoop 6s infinite;
}

.flap-back-3d {
    width: 120px;
    height: 60px;
    top: -60px;
    left: 0;
    transform-origin: bottom;
    animation: closeFlapBackLoop 6s infinite;
}

.flap-left-3d {
    width: 60px;
    height: 120px;
    top: 0;
    left: -60px;
    transform-origin: right;
    animation: closeFlapLeftLoop 6s infinite;
}

.flap-right-3d {
    width: 60px;
    height: 120px;
    top: 0;
    left: 120px;
    transform-origin: left;
    animation: closeFlapRightLoop 6s infinite;
}

/* Sequenced Flap Closing Animations
   Inner flaps (Left/Right) close first at 40%.
   Outer flaps (Front/Back) close over them at 45% and sit at Z=62 to prevent clipping. 
*/
@keyframes closeFlapLeftLoop {

    0%,
    35% {
        transform: translateZ(60px) rotateY(90deg);
    }

    40%,
    85% {
        transform: translateZ(60px) rotateY(180deg);
    }

    95%,
    100% {
        transform: translateZ(60px) rotateY(90deg);
    }
}

@keyframes closeFlapRightLoop {

    0%,
    35% {
        transform: translateZ(60px) rotateY(-90deg);
    }

    40%,
    85% {
        transform: translateZ(60px) rotateY(-180deg);
    }

    95%,
    100% {
        transform: translateZ(60px) rotateY(-90deg);
    }
}

@keyframes closeFlapBackLoop {

    0%,
    40% {
        transform: translateZ(60px) rotateX(-90deg);
    }

    45%,
    85% {
        transform: translateZ(62px) rotateX(-180deg);
    }

    95%,
    100% {
        transform: translateZ(60px) rotateX(-90deg);
    }
}

@keyframes closeFlapFrontLoop {

    0%,
    40% {
        transform: translateZ(60px) rotateX(90deg);
    }

    45%,
    85% {
        transform: translateZ(62px) rotateX(180deg);
    }

    95%,
    100% {
        transform: translateZ(60px) rotateX(90deg);
    }
}

.success-message {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Label Dropping into Box */
.carton-label-drop {
    position: absolute;
    width: 60px;
    height: 30px;
    background: #fff;
    left: 30px;
    top: 45px;
    transform-style: preserve-3d;
    transform: translateZ(63px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-family: monospace;
    font-weight: bold;
    color: #000;
    border: 1px dashed #333;
    opacity: 0;
}

.success-animation-container.active .carton-label-drop {
    animation: dropLabelFast 0.5s ease-out forwards;
    animation-delay: 0.5s;
    /* Small delay to let container appear */
}

@keyframes dropLabelFast {
    0% {
        opacity: 0;
        transform: translateZ(200px) scale(1.5);
    }

    100% {
        opacity: 1;
        transform: translateZ(63px) scale(1);
    }
}

/* --- New visual effects injected --- */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.glow-btn {
    background: linear-gradient(135deg, var(--accent), #7a9c8d) !important;
    color: var(--bg-dark) !important;
    border: none !important;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), #ffffff, var(--accent));
    z-index: -1;
    filter: blur(12px);
    opacity: 0.4;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.glow-btn:hover {
    transform: translateY(-2px);
}

.glow-btn:hover::before {
    opacity: 1;
    animation: pulseButtonGlow 2s linear infinite;
}

@keyframes pulseButtonGlow {
    0% {
        filter: blur(10px);
    }

    50% {
        filter: blur(18px);
    }

    100% {
        filter: blur(10px);
    }
}

/* --- Deep Content Additions --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(172, 195, 182, 0.05);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(172, 195, 182, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(172, 195, 182, 0.3);
}

.why-icon svg {
    width: 30px;
    height: 30px;
}

.why-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    cursor: crosshair;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
    filter: brightness(0.3) blur(2px);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle, rgba(172, 195, 182, 0.2) 0%, transparent 80%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay p {
    color: #fff;
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* === NEW THEMATIC SUBPAGES STYLES === */
.thematic-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    /* Canvas will be behind */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.thematic-hero .hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

#special-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* First Aid Section */
.first-aid-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(28, 29, 28, 0.8), rgba(15, 15, 15, 1));
    position: relative;
    z-index: 2;
}

.text-accent {
    color: var(--accent);
}

.aid-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aid-step {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s;
}

.aid-step:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.aid-step .step-icon {
    color: var(--accent);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.aid-step p {
    margin: 0;
    line-height: 1.5;
    color: var(--text-main);
}

/* DIY Risk Section */
.diy-risk-section {
    padding: 60px 20px;
    background: #0F0F0F;
}

.warning-box {
    background: rgba(180, 50, 50, 0.05);
    border: 1px solid rgba(180, 50, 50, 0.3);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-icon {
    color: #ff5555;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #ff5555;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.warning-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media(max-width: 768px) {
    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    text-align: center;
}

.solution-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Floating Action Button (FAB) CTA */
.dl-fab-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(100px);
    animation: fabAppear 0.5s forwards 1s;
}

@keyframes fabAppear {
    to {
        transform: translateY(0);
    }
}

.dl-fab-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
    background: #fff;
    color: #000;
}

.dl-fab-cta .fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-fab-cta svg {
    width: 20px;
    height: 20px;
}

@media(max-width: 768px) {
    .dl-fab-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    .dl-fab-cta .fab-text {
        display: none; /* Hide text on mobile for minimalist look */
    }
}

/* ============================================== */
/* DIGITAL LAB STORYTELLING TEMPLATE              */
/* ============================================== */

.theme-digital-lab {
    --bg-dark: #050505;
    --accent: #00ff88;
    --accent-glow: rgba(0, 255, 136, 0.4);
    --glass-bg: rgba(10, 20, 15, 0.6);
    --glass-border: rgba(0, 255, 136, 0.2);
    background-color: var(--bg-dark) !important;
}

/* Custom Green Scrollbar for Digital Lab */
.theme-digital-lab::-webkit-scrollbar {
    width: 10px;
}

.theme-digital-lab::-webkit-scrollbar-track {
    background: #000;
}

.theme-digital-lab::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

.theme-digital-lab::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}

/* Grid Background Lines (Circuit Aesthetic) */
.theme-digital-lab main {
    position: relative;
}

.theme-digital-lab main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Base Glass Card */
.theme-digital-lab .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

/* Hero Section */
.dl-hero-section {
    padding: 200px 20px 100px;
    text-align: center;
    position: relative;
    border-bottom: none;
}

.dl-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.dl-hero-lead {
    font-size: 1.2rem;
    color: #a0aab2;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Neon Text (Headers) */
.dl-neon-text {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Symptoms Grid */
.dl-symptoms-section {
    padding: 40px 20px;
}

.dl-symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dl-symptom-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.dl-symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.dl-symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.5);
}

.dl-symptom-card:hover::before {
    transform: scaleY(1);
}

.dl-symptom-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.dl-symptom-card h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
}

.dl-symptom-card p {
    color: #a0aab2;
    line-height: 1.6;
    position: relative;
}

/* Risk Zone */
.dl-risk-section {
    padding: 40px 20px;
}

.dl-risk-container {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.8) 0%, rgba(10, 5, 5, 0.9) 100%);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 16px;
    padding: 4rem;
    position: relative;
}

.dl-risk-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.dl-risk-icon {
    width: 40px;
    height: 40px;
    color: #ff4444;
}

.dl-risk-header h3 {
    color: #ff4444;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dl-risk-main-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.dl-risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dl-risk-bad {
    padding: 2rem;
    border-left: 3px solid #ff4444;
    background: rgba(255, 0, 0, 0.05);
}

.dl-risk-good {
    padding: 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(0, 255, 136, 0.05);
}

.dl-risk-comparison h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.dl-risk-bad h4 {
    color: #ff4444;
}

.dl-risk-good h4 {
    color: var(--accent);
}

.dl-risk-comparison p {
    color: #a0aab2;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dl-risk-comparison {
        grid-template-columns: 1fr;
    }

    .dl-risk-container {
        padding: 2rem;
    }
}

/* Technical Journey (Stepper) */
.dl-journey-section {
    padding: 50px 20px;
}

.dl-stepper-container {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}

.dl-stepper-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.dl-step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.dl-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.dl-step-item:last-child {
    margin-bottom: 0;
}

.dl-step-marker {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    color: var(--accent);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: all 0.3s ease;
}

.dl-step-item:hover .dl-step-marker {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.1);
}

.dl-step-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.dl-step-content p {
    color: #a0aab2;
    line-height: 1.6;
}

.dl-arsenal-box {
    margin-top: 4rem;
    padding: 3rem;
    text-align: center;
    border-color: rgba(0, 255, 136, 0.4);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.dl-arsenal-box h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dl-arsenal-box p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Before/After Slider */
.dl-realizations-section {
    padding: 40px 20px;
}

.dl-ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dl-ba-image-before,
.dl-ba-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.dl-ba-image-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.dl-ba-slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    cursor: ew-resize;
}

.dl-ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent);
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-ba-slider-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-ba-slider-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.dl-ba-slider-arrow.left {
    left: -20px;
}

.dl-ba-slider-arrow.left::after {
    border-right: 8px solid var(--accent);
    margin-right: 4px;
}

.dl-ba-slider-arrow.right {
    right: -20px;
}

.dl-ba-slider-arrow.right::after {
    border-left: 8px solid var(--accent);
    margin-left: 4px;
}

.dl-ba-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.dl-ba-label-before {
    left: 20px;
}

.dl-ba-label-after {
    right: 20px;
}

@media (max-width: 768px) {
    .dl-ba-slider-container {
        height: 300px;
    }

    .dl-ba-slider-arrow {
        width: 30px;
        height: 30px;
    }

    .dl-ba-slider-arrow.left {
        left: -15px;
    }

    .dl-ba-slider-arrow.right {
        right: -15px;
    }
}

/* Conversion Section */
.dl-conversion-section {
    padding: 40px 20px 80px;
}

.dl-btn-massive {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.dl-btn-massive svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.dl-btn-massive:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 40px var(--accent-glow);
}

.dl-btn-massive:hover svg {
    transform: translateX(10px);
}

/* Section 1.5 Highlight Box */
.dl-highlight-section {
    padding: 40px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.dl-highlight-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
    z-index: -1;
}

.dl-highlight-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--bg-main);
    border: 1px solid rgba(255, 68, 68, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.dl-highlight-icon {
    color: #ff4444;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.dl-highlight-box p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Realizations 3 Image Grid */
.dl-realizations-section {
    padding: 100px 20px;
}

.dl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dl-gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dl-gallery-item .img-wrapper {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.dl-gallery-item .img-caption {
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
}

.dl-gallery-item .img-caption h5 {
    color: var(--accent);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================== */
/* DIGITAL LAB STORYTELLING TEMPLATE (MOBILE UX OPTIMIZED) */
/* ============================================== */

.theme-digital-lab {
    /* Pastel/Vibrant but non-neon colors */
    --bg-dark: #121312;
    /* Match the style.css main background */
    --accent: #ACC3B6;
    /* Soft pastel green from style.css */
    --accent-glow: rgba(172, 195, 182, 0.2);
    --glass-bg: #1C1D1C;
    /* Solid color, no gradient */
    --glass-border: rgba(172, 195, 182, 0.3);
    background-color: var(--bg-dark) !important;
}

/* Base Glass Card */
.theme-digital-lab .glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* Softer rounded corners */
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Soft shadow instead of glow */
    /* Remove blur to enforce solid colors */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Remove Background Lines (No gradients) */
.theme-digital-lab main::before {
    display: none;
}

/* Hero Section */
.dl-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    /* Smaller on mobile */
    color: var(--text-main);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Subtle drop shadow, no neon glow */
    font-weight: 700;
}

.dl-neon-text {
    text-shadow: none;
    /* Strip neon effect */
    color: var(--accent);
}

/* Symptoms Grid */
.dl-symptom-card {
    padding: 2rem;
}

.dl-symptom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* Soft shadow scaling */
    border-color: var(--accent);
}

.dl-symptom-card:hover::before {
    display: none;
    /* Remove neon side-bar line */
}

/* Risk Zone */
.dl-risk-container {
    background: #1a1010;
    /* Solid dark red-tinted background */
    border: 1px solid rgba(255, 68, 68, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Mobile UX padding compression */
    padding: 2rem;
}

.dl-risk-bad {
    background: #241414;
    /* Solid, no rgba */
}

.dl-risk-good {
    background: #141c16;
    /* Solid, no rgba */
    border-left-color: var(--accent);
}

.dl-risk-good h4 {
    color: var(--accent);
}

/* Stepper Journey */
.dl-step-marker {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
    color: var(--text-main);
    border-color: var(--accent);
    background: var(--glass-bg);
}

.dl-arsenal-box {
    background: var(--glass-bg);
    /* Solid */
    border: 1px solid var(--glass-border);
}

/* Conversion Button */
.dl-btn-massive {
    color: var(--text-main);
    background: var(--accent);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dl-btn-massive:hover {
    background: #8aa595;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dl-hero-section {
        padding: 120px 15px 60px;
    }

    .dl-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .dl-risk-container {
        padding: 1.5rem 1rem;
        /* Compress vertically */
        margin: 0 -10px;
        /* Stretch wider on mobile */
        width: calc(100% + 20px);
    }

    .dl-risk-comparison {
        gap: 1rem;
    }

    .dl-risk-bad,
    .dl-risk-good {
        padding: 1.5rem 1rem;
        /* Less vertical stretching */
    }

    .dl-step-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .dl-step-marker {
        margin: 0 auto;
    }

    .dl-stepper-line {
        display: none;
        /* Hide line on mobile for cleaner stack */
    }

    .dl-step-content {
        text-align: center;
    }

    .dl-btn-massive {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        justify-content: center;
    }
}

/* ============================================== */
/* SVG ANIMATIONS & INTERACTIVE GALLERY (UX POLISH) */
/* ============================================== */

/* Gallery Interactivity */
.dl-gallery-item .img-wrapper {
    position: relative;
    overflow: hidden;
}

.dl-gallery-item .img-caption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.dl-gallery-item:hover .img-caption-overlay,
.dl-gallery-item:focus-within .img-caption-overlay,
.dl-gallery-item:active .img-caption-overlay {
    opacity: 1;
}

.dl-gallery-item .img-caption-overlay h5 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    padding: 0 20px;
}

.dl-gallery-item:hover .img-caption-overlay h5,
.dl-gallery-item:focus-within .img-caption-overlay h5,
.dl-gallery-item:active .img-caption-overlay h5 {
    transform: translateY(0);
}

/* Hide original static title box */
.dl-gallery-item .img-caption {
    display: none;
}

/* Arsenal SVGs */
.dl-arsenal-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.dl-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--text-main);
    font-weight: 500;
}

.dl-tool-svg {
    width: 80px;
    height: 80px;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(172, 195, 182, 0.2));
}

/* ============================================== */
/* THEME: DIGITAL ENGINEERING (Motherboard)       */
/* ============================================== */
.theme-digital-eng {
    /* Identical to 'Zalanie' (digital-lab) */
    --bg-dark: #121312;
    --accent: #ACC3B6;
    --accent-glow: rgba(172, 195, 182, 0.2);
    --glass-bg: #1C1D1C;
    --glass-border: rgba(172, 195, 182, 0.3);
    background-color: var(--bg-dark) !important;
}

/* Całkowity brak gradientów, czyste, płaskie powierzchnie */
.theme-digital-eng .glass-card {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.theme-digital-eng .dl-hero-section,
.theme-digital-eng .dl-risk-section,
.theme-digital-eng .dl-symptoms-section,
.theme-digital-eng .dl-journey-section,
.theme-digital-eng .dl-realizations-section {
    background: transparent !important;
}

.theme-digital-eng .dl-risk-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.theme-digital-eng .dl-risk-bad {
    background: #181918;
}

.theme-digital-eng .dl-risk-good {
    background: #1a1e1b;
}

.theme-digital-eng main::before,
.theme-digital-eng .dl-hero-section::before,
.theme-digital-eng .dl-hero-section::after {
    display: none !important;
}

.theme-digital-eng .dl-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text-main);
    text-shadow: none;
    font-weight: 700;
}

/* Geometria: Linia biegnąca przez ramkę UWAGA musi przechodzić idealnie przez jej środek */
.theme-digital-eng .dl-highlight-section {
    position: relative;
    padding: 0 20px;
    margin-top: -30px;
    /* pull up */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-digital-eng .dl-highlight-section::before {
    content: '';
    position: absolute;
    top: 50%;
    /* perfect middle of flex container */
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
    z-index: -1;
}

.theme-digital-eng .dl-highlight-box {
    margin: 0;
    background: var(--glass-bg);
}

/* Layout: Zminimalizuj odstępy między sekcjami. */
.theme-digital-eng .dl-symptoms-section,
.theme-digital-eng .dl-risk-section,
.theme-digital-eng .dl-journey-section,
.theme-digital-eng .dl-realizations-section,
.theme-digital-eng .dl-conversion-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

/* ============================================== */
/* THEME: DIGITAL POWER (Battery & Power fixes)   */
/* ============================================== */
.theme-digital-power {
    --accent: #E5C07B;
    --accent-glow: rgba(229, 192, 123, 0.2);
    --glass-border: rgba(229, 192, 123, 0.3);
}

/* Na mobile sekcja CZYM RYZYKUJESZ musi być skompresowana */
@media (max-width: 768px) {
    .theme-digital-eng .dl-risk-container {
        padding: 10px;
        margin: 0 -15px;
        /* szerokie pole */
        width: calc(100% + 30px);
    }

    .theme-digital-eng .dl-risk-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .theme-digital-eng .dl-risk-main-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .theme-digital-eng .dl-risk-comparison {
        gap: 0.5rem;
        grid-template-columns: 1fr;
    }

    .theme-digital-eng .dl-risk-bad,
    .theme-digital-eng .dl-risk-good {
        padding: 0.8rem;
    }

    .theme-digital-eng .dl-risk-comparison h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .theme-digital-eng .dl-risk-comparison p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .theme-digital-eng .dl-hero-section {
        padding: 100px 15px 40px;
    }

    .theme-digital-eng .dl-arsenal-box {
        margin-top: 1.5rem;
        padding: 1.5rem 1rem;
    }
    .theme-digital-eng .dl-arsenal-box h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .theme-digital-eng .dl-arsenal-box p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .theme-digital-eng .dl-arsenal-tools {
        gap: 15px;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .theme-digital-eng .dl-tool-item {
        gap: 5px;
        text-align: center;
    }
    .theme-digital-eng .dl-tool-item span {
        font-size: 0.85rem;
    }
    .theme-digital-eng .dl-tool-svg {
        width: 40px;
        height: 40px;
    }
}

/* 1. Smoothly animating tiles to avoid jumping */
.theme-digital-eng .dl-symptom-card {
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* 2. Button styling: square, transparent, animated */
.theme-digital-eng .dl-btn-massive {
    border-radius: 4px !important;
    background: transparent !important;
    border: 1px solid var(--accent);
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.theme-digital-eng .dl-btn-massive:hover {
    background: rgba(94, 224, 205, 0.05) !important;
    border-color: #fff !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(94, 224, 205, 0.2) !important;
}

/* Laptop SVG animation */
.laptop-anim-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

@keyframes crackFlicker {

    0%,
    100% {
        stroke: #ff4444;
        opacity: 0.8;
    }

    50% {
        stroke: #ff7777;
        opacity: 1;
        filter: drop-shadow(0 0 3px #ff4444);
    }
}

@keyframes sparkFly1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-10px, -20px) scale(0);
        opacity: 0;
    }
}

@keyframes sparkFly2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(15px, -15px) scale(0);
        opacity: 0;
    }
}

@keyframes sparkFly3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(10px, -25px) scale(0);
        opacity: 0;
    }
}

@keyframes smokeRise {
    0% {
        transform: translateY(0);
        opacity: 0;
        stroke-dashoffset: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
        stroke-dashoffset: -20;
    }
}

.laptop-crack {
    animation: crackFlicker 2s infinite;
}

.spark-1 {
    animation: sparkFly1 1.5s infinite ease-out;
}

.spark-2 {
    animation: sparkFly2 2s infinite ease-out 0.5s;
    opacity: 0;
}

.spark-3 {
    animation: sparkFly3 1.8s infinite ease-out 1s;
    opacity: 0;
}

.smoke-1 {
    animation: smokeRise 3s infinite linear;
}

.smoke-2 {
    animation: smokeRise 2.5s infinite linear 1.2s;
}

@keyframes laptopGlitch {

    0%,
    100% {
        transform: translate(0, 0) skew(0deg);
    }

    20% {
        transform: translate(-2px, 1px) skew(-2deg);
    }

    40% {
        transform: translate(2px, -1px) skew(2deg);
    }

    60% {
        transform: translate(-1px, 2px) skew(-1deg);
    }

    80% {
        transform: translate(1px, -2px) skew(1deg);
    }
}

.theme-digital-eng .dl-btn-massive:hover .laptop-svg {
    animation: laptopGlitch 0.3s ease-in-out infinite alternate;
}

/* ============================================== */
/* THEME: DIGITAL SYS V2 (OS Corruption)          */
/* ============================================== */
.theme-digital-sys-v2 {
    --bg-dark: #0a0a0b;
    --accent: #9deb96;
    --accent-glow: rgba(157, 235, 150, 0.2);
    --glass-bg: #121312;
    --glass-border: rgba(157, 235, 150, 0.3);
    background-color: var(--bg-dark) !important;
}

/* Fix Canvas z-index for this theme */
.theme-digital-sys-v2 #special-bg {
    z-index: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
}
.theme-digital-sys-v2 main, .theme-digital-sys-v2 header {
    position: relative;
    z-index: 10;
}

/* FAB CTA Button Green Accent */
.theme-digital-sys-v2 .dl-fab-cta {
    background: var(--accent) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px var(--accent-glow) !important;
}
.theme-digital-sys-v2 .dl-fab-cta:hover {
    background: #84cc7d !important;
    box-shadow: 0 6px 20px var(--accent-glow) !important;
}

/* Całkowity brak gradientów, czyste, płaskie powierzchnie */
.theme-digital-sys-v2 .glass-card {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.theme-digital-sys-v2 .dl-hero-section,
.theme-digital-sys-v2 .dl-risk-section,
.theme-digital-sys-v2 .dl-symptoms-section,
.theme-digital-sys-v2 .dl-journey-section,
.theme-digital-sys-v2 .dl-realizations-section {
    background: transparent !important;
}

.theme-digital-sys-v2 .dl-risk-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.theme-digital-sys-v2 .dl-risk-bad {
    background: #0f100f;
}

.theme-digital-sys-v2 .dl-risk-good {
    background: #151615;
}

.theme-digital-sys-v2 main::before,
.theme-digital-sys-v2 .dl-hero-section::before,
.theme-digital-sys-v2 .dl-hero-section::after {
    display: none !important;
}

.theme-digital-sys-v2 .dl-hero-title {
    color: var(--text-main);
    text-shadow: none;
    font-weight: 700;
}

/* Geometria: Linia biegnąca przez ramkę UWAGA musi przechodzić idealnie przez jej środek */
.theme-digital-sys-v2 .dl-highlight-section {
    position: relative;
    padding: 0 20px;
    margin-top: -30px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-digital-sys-v2 .dl-highlight-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
    z-index: -1;
}

.theme-digital-sys-v2 .dl-highlight-box {
    margin: 0;
    background: var(--glass-bg);
}

/* Zastosuj odstępy 24px między wszystkimi sekcjami na podstronie */
.theme-digital-sys-v2 .dl-symptoms-section,
.theme-digital-sys-v2 .dl-risk-section,
.theme-digital-sys-v2 .dl-journey-section,
.theme-digital-sys-v2 .dl-realizations-section,
.theme-digital-sys-v2 .dl-conversion-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
}

/* Mobile UX: Sekcja CZYM RYZYKUJESZ skompresowana */
@media (max-width: 768px) {
    .theme-digital-sys-v2 .dl-risk-container {
        padding: 10px;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    .theme-digital-sys-v2 .dl-risk-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .theme-digital-sys-v2 .dl-risk-main-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .theme-digital-sys-v2 .dl-risk-comparison {
        gap: 0.5rem;
        grid-template-columns: 1fr;
    }
    .theme-digital-sys-v2 .dl-risk-bad,
    .theme-digital-sys-v2 .dl-risk-good {
        padding: 0.8rem;
    }
    .theme-digital-sys-v2 .dl-risk-comparison h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    .theme-digital-sys-v2 .dl-risk-comparison p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .theme-digital-sys-v2 .dl-hero-section {
        padding: 100px 15px 40px;
    }
}

/* ============================================== */
/* FORCE MASTER SAGE GREEN (V5)                   */
/* ============================================== */

.force-master-sage-green-v5 {
    --bg-dark: #0A0A0B;
    --accent: #ACC3B6;
    --accent-glow: rgba(172, 195, 182, 0.4);
    background-color: var(--bg-dark) !important;
}

/* Green Scrollbar for V5 */
.force-master-sage-green-v5::-webkit-scrollbar {
    width: 10px;
}
.force-master-sage-green-v5::-webkit-scrollbar-track {
    background: #000;
}
.force-master-sage-green-v5::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}
.force-master-sage-green-v5::-webkit-scrollbar-thumb:hover {
    background: #9fb4a7;
}

/* Base Glass Card perfectly mimicking awaria-dysku */
.force-master-sage-green-v5 .glass-card {
    background: #1C1D1C !important;
    border: 1px solid rgba(172, 195, 182, 0.3) !important;
    border-radius: 12px;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.4s ease;
}

/* Strict 24px margins between all sections */
.force-master-sage-green-v5 section {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

/* Removing all remaining gradients and enforcing solid colors where applicable */
.force-master-sage-green-v5 .section-title {
    background: none !important;
    color: var(--accent) !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 0 10px var(--accent-glow);
}
.force-master-sage-green-v5 .section-title::after {
    background: var(--accent) !important;
    box-shadow: 0 0 15px var(--accent) !important;
}

/* Hero Section */
.force-master-sage-green-v5 .dl-hero-section {
    padding: 200px 20px 100px;
    text-align: center;
    position: relative;
    border-bottom: none;
    margin-top: 0 !important; /* overrides 24px margin rule for top hero */
}
.force-master-sage-green-v5 .dl-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: -2px;
}
.force-master-sage-green-v5 .dl-hero-lead {
    font-size: 1.2rem;
    color: #a0aab2;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Highlight Box (UWAGA) with perfect center line - RED like awaria-dysku */
.force-master-sage-green-v5 .dl-highlight-section {
    padding: 0 20px;
    position: relative;
    margin-top: -30px; /* pull up like theme-digital-eng */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.force-master-sage-green-v5 .dl-highlight-section::before {
    content: '';
    position: absolute;
    top: 50%; /* Geometric center vertically */
    left: 0;
    right: 0;
    height: 1px;
    background: #ff4444;
    z-index: -1;
    transform: translateY(-50%);
}

.force-master-sage-green-v5 .dl-highlight-box {
    margin: 0;
    background: #1C1D1C;
    border: 1px solid #ff4444;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.15);
}
.force-master-sage-green-v5 .dl-highlight-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.force-master-sage-green-v5 .dl-highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff4444; /* Enforce red on the SVG */
}
.force-master-sage-green-v5 .dl-highlight-box p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Symptoms Grid */
.force-master-sage-green-v5 .dl-symptoms-section { padding: 0 20px; }
.force-master-sage-green-v5 .dl-symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.force-master-sage-green-v5 .dl-symptom-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.force-master-sage-green-v5 .dl-symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}
.force-master-sage-green-v5 .dl-symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(172, 195, 182, 0.5) !important;
}
.force-master-sage-green-v5 .dl-symptom-card:hover::before {
    transform: scaleY(1);
}
.force-master-sage-green-v5 .dl-symptom-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(172, 195, 182, 0.15); /* Sage green with low opacity */
    -webkit-text-stroke: 1px rgba(172, 195, 182, 0.4);
    line-height: 1;
    z-index: 0;
}
.force-master-sage-green-v5 .dl-symptom-card h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.force-master-sage-green-v5 .dl-symptom-card p {
    color: #a0aab2;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Risk Zone */
.force-master-sage-green-v5 .dl-risk-section { padding: 0 20px; }
.force-master-sage-green-v5 .dl-risk-container {
    background: #0f1210;
    border: 1px solid rgba(172, 195, 182, 0.3);
    border-radius: 16px;
    padding: 4rem;
    position: relative;
}
.force-master-sage-green-v5 .dl-risk-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}
.force-master-sage-green-v5 .dl-risk-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
}
.force-master-sage-green-v5 .dl-risk-header h3 {
    color: var(--accent);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.force-master-sage-green-v5 .dl-risk-main-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
}
.force-master-sage-green-v5 .dl-risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
/* Completely remove RED. Make both sides Sage green for absolute neutrality with varying opacities if needed, or simply mirror. */
.force-master-sage-green-v5 .dl-risk-bad {
    padding: 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(172, 195, 182, 0.05);
}
.force-master-sage-green-v5 .dl-risk-good {
    padding: 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(172, 195, 182, 0.05);
}
.force-master-sage-green-v5 .dl-risk-comparison h4 { margin-bottom: 1rem; font-size: 1.2rem; }
.force-master-sage-green-v5 .dl-risk-bad h4 { color: var(--accent); }
.force-master-sage-green-v5 .dl-risk-good h4 { color: var(--accent); }
.force-master-sage-green-v5 .dl-risk-comparison p { color: #a0aab2; line-height: 1.6; }

/* Journey */
.force-master-sage-green-v5 .dl-journey-section { padding: 0 20px; }
.force-master-sage-green-v5 .dl-stepper-container {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}
.force-master-sage-green-v5 .dl-stepper-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}
.force-master-sage-green-v5 .dl-step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}
.force-master-sage-green-v5 .dl-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}
.force-master-sage-green-v5 .dl-step-item:last-child { margin-bottom: 0; }
.force-master-sage-green-v5 .dl-step-marker {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    color: var(--accent);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: all 0.3s ease;
}
.force-master-sage-green-v5 .dl-step-item:hover .dl-step-marker {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.1);
}
.force-master-sage-green-v5 .dl-step-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
}
.force-master-sage-green-v5 .dl-step-content p {
    color: #a0aab2;
    line-height: 1.6;
}

/* Arsenal Box */
.force-master-sage-green-v5 .dl-arsenal-box {
    margin-top: 4rem;
    padding: 3rem;
    text-align: center;
}
.force-master-sage-green-v5 .dl-arsenal-box h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.force-master-sage-green-v5 .dl-arsenal-box p {
    color: #a0aab2;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.force-master-sage-green-v5 .dl-arsenal-tools {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.force-master-sage-green-v5 .dl-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.force-master-sage-green-v5 .dl-tool-svg {
    width: 40px;
    height: 40px;
    color: var(--accent); /* Enforce sage green stroke */
}

/* Realizations Grid */
.force-master-sage-green-v5 .dl-realizations-section { padding: 0 20px; }

/* Fixed FAB specific to V5 */
.force-master-sage-green-v5 .dl-fab-cta {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background: var(--accent) !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
    text-decoration: none;
    z-index: 1000 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.force-master-sage-green-v5 .dl-fab-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
    background: #fff !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .force-master-sage-green-v5 .dl-risk-comparison {
        grid-template-columns: 1fr;
    }
    .force-master-sage-green-v5 .dl-risk-container {
        padding: 2rem;
    }
    .force-master-sage-green-v5 .dl-hero-section {
        padding: 120px 20px 60px;
    }
    .force-master-sage-green-v5 .dl-fab-cta {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px !important;
        border-radius: 50% !important;
    }
    .force-master-sage-green-v5 .dl-fab-cta .fab-text {
        display: none !important;
    }
}

/* ============================================== */
/* THEME: SOLUTION GREEN (Rozwiązania CMS)         */
/* ============================================== */

.theme-solution-green {
    --bg-dark: #070a08;
    --accent: #5ee0a1;
    --accent-glow: rgba(94, 224, 161, 0.4);
    background-color: var(--bg-dark) !important;
}

.theme-solution-green .glass-card {
    background: #111513 !important;
    border: 1px solid rgba(94, 224, 161, 0.3) !important;
    border-radius: 12px;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.4s ease;
}

.theme-solution-green section { margin-top: 24px !important; margin-bottom: 24px !important; }

.theme-solution-green .section-title {
    background: none !important; color: var(--accent) !important; -webkit-text-fill-color: initial !important; text-shadow: 0 0 10px var(--accent-glow);
}
.theme-solution-green .section-title::after { background: var(--accent) !important; box-shadow: 0 0 15px var(--accent) !important; }

.theme-solution-green .dl-hero-section {
    padding: 180px 20px 80px; text-align: center; position: relative; border-bottom: none; margin-top: 0 !important;
}
.theme-solution-green .dl-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 1.5rem; color: #fff; text-shadow: 0 0 20px var(--accent-glow); text-transform: uppercase; letter-spacing: -1px;
}
.theme-solution-green .dl-hero-lead {
    font-size: 1.2rem; color: #a0aab2; max-width: 800px; margin: 0 auto; line-height: 1.8;
}

.theme-solution-green .dl-highlight-section { padding: 0 20px; position: relative; margin-top: -30px; z-index: 10; display: flex; justify-content: center; align-items: center; }
.theme-solution-green .dl-highlight-section::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--accent); z-index: -1; transform: translateY(-50%); }
.theme-solution-green .dl-highlight-box { margin: 0; background: #111513; border: 1px solid var(--accent); padding: 2rem; border-radius: 12px; display: flex; align-items: center; gap: 1.5rem; position: relative; z-index: 1; max-width: 900px; box-shadow: 0 0 30px var(--accent-glow); }
.theme-solution-green .dl-highlight-icon { width: 50px; height: 50px; flex-shrink: 0; color: var(--accent); background: rgba(94, 224, 161, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.theme-solution-green .dl-highlight-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.theme-solution-green .dl-highlight-box p { color: #fff; font-size: 1.1rem; line-height: 1.6; margin: 0; }

.theme-solution-green .dl-journey-section { padding: 0 20px; }
.theme-solution-green .dl-stepper-container { position: relative; max-width: 800px; margin: 4rem auto; }
.theme-solution-green .dl-stepper-line { position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: rgba(94, 224, 161, 0.2); }
.theme-solution-green .dl-step-item { display: flex; gap: 2rem; margin-bottom: 2rem; padding: 2rem; position: relative; transition: all 0.4s ease; background: #111513; border: 1px solid rgba(94, 224, 161, 0.2); border-radius: 12px; }
.theme-solution-green .dl-step-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); border-color: var(--accent); }
.theme-solution-green .dl-step-marker { width: 50px; height: 50px; background: var(--bg-dark); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: bold; color: var(--accent); z-index: 2; flex-shrink: 0; box-shadow: 0 0 15px var(--accent-glow); transition: all 0.3s ease; }
.theme-solution-green .dl-step-item:hover .dl-step-marker { background: var(--accent); color: var(--bg-dark); box-shadow: 0 0 20px var(--accent-glow); transform: scale(1.1); }
.theme-solution-green .dl-step-content h4 { font-size: 1.3rem; color: #fff; margin-bottom: 0.8rem; }
.theme-solution-green .dl-step-content p { color: #a0aab2; line-height: 1.6; }

.theme-solution-green .dl-arsenal-box { margin-top: 4rem; padding: 3rem; text-align: center; }
.theme-solution-green .dl-arsenal-box h4 { color: var(--accent); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-solution-green .dl-arsenal-box p { color: #a0aab2; line-height: 1.6; margin-bottom: 2rem; }
.theme-solution-green .dl-arsenal-tools { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.theme-solution-green .dl-tool-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #fff; }
.theme-solution-green .dl-tool-svg { width: 40px; height: 40px; color: var(--accent); }
.theme-solution-green .dl-realizations-section { padding: 0 20px; }

/* GLOBAL FAB CTA */
.global-fab-cta {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background: #acc3b6 !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(172, 195, 182, 0.4);
    text-decoration: none;
    z-index: 9999 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.global-fab-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(172, 195, 182, 0.5);
    background: #fff !important;
}

@media (max-width: 768px) {
    .global-fab-cta {
        bottom: 20px !important;
        right: 20px !important;
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
    .global-fab-cta svg {
        display: none !important;
    }
}

/* Green Tag for Solutions on Homepage */
.tag-green {
    border-color: rgba(94, 224, 161, 0.5) !important;
}
.tag-green:hover {
    border-color: #5ee0a1 !important;
    box-shadow: 0 0 15px rgba(94, 224, 161, 0.3) !important;
}