:root {
    --primary: #00c853;
    --secondary: #ffb300;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #fff;
    color: var(--dark);
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 90px auto;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ================= 404 PAGE ================= */

.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background: linear-gradient(
            135deg,
            #ffffff 50%,
            rgba(0,200,83,0.05) 100%
    );
    text-align: center;
}

.error-wrapper {
    max-width: 700px;
}

.error-code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1;
}

.error-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.error-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================= MENU================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

/* ===== DESKTOP MENU ===== */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-menu a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-menu a:not(.btn-nav):hover::after {
    transform: scaleX(1);
}

/* ===== DROPDOWN ===== */

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 6px;
    font-size: 1.2rem;
    transition: 0.3s;
    color: var(--primary);
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 0;
    list-style: none;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 100;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(0,200,83,0.08);
    color: var(--primary);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Główne menu mobile */

    .mobile-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding: 0 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .mobile-menu.active {
        max-height: 800px;
    }

    /* Linki */

    .mobile-dropdown {
        width: 100%;
    }

    .mobile-menu a,
    .mobile-dropdown-toggle {
        text-align: center;
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--dark);
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    /* Dropdown */

    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 400px;
    }

    .mobile-dropdown-menu a {
        padding: 12px 0;
        font-size: 0.95rem;
        color: #555;
        border-bottom: 1px solid var(--primary);
    }

    /* ZIELONY PRZYCISK */

    .btn-mobile {
        display: block;
        margin-top: 20px;
        padding: 16px;
        text-align: center;
        background: var(--primary)!important;
        color: #ffffff !important;
        border-radius: 50px;
        font-weight: 600;
        border: none;
    }

    .btn-mobile:hover {
        background: #00b34a;
    }
}


.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #00b34a);
    color: #ffffff !important;
    padding: 14px 28px!important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,200,83,0.18);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,200,83,0.28);
}

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    transition: 0.3s ease;
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu a {
    padding: 22px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.mobile-menu a:hover {
    background: rgba(0,200,83,0.08);
}

.btn-mobile {
    background: var(--primary);
    color: #fff !important;
    margin: 15px;
    padding: 14px 24px;
    border-radius: 50px;
}

.mobile-menu.active {
    max-height: 500px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.btn-mobile {
    background: var(--primary);
    color: #fff !important;
    margin: 15px;
    border-radius: 6px;
}

.mobile-menu.active {
    max-height: 500px;
}
/* MENU */

/* ----------- HERO ------------ */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
            radial-gradient(circle at 80% 20%, rgba(0,200,83,0.15), transparent 40%),
            radial-gradient(circle at 20% 80%, rgba(255,179,0,0.1), transparent 40%);
    padding-top: 75px;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,200,83,0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #00b34a;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ================= MODERN SCROLL INDICATOR ================= */

.scroll-divider {
    position: relative;
    height: 0;
}

.scroll-indicator {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);

    color: var(--primary);
    text-decoration: none;

    transition: all 0.4s ease;
    z-index: 20;
}

/* Subtelny pulsujący glow */

.scroll-indicator::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,83,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.scroll-indicator:hover::after {
    opacity: 1;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Animacja unoszenia */

.scroll-indicator svg {
    animation: floatArrow 2s ease-in-out infinite;
}

@keyframes floatArrow {
    0% { transform: translateY(-3px); }
    50% { transform: translateY(4px); }
    100% { transform: translateY(-3px); }
}

/* ----------- HERO ------------ */

@media (max-width: 992px) {

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

.footer {
    background: #f9fafb;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-column h3 span {
    color: var(--primary);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-column p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #777;
    transition: 0.3s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: rgba(0,200,83,0.1);
    color: var(--primary);
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer-links a {
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    color: #777;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= SERVICES PREMIUM ================= */

/* ================= SERVICES REWORK ================= */

.services-section {
    padding: 140px 0;
    background: #ffffff;
}

/* LISTA */

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* POJEDYNCZY ELEMENT */

.service-item {
    position: relative;
    padding: 60px 50px;
    border-radius: 20px;
    background: #f9fafb;
    transition: 0.4s ease;
    overflow: hidden;
}

.service-item.accent {
    background: linear-gradient(
            135deg,
            rgba(0,200,83,0.08),
            rgba(0,200,83,0.02)
    );
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.4s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-content a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s ease;
}

.service-content a:hover {
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 40px 30px;
    }
}


/* ================= FAQ ================= */
.faq-section {
    padding: 140px 0;
    background: color-mix(in srgb, var(--primary) 8%, white);
}

.faq {
    max-width: 800px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Karta */

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Pytanie */

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ikona */

.faq-icon {
    font-size: 1.4rem;
    transition: 0.3s ease;
}

/* Odpowiedź */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #555;
    line-height: 1.7;
}

/* ACTIVE STATE */

.faq-item.active {
    box-shadow: 0 20px 45px rgba(0,0,0,0.07);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}
/* ================= FAQ ================= */

/* ================= WHY SECTION ALT ================= */

.why-section-alt {
    padding: 120px 0;
    background: color-mix(in srgb, var(--primary) 8%, white);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.why-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FEATURES */

.why-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
    transition: 0.3s ease;
}

.why-item:hover {
    transform: translateX(8px);
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 40px;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-item p {
    color: #666;
    line-height: 1.6;
}

/* STATS */

.why-stats {
    margin-top: 100px;
    background: var(--primary);
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        flex-direction: column;
    }
}

/* ================= PROCESS SECTION ================= */

.process-section {
    padding: 120px 0;
    background: #ffffff; /* kontrast do poprzedniej sekcji */
}

.process-timeline {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
    flex-wrap: wrap;
}

/* linia między krokami */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,0,0,0.08);
    z-index: 0;
}

.process-step {
    position: relative;
    background: #ffffff;
    padding: 20px;
    max-width: 250px;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,200,83,0.25);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .process-timeline {
        flex-direction: column;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }
}

/* ================= BRANDS ================= */
.brands-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    transition: transform 0.1s linear;
}

.brand-item {
    font-size: 1.8rem;
    font-weight: 600;
    color: #bbb;
    white-space: nowrap;
    transition: 0.3s ease;
}

/* Subtelny efekt */

.brand-item:hover {
    color: var(--primary);
}

.brand-item img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brands-slider::before,
.brands-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.brands-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}
/* ================= BRANDS ================= */

/* ================= AREA SECTION ================= */

.area-section {
    padding: 120px 0;
    background: linear-gradient(
            135deg,
            rgba(0,200,83,0.06) 0%,
            #ffffff 60%
    );
}

.area-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.area-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.area-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.area-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.area-list {
    list-style: none;
    columns: 2;
    gap: 20px;
    margin-bottom: 20px;
}

.area-list li {
    margin-bottom: 12px;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.area-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.area-note {
    font-size: 0.9rem;
    color: #777;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .area-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .area-list {
        columns: 1;
    }
}


/* ================= REVIEWS SECTION ================= */

.reviews-section {
    padding: 120px 0;
    background: #f9fafb;
    text-align: center;
}

.reviews-slider {
    position: relative;
    max-width: 700px;
    margin: 60px auto 40px auto;
}

.review {
    display: none;
    animation: fade 0.5s ease;
}

.review.active {
    display: block;
}

.stars {
    color: #ffb300;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review h4 {
    font-weight: 600;
    color: var(--dark);
}

/* DOTS */

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
}

/* ANIMATION */

@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= FINAL CTA ================= */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(
            135deg,
            var(--primary),
            #00b34a
    );
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* delikatny efekt glow w tle */
.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* PRZYCISKI */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1rem;
}

/* GŁÓWNY */

.cta-btn.primary {
    background: #ffffff;
    color: var(--primary);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* DRUGI */

.cta-btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: var(--primary);
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }
}


/* ================= BLOG ================= */

/* ================= BLOG TIMELINE ================= */

.blog-timeline {
    padding: 120px 0 160px 0;
    background: #ffffff;
}

.blog-posts-header {
    margin-bottom: 80px;
}

.blog-posts-header h2 {
    font-size: 2rem;
    font-weight: 600;
}

/* Oś */

.timeline {
    position: relative;
    max-width: 800px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #eee;
}

/* Element */

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 70px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
}

/* Najnowszy wpis */

.timeline-item.featured .timeline-dot {
    width: 22px;
    height: 22px;
    left: 9px;
}

/* Treść */

.timeline-content {
    transition: 0.4s ease;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.timeline-content h3 a {
    text-decoration: none;
    color: #111;
    transition: 0.3s;
}

.timeline-content h3 a:hover {
    color: var(--primary);
}

.timeline-meta {
    margin-bottom: 10px;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-read {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s;
}

.timeline-read:hover {
    letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .timeline {
        max-width: 100%;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-dot {
        left: 2px;
    }
}

/* ================= BLOG POST TEMPLATE ================= */

/* ================= POST HERO ================= */

.post-hero {
    padding: 160px 0 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.post-hero-inner {
    max-width: 900px;
    text-align: center;
}

/* Meta */

.post-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.post-meta .dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Tytuł */

.post-hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Lead */

.post-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

/* ================= CONTENT ================= */

/* ================= HERO ================= */

.post-hero {
    padding: 180px 0 140px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 70%);
}

/* ================= FLOATING ARTICLE CARD ================= */

.post-content {
    margin-top: -80px; /* wchodzi na hero */
    padding-bottom: 140px;
}

.post-content-inner {
    max-width: 900px;
    background: #ffffff;
    border-radius: 24px;
    padding: 80px 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
    position: relative;
}

/* Subtelna linia oddzielająca */

.post-content-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

/* Responsive */

@media (max-width: 1024px) {
    .post-content-inner {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {

    .post-hero {
        padding: 140px 0 120px 0;
    }

    .post-content {
        margin-top: -60px;
    }

    .post-content-inner {
        padding: 50px 25px;
        border-radius: 18px;
    }
}
/* Treść */

.blog-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin: 70px 0 25px 0;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin: 50px 0 20px 0;
}

.blog-content p {
    margin-bottom: 22px;
}

.blog-content ul {
    margin: 20px 0 20px 25px;
}

.blog-content li {
    margin-bottom: 10px;
}

/* Cytaty */

.blog-content blockquote {
    margin: 50px 0;
    padding: 30px 40px;
    background: #f9fafb;
    border-left: 4px solid var(--primary);
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Obrazy */

.blog-content img {
    max-width: 100%;
    border-radius: 16px;
    margin: 40px 0;
}

/* Responsive */

@media (max-width: 768px) {

    .post-hero h1 {
        font-size: 2.1rem;
    }

    .post-lead {
        font-size: 1.05rem;
    }

    .post-hero {
        padding: 120px 0 80px 0;
    }
}

/* ===== BLOG TAGS ===== */

.blog-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.blog-tags-title {
    font-weight: 600;
    color: #666;
    margin-right: 5px;
}

.blog-tag {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0,200,83,0.08);
    color: var(--primary);
    text-decoration: none;
    transition: 0.2s ease;
}

.blog-tag:hover {
    background: rgba(0,200,83,0.15);
}

/* ================= BREADCRUMBS ================= */

.breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: #888;
}

.breadcrumbs a {
    text-decoration: none;
    color: #888;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    margin: 0 8px;
}

.breadcrumbs .current {
    color: #555;
}

/* ================= KONTAKT-Z-NAMI ================= */
.contact-info {
    padding: 120px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-box {
    background: #f9fafb;
    padding: 50px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-box h3 {
    margin-bottom: 15px;
}

.contact-highlight {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.contact-process {
    padding: 140px 0;
    background: color-mix(in srgb, var(--primary) 8%, white);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-steps > div {
    background: #f9fafb;
    padding: 60px 40px;
    border-radius: 20px;
    transition: 0.3s ease;
    position: relative;
}

.process-steps > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Numer */

.process-steps span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Tytuł */

.process-steps h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Opis */

.process-steps p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ================= CITY CHIPS ================= */

.contact-area {
    padding: 140px 0 160px 0;
    background: rgba(0, 200, 83, 0.05); /* jasne tło z primary */
    text-align: center;
}

.city-chips {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Pojedynczy chip */

.chip {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;

    background: #ffffff;
    color: #333;

    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);

    transition: all 0.3s ease;
}

/* Hover efekt */

.chip:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,200,83,0.25);
}
/* ================= KONTAKT-Z-NAMI ================= */

/* ================= OFERTA ================= */
.services-section-modern {
    padding: 160px 0;
    background: #ffffff;
}

.services-grid-modern {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* KARTA */

.service-card-modern {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.07);
    border-color: rgba(0,200,83,0.3);
}

/* Ikona */

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(0,200,83,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    transition: 0.3s ease;
}

.service-card-modern:hover .service-icon {
    background: var(--primary);
    color: #ffffff;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

/* Tytuł */

.service-card-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Opis */

.service-card-modern p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Link */

.service-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: 0.3s;
}

.service-card-modern:hover .service-link {
    letter-spacing: 0.5px;
}

/* Responsive */

@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .service-card-modern {
        padding: 40px 25px;
    }
}


.service-included {
    padding: 140px 0;
    background: color-mix(in srgb, var(--primary) 8%, white);
    text-align: center;
}

.included-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.included-grid div {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.included-grid div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.why-us {
    padding: 140px 0;
    background: #ffffff;
    text-align: center;
}

.why-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.why-grid div {
    padding: 20px 30px;
}

.why-grid h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.why-grid h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0 auto;
    border-radius: 5px;
}

.why-grid p {
    margin-top: 20px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section,
    .service-included,
    .why-us {
        padding: 100px 0;
    }
}
/* ================= OFERTA ================= */


/* ================= MONITORING ================= */
.problem-solution {
    padding: 160px 0;
    background: #ffffff;
}

.problem-solution-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.problem-box,
.solution-box {
    padding: 50px;
    border-radius: 24px;
    transition: 0.35s ease;
}

.problem-box {
    background: #fff5f5;
    border: 1px solid rgba(255,0,0,0.08);
}

.solution-box {
    background: rgba(0,200,83,0.05);
    border: 1px solid rgba(0,200,83,0.15);
}

.problem-box:hover,
.solution-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.problem-box h3,
.solution-box h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.problem-box ul,
.solution-box ul {
    list-style: none;
    padding: 0;
}

.problem-box li,
.solution-box li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive */

@media (max-width: 992px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
}

.m-included {
    padding: 160px 0;
    background: rgba(0,200,83,0.04);
}

.m-included-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.m-included-item {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.m-included-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.m-included-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0,200,83,0.1);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.m-included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.m-included-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .m-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .m-included-grid {
        grid-template-columns: 1fr;
    }

    .m-included-item {
        padding: 40px 25px;
    }
}

.m-types {
    padding: 160px 0;
    background: #ffffff;
}

.m-types-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.m-type-item {
    padding: 40px;
    border-radius: 24px;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
    text-align: left;
}

.m-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.m-type-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.m-type-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.m-type-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .m-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .m-types-grid {
        grid-template-columns: 1fr;
    }

    .m-type-item {
        padding: 30px;
    }
}


.m-installation {
    padding: 160px 0;
    background: rgba(0,200,83,0.04);
}

.m-installation-steps {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

/* Linia pionowa */

.m-installation-steps::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,200,83,0.2);
}

/* Pojedynczy krok */

.m-step {
    display: flex;
    gap: 40px;
    position: relative;
}

.m-step-number {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.m-step-content h3 {
    margin-bottom: 10px;
}

.m-step-content p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 768px) {

    .m-installation-steps::before {
        left: 20px;
    }

    .m-step {
        gap: 25px;
    }

    .m-step-number {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}
/* ================= MONITORING ================= */

/* ================= ALARM ================= */
.alarm-problem {
    padding: 160px 0;
    background: #ffffff;
}

.alarm-problem-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.alarm-problem-box,
.alarm-solution-box {
    padding: 50px;
    border-radius: 24px;
    transition: 0.35s ease;
}

.alarm-problem-box {
    background: #fff5f5;
    border: 1px solid rgba(255,0,0,0.08);
}

.alarm-solution-box {
    background: rgba(0,200,83,0.05);
    border: 1px solid rgba(0,200,83,0.15);
}

.alarm-problem-box:hover,
.alarm-solution-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.alarm-problem-box h3,
.alarm-solution-box h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.alarm-problem-box ul,
.alarm-solution-box ul {
    list-style: none;
    padding: 0;
}

.alarm-problem-box li,
.alarm-solution-box li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.alarm-problem-note {
    margin-top: 60px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alarm-problem-note p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 992px) {
    .alarm-problem-grid {
        grid-template-columns: 1fr;
    }
}


.alarm-included {
    padding: 160px 0;
    background: rgba(0,200,83,0.04);
}

.alarm-included-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.alarm-included-item {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.alarm-included-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.alarm-included-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0,200,83,0.1);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.alarm-included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.alarm-included-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .alarm-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .alarm-included-grid {
        grid-template-columns: 1fr;
    }

    .alarm-included-item {
        padding: 40px 25px;
    }
}

.alarm-types {
    padding: 160px 0;
    background: #ffffff;
}

.alarm-types-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.alarm-type-item {
    padding: 40px;
    border-radius: 24px;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.alarm-type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.alarm-type-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.alarm-type-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.alarm-type-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .alarm-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .alarm-types-grid {
        grid-template-columns: 1fr;
    }

    .alarm-type-item {
        padding: 30px;
    }
}

.alarm-how {
    padding: 160px 0;
    background: rgba(0,200,83,0.04);
}

.alarm-how-steps {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.alarm-how-step {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.alarm-how-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.alarm-how-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.alarm-how-step h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.alarm-how-step p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .alarm-how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .alarm-how-steps {
        grid-template-columns: 1fr;
    }
}
/* ================= ALARM ================= */

/* ================= LAN ================= */
.lan-problem {
    padding: 160px 0;
    background: #ffffff;
}

.lan-problem-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.lan-problem-box,
.lan-solution-box {
    padding: 50px;
    border-radius: 24px;
    transition: 0.35s ease;
}

.lan-problem-box {
    background: #fff5f5;
    border: 1px solid rgba(255,0,0,0.08);
}

.lan-solution-box {
    background: rgba(0,200,83,0.05);
    border: 1px solid rgba(0,200,83,0.15);
}

.lan-problem-box:hover,
.lan-solution-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.lan-problem-box h3,
.lan-solution-box h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.lan-problem-box ul,
.lan-solution-box ul {
    list-style: none;
    padding: 0;
}

.lan-problem-box li,
.lan-solution-box li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.lan-problem-note {
    margin-top: 60px;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.lan-problem-note p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 992px) {
    .lan-problem-grid {
        grid-template-columns: 1fr;
    }
}

.lan-included {
    padding: 160px 0;
    background: rgba(0,200,83,0.04);
}

.lan-included-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.lan-included-item {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.lan-included-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.lan-included-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0,200,83,0.1);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.lan-included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.lan-included-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .lan-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lan-included-grid {
        grid-template-columns: 1fr;
    }

    .lan-included-item {
        padding: 40px 25px;
    }
}

.lan-types {
    padding: 160px 0;
    background: #f9fafb;
}

.lan-types-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.lan-type-card {
    padding: 60px 50px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.lan-type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.lan-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.lan-type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.lan-type-card p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 992px) {
    .lan-types-grid {
        grid-template-columns: 1fr;
    }
}

.lan-process {
    padding: 160px 0;
    background: #ffffff;
}

.lan-process-timeline {
    margin-top: 80px;
    position: relative;
    padding-left: 40px;
}

.lan-process-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0,0,0,0.08);
}

.lan-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.lan-process-circle {
    position: absolute;
    left: -4px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.lan-process-content {
    margin-left: 60px;
    background: #f9fafb;
    padding: 35px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.lan-process-content:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.lan-process-content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.lan-process-content p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 768px) {

    .lan-process-timeline {
        padding-left: 0;
    }

    .lan-process-timeline::before {
        display: none;
    }

    .lan-process-step {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .lan-process-circle {
        position: relative;
        left: 0;
        margin-bottom: 15px;
    }

    .lan-process-content {
        margin-left: 0;
    }
}

.lan-why {
    padding: 160px 0;
    background: #f4f6f8;
}

.lan-why-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.lan-why-item {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.35s ease;
    text-align: center;
}

.lan-why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: rgba(0,200,83,0.2);
}

.lan-why-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.lan-why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.lan-why-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1200px) {
    .lan-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lan-why-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= LAN ================= */

/* ================= REALIZACJE ================= */
.real-list {
    padding: 160px 0;
    background: #ffffff;
}

.real-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 140px;
}

.real-item-reverse {
    direction: rtl;
}

.real-item-reverse .real-item-content {
    direction: ltr;
}

.real-item-image {
    aspect-ratio: 4 / 3;
}

.real-item-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.real-item-content h2 {
    font-size: 1.8rem;
    margin: 15px 0 20px 0;
}

.real-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.real-scope {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary);
}

.real-description p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.real-link {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s ease;
}

.real-link:hover {
    color: var(--primary);
}

/* Responsive */

@media (max-width: 992px) {

    .real-item,
    .real-item-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .real-item {
        gap: 40px;
    }

    .real-item {
        margin-bottom: 80px;
    }
}
/* ================= REALIZACJE ================= */