/* /Layout/Footer.razor.rz.scp.css */
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer[b-zippxvsfac] {
    --background-color: rgba(26, 35, 126, 0.80);
    --default-color: #ffffff;
    --QURGAL-dark: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

    .footer .footer-top[b-zippxvsfac] {
        padding-top: 50px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .footer .footer-about .logo[b-zippxvsfac] {
        line-height: 1;
        margin-bottom: 25px;
    }

        .footer .footer-about .logo img[b-zippxvsfac] {
            max-height: 40px;
            margin-right: 6px;
            color: var(--surface-color);
        }

        .footer .footer-about .logo span[b-zippxvsfac] {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
            color: var(--surface-color);
        }

    .footer .footer-about p[b-zippxvsfac] {
        font-size: 14px;
        font-family: var(--heading-font);
    }

.social-grid[b-zippxvsfac] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-box[b-zippxvsfac] {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--QURGAL-blue);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .social-box:hover[b-zippxvsfac] {
        transform: translateY(-8px) scale(1.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

    .social-box.whatsapp:hover[b-zippxvsfac] {
        background: #25D366;
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    }

    .social-box.instagram:hover[b-zippxvsfac] {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
    }

    .social-box.facebook:hover[b-zippxvsfac] {
        background: #1877F2;
        box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
    }

    .social-box.x-twitter:hover[b-zippxvsfac] {
        background: #000000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .social-box.linkedin:hover[b-zippxvsfac] {
        background: #0077B5;
        box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
    }

    .social-box.maps:hover[b-zippxvsfac] {
        background: #EA4335;
        box-shadow: 0 10px 20px rgba(234, 67, 53, 0.4);
    }

.social-box[b-zippxvsfac] {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .social-grid[b-zippxvsfac] {
        gap: 10px;
        justify-content: center;
    }

    .social-box[b-zippxvsfac] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

        .social-box:hover[b-zippxvsfac] {
            transform: translateY(-5px) scale(1.05);
        }
}

@media (max-width: 380px) {
    .social-box[b-zippxvsfac] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

    .footer h4[b-zippxvsfac] {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links[b-zippxvsfac] {
        margin-bottom: 30px;
    }

        .footer .footer-links ul[b-zippxvsfac] {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i[b-zippxvsfac] {
                padding-right: 3px;
                font-size: 13px;
                line-height: 0;
                color: var(--surface-color);
            }

            .footer .footer-links ul li[b-zippxvsfac] {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child[b-zippxvsfac] {
                    padding-top: 0;
                }

            .footer .footer-links ul a[b-zippxvsfac] {
                color: var(--nav-color);
                font-size: 14px;
                padding: 0 2px;
                font-family: var(--nav-font);
                font-weight: 500;
                display: inline-block;
                align-items: center;
                justify-content: space-between;
                white-space: nowrap;
                transition: 0.3s;
                position: relative;
                text-transform: uppercase;
            }

                .footer .footer-links ul a:hover[b-zippxvsfac] {
                    color: var(--nav-hover-color);
                }
        .footer .footer-links a i[b-zippxvsfac],
        .footer .footer-links a:focus i[b-zippxvsfac] {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
            transition: 0.3s;
        }

        .footer .footer-links > ul > li > a[b-zippxvsfac]:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .footer .footer-links a:hover[b-zippxvsfac]:before,
        .footer .footer-links li:hover > a[b-zippxvsfac]:before,
        .footer .footer-links .active[b-zippxvsfac]:before {
            visibility: visible;
            width: 100%;
        }


    .footer .footer-contact a[b-zippxvsfac] {
        margin-bottom: 5px;
        color: var(--nav-hover-color);
    }

    .footer .footer-newsletter .newsletter-form[b-zippxvsfac] {
        margin-top: 30px;
        margin-bottom: 15px;
        padding: 6px 8px;
        position: relative;
        border-radius: 4px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
        display: flex;
        background-color: var(--background-color);
        transition: 0.3s;
    }

        .footer .footer-newsletter .newsletter-form:focus-within[b-zippxvsfac] {
            border-color: var(--QURGAL-blue);
        }

        .footer .footer-newsletter .newsletter-form input[type=email][b-zippxvsfac] {
            border: 0;
            padding: 4px;
            width: 100%;
            background-color: var(--background-color);
            color: var(--default-color);
        }

            .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible[b-zippxvsfac] {
                outline: none;
            }

        .footer .footer-newsletter .newsletter-form input[type=submit][b-zippxvsfac] {
            border: 0;
            font-size: 16px;
            padding: 0 20px;
            margin: -7px -8px -7px 0;
            background: var(--QURGAL-blue);
            color: var(--surface-color);
            transition: 0.3s;
            border-radius: 0 4px 4px 0;
        }

            .footer .footer-newsletter .newsletter-form input[type=submit]:hover[b-zippxvsfac] {
                background: color-mix(in srgb, var(--QURGAL-blue), transparent 20%);
            }

    .footer .copyright[b-zippxvsfac] {
        padding: 25px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .copyright p[b-zippxvsfac] {
            margin-bottom: 0;
        }

    .footer .credits[b-zippxvsfac] {
        margin-top: 6px;
        font-size: 13px;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-w9x9s3sg8n] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-w9x9s3sg8n] {
    flex: 1;
}

.sidebar[b-w9x9s3sg8n] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-w9x9s3sg8n] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-w9x9s3sg8n]  a, .top-row[b-w9x9s3sg8n]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-w9x9s3sg8n]  a:hover, .top-row[b-w9x9s3sg8n]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-w9x9s3sg8n]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-w9x9s3sg8n] {
        justify-content: space-between;
    }

    .top-row[b-w9x9s3sg8n]  a, .top-row[b-w9x9s3sg8n]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-w9x9s3sg8n] {
        flex-direction: row;
    }

    .sidebar[b-w9x9s3sg8n] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-w9x9s3sg8n] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-w9x9s3sg8n]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-w9x9s3sg8n], article[b-w9x9s3sg8n] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

@media (min-width: 769px) {
    .navmenu[b-sr8hk3hz2p] {
        padding: 0;
    }

        .navmenu ul[b-sr8hk3hz2p] {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li[b-sr8hk3hz2p] {
            position: relative;
        }

        .navmenu > ul > li[b-sr8hk3hz2p] {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child[b-sr8hk3hz2p] {
                padding-right: 0;
            }

        .navmenu a[b-sr8hk3hz2p],
        .navmenu a:focus[b-sr8hk3hz2p] {
            color: var(--nav-color);
            font-size: 14px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
            text-transform: uppercase;
        }

            .navmenu a i[b-sr8hk3hz2p],
            .navmenu a:focus i[b-sr8hk3hz2p] {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a[b-sr8hk3hz2p]:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover[b-sr8hk3hz2p]:before,
        .navmenu li:hover > a[b-sr8hk3hz2p]:before,
        .navmenu .active[b-sr8hk3hz2p]:before {
            visibility: visible;
            width: 100%;
        }

        .navmenu .dropdown ul[b-sr8hk3hz2p] {
            color: var(--nav-color);
            margin: 0;
            padding: 10px 0;
            background: var(--background-color);
            backdrop-filter: blur(50px);
            -webkit-backdrop-filter: blur(50px);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li[b-sr8hk3hz2p] {
                min-width: 200px;
            }

            .navmenu .dropdown ul a[b-sr8hk3hz2p] {
                color: var(--nav-color);
                padding: 10px 20px;
                font-size: 14px;
            }
                .navmenu .dropdown ul a[b-sr8hk3hz2p]:before {
                    content: "";
                    position: absolute;
                    height: 2px;
                    bottom: 5px;
                    left: 20px;
                    background-color: var(--nav-hover-color);
                    visibility: hidden;
                    width: 0px;
                    transition: all 0.3s ease-in-out;
                }

                .navmenu .dropdown ul a:hover[b-sr8hk3hz2p]:before,
                .navmenu .dropdown ul li:hover > a[b-sr8hk3hz2p]:before {
                    visibility: visible;
                    width: calc(100% - 40px);
                }

                .navmenu .dropdown ul a i[b-sr8hk3hz2p] {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover[b-sr8hk3hz2p],
                .navmenu .dropdown ul .active:hover[b-sr8hk3hz2p],
                .navmenu .dropdown ul li:hover > a[b-sr8hk3hz2p] {
                    color: var(--nav-color);
                }


        .navmenu .dropdown:hover > ul[b-sr8hk3hz2p] {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul[b-sr8hk3hz2p] {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul[b-sr8hk3hz2p] {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }

        .navmenu .dropdown:hover > a i[b-sr8hk3hz2p],
        .navmenu .dropdown > a:focus i[b-sr8hk3hz2p],
        .navmenu .dropdown.active > a i[b-sr8hk3hz2p] {
            transform: rotate(180deg) !important;
        }

        .navmenu .dropdown .bi-chevron-down[b-sr8hk3hz2p] {
            transition: transform 0.3s ease-in-out !important;
            display: inline-block !important;
        }

        .navmenu .dropdown .toggle-dropdown[b-sr8hk3hz2p] {
            cursor: pointer;
        }

        .navmenu .nav-lng-btn[b-sr8hk3hz2p] {
            text-transform: none;
            justify-content: start;
        }

            .navmenu .nav-lng-btn span[b-sr8hk3hz2p] {
                margin-left: 8px;
            }
}


@media (max-width: 768px) {
    .mobile-nav-toggle[b-sr8hk3hz2p] {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu[b-sr8hk3hz2p] {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul[b-sr8hk3hz2p] {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a[b-sr8hk3hz2p],
        .navmenu a:focus[b-sr8hk3hz2p] {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 15px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            text-transform: uppercase;
        }

            .navmenu a i[b-sr8hk3hz2p],
            .navmenu a:focus i[b-sr8hk3hz2p] {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--QURGAL-blue), transparent 90%);
            }

                .navmenu a i:hover[b-sr8hk3hz2p],
                .navmenu a:focus i:hover[b-sr8hk3hz2p] {
                    background-color: var(--QURGAL-blue);
                    color: var(--surface-color);
                }

            .navmenu a:hover[b-sr8hk3hz2p],
            .navmenu .active[b-sr8hk3hz2p],
            .navmenu .active:focus[b-sr8hk3hz2p] {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i[b-sr8hk3hz2p],
                .navmenu .active:focus i[b-sr8hk3hz2p] {
                    background-color: var(--QURGAL-blue);
                    color: var(--surface-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul[b-sr8hk3hz2p] {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul[b-sr8hk3hz2p] {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active[b-sr8hk3hz2p] {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

        .navmenu .nav-lng-btn[b-sr8hk3hz2p] {
            text-transform: none;
            justify-content: start;
        }

            .navmenu .nav-lng-btn span[b-sr8hk3hz2p] {
                margin-left: 8px;
            }

    .mobile-nav-active[b-sr8hk3hz2p] {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle[b-sr8hk3hz2p] {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu[b-sr8hk3hz2p] {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul[b-sr8hk3hz2p] {
                display: block;
            }
}

.header-logo-container[b-sr8hk3hz2p] {
    font-size: 3rem;
    font-weight: 800;
    height: 80px;
    display: flex;
    align-items: center;
}

.cursor[b-sr8hk3hz2p] {
    width: 4px;
    height: 1.2em;
    background: #0a1128;
    margin-left: 5px;
    animation: blink-b-sr8hk3hz2p 0.7s infinite;
}

@keyframes blink-b-sr8hk3hz2p {
    50% {
        opacity: 0;
    }
}
/* /Pages/About.razor.rz.scp.css */
.side-branding-fixed[b-ebv8ait85h] {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0,0,0,0.05);
    z-index: 9999;
    background: #fff;
}

.vertical-text[b-ebv8ait85h] {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--QURGAL-rose);
    white-space: nowrap;
}

.QURGAL-mesh-bg[b-ebv8ait85h] {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 10%;
    background-color: #fff;
    background-image: radial-gradient(at 0% 0%, var(--QURGAL-rose) 0px, transparent 45%), radial-gradient(at 50% 0%, var(--QURGAL-indigo) 0px, transparent 45%), radial-gradient(at 100% 0%, var(--QURGAL-purple) 0px, transparent 45%), radial-gradient(at 0% 100%, var(--QURGAL-blue) 0px, transparent 45%), radial-gradient(at 100% 100%, var(--QURGAL-amber) 0px, transparent 45%);
    background-size: 160% 160%;
    animation: meshAnimation-b-ebv8ait85h 12s ease infinite alternate;
}

@keyframes meshAnimation-b-ebv8ait85h {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.QURGAL-logo-type[b-ebv8ait85h] {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    letter-spacing: -6px;
    line-height: 0.8;
    margin-bottom: 20px;
}

.manifesto-section[b-ebv8ait85h] {
    padding: 150px 10% 150px 12%;
}

.manifesto-text[b-ebv8ait85h] {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .manifesto-text[b-ebv8ait85h] {
        letter-spacing: -1px;
        line-height: 1.25;
    }
}

.m-rose[b-ebv8ait85h] {
    color: var(--QURGAL-rose);
}

.m-indigo[b-ebv8ait85h] {
    color: var(--QURGAL-indigo);
}

.m-purple[b-ebv8ait85h] {
    color: var(--QURGAL-purple);
}

.m-blue[b-ebv8ait85h] {
    color: var(--QURGAL-blue);
}

.m-amber[b-ebv8ait85h] {
    color: var(--QURGAL-amber);
}

.global-section[b-ebv8ait85h] {
    padding: 120px 10%;
    border-radius: 80px 80px 0 0;
}

.stats-grid[b-ebv8ait85h] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.node-card[b-ebv8ait85h] {
    border-left: 5px solid rgba(255,255,255,0.1);
    padding: 20px 0 20px 30px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-num[b-ebv8ait85h] {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.founder-wrap[b-ebv8ait85h] {
    background: #fcfcfc;
    padding: clamp(60px, 10vw, 150px) clamp(20px, 10%, 12%);
}

.founder-card[b-ebv8ait85h] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: clamp(30px, 8vw, 80px);
    border-radius: clamp(20px, 5vw, 40px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.03);
}

.founder-tag[b-ebv8ait85h] {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 5px);
    color: var(--QURGAL-purple);
    font-size: 0.7rem;
    margin-bottom: clamp(20px, 4vw, 40px);
    display: block;
}

.founder-quote[b-ebv8ait85h] {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 200;
    line-height: 1.6;
    color: #222;
}

    .founder-quote b[b-ebv8ait85h] {
        font-weight: 700;
        color: var(--QURGAL-dark);
        background: rgba(253, 126, 20, 0.08);
        padding: 0 4px;
        display: inline-block;
        line-height: 1;
    }

.signature[b-ebv8ait85h] {
    margin-top: 50px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--QURGAL-indigo);
    display: block;
}

@media (max-width: 991px) {
    .stats-grid[b-ebv8ait85h] {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .amber-full[b-ebv8ait85h] {
        grid-column: span 2 !important;
        text-align: center;
    }

        .amber-full .node-card[b-ebv8ait85h] {
            padding-left: 0;
        }
}

@media (min-width: 992px) {
    .side-branding-fixed[b-ebv8ait85h] {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .QURGAL-logo-type[b-ebv8ait85h] {
        font-size: 4.5rem;
    }

    .global-section[b-ebv8ait85h] {
        border-radius: 40px 40px 0 0;
        padding: 80px 8%;
    }

    .manifesto-section[b-ebv8ait85h] {
        padding: 80px 8% 80px 10%;
    }

    .founder-wrap[b-ebv8ait85h] {
        padding: 80px 20px;
    }
}
/* /Pages/Components/DetailComponents/ComponentBento.razor.rz.scp.css */
/* ============================================================
   1. VARSAYILAN AYARLAR (1201px ve Üzeri - İlk Haliniz)
   ============================================================ */

.main-wrapper[b-x4jyy0vzqf] {
    width: 100%;
    margin: auto;
}

.hero-header[b-x4jyy0vzqf] {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 45px 60px;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-block; /* Kompakt görünüm için eklendi */
    margin-left: 15px;
}

    .hero-header h1[b-x4jyy0vzqf] {
        font-weight: 800;
        font-size: 2.5rem;
        color: #1a1a1a;
        margin: 0;
    }

.bento-master-grid[b-x4jyy0vzqf] {
    background-color: var(--local-main-color-ultra-light);
    border-radius: 50px;
    padding: 85px 25px 30px 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 15px;
}

.bento-card[b-x4jyy0vzqf] {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: 35px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .bento-card h3[b-x4jyy0vzqf] {
        font-size: 1.2rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .bento-card p[b-x4jyy0vzqf] {
        font-size: 0.95rem;
        color: #1a1a1a;
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
    }

.icon-box[b-x4jyy0vzqf] {
    width: 42px;
    height: 42px;
    background: #ffffff !important; /* Arka plan beyaz */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

    .icon-box i[b-x4jyy0vzqf] {
        color: var(--local-main-color);
        font-size: 1.3rem;
    }

/* Grid Yerleşimleri (Tüm modlarda aynı kalabilir) */
.q1[b-x4jyy0vzqf] {
    grid-column: span 2;
}

.q2[b-x4jyy0vzqf] {
    grid-column: span 2;
}

.q3[b-x4jyy0vzqf] {
    grid-column: span 1;
    grid-row: span 2;
}

.q4[b-x4jyy0vzqf] {
    grid-column: span 2;
}

.q5[b-x4jyy0vzqf] {
    grid-column: span 1;
}

.q6[b-x4jyy0vzqf] {
    grid-column: span 3;
    background: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   2. 1200px ALTI AYARLAR (Tablet ve Küçük Masaüstü)
   ============================================================ */

@media (max-width: 1200px) {
    .main-wrapper[b-x4jyy0vzqf] {
        max-width: 1100px;
    }

    .hero-header[b-x4jyy0vzqf] {
        border-radius: 18px;
        padding: 15px 35px;
        margin-bottom: -25px;
        margin-left: 15px;
    }

        .hero-header h1[b-x4jyy0vzqf] {
            font-size: 1.6rem;
        }

    .bento-master-grid[b-x4jyy0vzqf] {
        border-radius: 30px;
        padding: 45px 12px 12px 12px;
        grid-template-rows: repeat(3, 150px);
        gap: 12px;
    }

    .bento-card[b-x4jyy0vzqf] {
        border-radius: 20px;
        padding: 20px;
    }

        .bento-card h3[b-x4jyy0vzqf] {
            font-size: 1.1rem;
            margin-bottom: 8px;
            gap: 12px;
        }

        .bento-card p[b-x4jyy0vzqf] {
            font-size: 0.9rem;
            line-height: 1.4;
            color: #333;
        }

    .icon-box[b-x4jyy0vzqf] {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

        .icon-box i[b-x4jyy0vzqf] {
            font-size: 1.1rem;
        }
}

/* ============================================================
   3. 990px VE ALTI (Mobil Ayarları)
   ============================================================ */

@media (max-width: 990px) {
    .hero-header h1[b-x4jyy0vzqf] {
        font-size: 1.25rem;
    }

    .bento-master-grid[b-x4jyy0vzqf] {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 35px 8px 8px 8px;
        gap: 6px;
    }

    .bento-card[b-x4jyy0vzqf] {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 0;
        padding: 10px 12px;
        border-radius: 14px;
        justify-content: flex-start;
    }

        .bento-card h3[b-x4jyy0vzqf] {
            font-size: 0.85rem;
            margin-bottom: 2px;
            gap: 8px;
        }

        .bento-card p[b-x4jyy0vzqf] {
            font-size: 0.75rem;
            line-height: 1.2;
        }

    .icon-box[b-x4jyy0vzqf] {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

        .icon-box i[b-x4jyy0vzqf] {
            font-size: 0.85rem;
        }
}
/* /Pages/Components/DetailComponents/ComponentCallToAction.razor.rz.scp.css */
/* ============================================================
    PREMIUM CTA SECTION - FULLY RESPONSIVE & CENTERED
   ============================================================ */

.premium-cta-section[b-18c69koc59] {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.fluent-canvas[b-18c69koc59] {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

/* --- ORBS (Arka Plan Işıkları) --- */
.orb[b-18c69koc59] {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.35;
}

.orb-1[b-18c69koc59] {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: var(--local-main-color-ultra-light, #e0e7ff);
}

.orb-2[b-18c69koc59] {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    background: var(--local-main-color-light, #818cf8);
}

/* --- GLASS SURFACE (Cam Panel) --- */
.cta-glass-surface.panoramic[b-18c69koc59] {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.04);
}

.cta-grid[b-18c69koc59] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

/* --- İÇERİK ELEMANLARI --- */
.fluent-badge[b-18c69koc59] {
    display: inline-block;
    background: #ffffff;
    border: 1px solid var(--local-main-color-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--local-main-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fluent-title[b-18c69koc59] {
    font-size: 3.2rem;
    font-weight: 900;
    color: #0a1128;
    line-height: 1.1;
    margin-top: 25px;
}

.fluent-description[b-18c69koc59] {
    font-size: 1.1rem;
    color: #475569;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 450px;
}

/* --- BUTONLAR VE AKSİYONLAR --- */
.cta-actions-container[b-18c69koc59] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-fluent-primary.wide[b-18c69koc59] {
    background: #fff;
    color: #0a1128;
    padding: 22px 28px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

    .btn-fluent-primary.wide:hover[b-18c69koc59] {
        background: #fff;
        color: var(--local-main-color);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

.btn-icon[b-18c69koc59] {
    font-size: 1.6rem;
    background: #f8fafc;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.btn-text span[b-18c69koc59] {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-text small[b-18c69koc59] {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.secondary-btn-row[b-18c69koc59] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-fluent-secondary.compact[b-18c69koc59] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0a1128;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: 0.2s;
}

    .btn-fluent-secondary.compact:hover[b-18c69koc59] {
        background: #f8fafc;
        border-color: var(--local-main-color);
        color: var(--local-main-color);
    }

/* --- GÜVEN BİLGİSİ --- */
.cta-trust-mini[b-18c69koc59] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
}

    .cta-trust-mini i[b-18c69koc59] {
        color: var(--local-main-color);
    }

/* Başlık vurgu efekti */
[b-18c69koc59] .fluent-title .highlight {
    background: linear-gradient(135deg, var(--local-main-color), var(--local-main-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
    RESPONSIVE DÜZENLEME (ORTALAMA SORUNU ÇÖZÜMÜ)
   ============================================================ */

@media (max-width: 991px) {
    .cta-glass-surface.panoramic[b-18c69koc59] {
        padding: 45px 25px; /* Mobilde daha dengeli boşluk */
    }

    .cta-grid[b-18c69koc59] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        justify-items: center; /* İÇERİĞİ TAM MERKEZE ALIR */
    }

    .fluent-title[b-18c69koc59] {
        font-size: 2.5rem;
        text-align: center;
    }

    .fluent-description[b-18c69koc59] {
        margin: 20px auto 0 auto !important; /* Kutuyu ortalar */
        text-align: center;
        max-width: 100%;
    }

    .cta-actions-container[b-18c69koc59] {
        width: 100%;
        max-width: 450px; /* Butonların çok yayılmasını önler */
        margin: 0 auto; /* Konteyneri grid içinde ortalar */
    }

    .secondary-btn-row[b-18c69koc59] {
        grid-template-columns: 1fr; /* Mobilde butonları alt alta alarak genişlik sağlar */
    }

    .btn-fluent-primary.wide[b-18c69koc59] {
        justify-content: center; /* Buton içindeki metni ortalar */
    }
}

@media (max-width: 480px) {
    .fluent-title[b-18c69koc59] {
        font-size: 2rem;
    }

    .cta-glass-surface.panoramic[b-18c69koc59] {
        padding: 35px 15px;
    }
}
/* /Pages/Components/DetailComponents/ComponentScenario.razor.rz.scp.css */
.scenario-grid[b-op8via2mh9] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.premium-rect-card[b-op8via2mh9] {
    background: transparent !important;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    min-height: 160px;
    height: auto;
    transition: all 0.5s ease;
    box-sizing: border-box;
}

    .premium-rect-card[b-op8via2mh9]::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient( var(--angle, 0deg), var(--local-main-color), transparent, var(--local-main-color-light), transparent, var(--local-main-color) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: rotateGradient-b-op8via2mh9 4s linear infinite;
    }

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateGradient-b-op8via2mh9 {
    to {
        --angle: 360deg;
    }
}

.icon-box-asymmetric[b-op8via2mh9] {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--local-main-color);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 2;
    animation: floatingIcon-b-op8via2mh9 4s infinite ease-in-out;
}

@keyframes floatingIcon-b-op8via2mh9 {
    0%, 100% {
        transform: rotate(-6deg) translateY(0);
    }

    50% {
        transform: rotate(0deg) translateY(-8px);
    }
}

.content-box[b-op8via2mh9] {
    flex: 1;
    min-width: 0;
}

    .content-box h3[b-op8via2mh9] {
        font-size: 1.2rem;
        font-weight: 800;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 8px;
        gap: 10px;
    }

    .content-box p[b-op8via2mh9] {
        margin: 0;
        line-height: 1.4;
    }

.status-badge-mini[b-op8via2mh9] {
    flex-shrink: 0;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    padding: 6px 14px !important;
    border-radius: 8px;
    background: var(--local-main-color);
    color: #fff;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
    animation: badgeShineEffect-b-op8via2mh9 3s infinite;
}

@keyframes badgeShineEffect-b-op8via2mh9 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 1200px) and (min-width: 991px) {
    .scenario-grid[b-op8via2mh9] {
        gap: 16px;
    }

    .premium-rect-card[b-op8via2mh9] {
        padding: 18px;
        min-height: 140px;
    }

    .content-box h3[b-op8via2mh9] {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .status-badge-mini[b-op8via2mh9] {
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
    }
}

@media (max-width: 990px) {
    .scenario-grid[b-op8via2mh9] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .premium-rect-card[b-op8via2mh9] {
        min-height: 100px;
        padding: 15px !important;
        gap: 15px !important;
        border-radius: 15px !important;
    }

        .premium-rect-card[b-op8via2mh9]::after {
            border-radius: 15px !important;
        }

    .icon-box-asymmetric[b-op8via2mh9] {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.4rem !important;
        border-radius: 12px !important;
    }

    .content-box h3[b-op8via2mh9] {
        font-size: 1.05rem !important;
        margin-bottom: 4px !important;
    }

    .content-box p[b-op8via2mh9] {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
    }

    .status-badge-mini[b-op8via2mh9] {
        font-size: 0.6rem !important;
        padding: 3px 10px !important;
    }
}
/* /Pages/Components/DetailComponents/ComponentStartSteps.razor.rz.scp.css */
/* ============================================================
   PROCESS STEPS - MODERN REVİZE
   ============================================================ */

.process-step[b-k9h6w5mzgo] {
    padding: 30px 40px; /* Üst-alt biraz daraltıldı */
    background: #fff;
    border-left: 5px solid var(--local-main-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Çok hafif bir derinlik */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Daha esnek geçiş */
    position: relative;
}

    .process-step:hover[b-k9h6w5mzgo] {
        transform: translateX(10px);
        background: #fafafa;
        box-shadow: 0 15px 40px rgba(0,0,0,0.06);
        border-left-width: 8px; /* Hoverda sol çizgi kalınlaşsın */
    }

/* ============================================================
   MOBİL AYARLAR (990px ve Altı)
   ============================================================ */
@media (max-width: 990px) {
    .process-step[b-k9h6w5mzgo] {
        padding: 20px 25px !important; /* Mobilde alan tasarrufu */
        margin-bottom: 12px !important; /* Adımlar arası mesafe */
    }

        .process-step:hover[b-k9h6w5mzgo] {
            transform: translateX(5px); /* Mobilde taşma yapmaması için daha az kayma */
        }

        /* Eğer içinde h3 veya p varsa onların boyutlarını da fitliyoruz */
        .process-step h3[b-k9h6w5mzgo] {
            font-size: 1.1rem !important;
            margin-bottom: 8px !important;
        }

        .process-step p[b-k9h6w5mzgo] {
            font-size: 0.85rem !important;
            line-height: 1.4 !important;
            margin-bottom: 0 !important;
        }
}
/* /Pages/Components/DetailComponents/ComponentSteps.razor.rz.scp.css */
/* ============================================================
    QURGAL PREMIUM PROCESS - FINAL REFINED CSS
   ============================================================ */

/* 1. ANA DEĞİŞKENLER & TİPOGRAFİ */
:root[b-nwe63h8d4h] {
    --QURGAL-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --QURGAL-reveal-anim: QURGALStepEntry 0.5s ease-out forwards;
}

/* 2. GRID VE GENEL YAPI */
.process-grid[b-nwe63h8d4h] {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

/* 3. SOL TARAF: AKORDEON NAVİGASYONU */
.process-item[b-nwe63h8d4h] {
    border-left: 1px solid #f1f5f9;
    background: #fff;
    cursor: pointer;
    transition: var(--QURGAL-transition);
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;

}

    .process-item[b-nwe63h8d4h]::before {
        content: "";
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 4px;
        background: var(--local-main-color);
        border-radius: 0 4px 4px 0;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .process-item.is-active[b-nwe63h8d4h] {
        background: rgba(255, 255, 255, 0.40);
        backdrop-filter: blur(35px);
        -webkit-backdrop-filter: blur(35px);
        border-color: var(--local-main-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        transform: translateX(5px);
    }

        .process-item.is-active[b-nwe63h8d4h]::before {
            opacity: 1;
            top: 15%;
            bottom: 15%;
        }

.process-header[b-nwe63h8d4h] {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-title[b-nwe63h8d4h] {
    font-size: 1.1rem;
    font-weight: 700;
    flex: 1;
    margin: 0;
    color: var(--brand-dark);
}

.process-arrow[b-nwe63h8d4h] {
    color: #cbd5e1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-active .process-arrow[b-nwe63h8d4h] {
    transform: rotate(180deg);
    color: var(--brand-dark);
}

.process-body[b-nwe63h8d4h] {
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    overflow: hidden;
}

.process-body-inner[b-nwe63h8d4h] {
    padding: 0 25px 25px 25px;
}

/* 4. SAĞ TARAF: STICKY SAHNE (MASAÜSTÜ) */
.process-sticky-card[b-nwe63h8d4h] {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 50px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 40px 80px rgba(26, 35, 126, 0.06);
    min-height: 520px;
    transition: all 0.4s ease;
}

/* 5. İKON KUTUSU & ENERJİ HALKASI (YUVARLAK) */
.process-icon-box[b-nwe63h8d4h] {
    flex-shrink: 0; /* Küçülmesini engeller */
    width: 60px;
    height: 60px;
    background: var(--local-main-color);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 2;
    animation: badgeShineEffect-b-nwe63h8d4h 3s infinite;
}

.process-sticky-card .process-icon-box[b-nwe63h8d4h] {
    margin-bottom: 25px;
}

.process-icon-box[b-nwe63h8d4h]::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(var(--angle, 0deg), var(--local-main-color), transparent, var(--local-main-color-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotateAngle-b-nwe63h8d4h 3s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateAngle-b-nwe63h8d4h {
    to {
        --angle: 360deg;
    }
}

@keyframes badgeShineEffect-b-nwe63h8d4h {
    0%, 100% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.05);
    }
}

/* 6. METİN VE ETİKET ANİMASYONLARI */
.process-detail-content h2[b-nwe63h8d4h] {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

    .process-detail-content h2[b-nwe63h8d4h]::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--local-main-color);
        transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

.animate-fade-in h2[b-nwe63h8d4h]::after {
    width: 60px;
}

.process-features-grid[b-nwe63h8d4h] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.QURGAL-feature-tag[b-nwe63h8d4h] {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
    .QURGAL-feature-tag i[b-nwe63h8d4h] {
        color: #10b981;
        animation: checkPulse-b-nwe63h8d4h 2s infinite ease-in-out;
    }
.animate-fade-in .QURGAL-feature-tag[b-nwe63h8d4h] {
    animation: slideInRight-b-nwe63h8d4h 0.5s ease forwards;
    opacity: 0;
}

    

@keyframes checkPulse-b-nwe63h8d4h {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* 7. GÜVEN KUTUSU (GURANTEE BOX) */
.QURGAL-guarantee-box[b-nwe63h8d4h], .QURGAL-guarantee-box-mini[b-nwe63h8d4h] {
    background-color: var(--local-main-color);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    transition: background-color 2s ease-in-out;
    border: 1px solid rgba(255,255,255,0.05);
}

.is-active .QURGAL-guarantee-box-mini[b-nwe63h8d4h],
.process-detail-content .QURGAL-guarantee-box[b-nwe63h8d4h] {
    background-color: #1a1a1a !important;
}

/* 8. MOBİL VE TABLET OPTİMİZASYONU */
@media (max-width: 1200px) {
    .process-grid[b-nwe63h8d4h] {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }

    .process-sticky-card[b-nwe63h8d4h] {
        padding: 30px;
        min-height: 450px;
    }
}

@media (max-width: 990px) {
    .process-grid[b-nwe63h8d4h] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-sticky-card[b-nwe63h8d4h] {
        display: none;
    }

    .process-item.is-active[b-nwe63h8d4h] {
        transform: none;
    }

    .process-header[b-nwe63h8d4h] {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 20px;
    }

        /* Mobilde Başlık Yanındaki İkon */
        .process-header .process-icon-box[b-nwe63h8d4h] {
            width: 40px !important;
            height: 40px !important;
            min-width: 40px;
            font-size: 1.1rem !important;
            margin-bottom: 0 !important;
        }

            .process-header .process-icon-box[b-nwe63h8d4h]::before {
                inset: -3px;
                padding: 2px;
            }

    .process-body-inner[b-nwe63h8d4h] {
        padding: 0 20px 20px 20px;
    }

    .process-features-grid[b-nwe63h8d4h] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .QURGAL-feature-tag[b-nwe63h8d4h] {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .QURGAL-guarantee-box-mini[b-nwe63h8d4h] {
        padding: 15px;
        border-radius: 12px;
        font-size: 0.85rem;
    }
}

/* 9. ANİMASYON TETİKLEYİCİLER */
/* Masaüstü Sağ Taraf Reveal */
.animate-fade-in[b-nwe63h8d4h] {
    animation: QURGALSoftReveal-b-nwe63h8d4h 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.is-active .process-body-inner p:nth-child(1)[b-nwe63h8d4h] {
    animation-delay: 0.1s;
}

.is-active .d-lg-none[b-nwe63h8d4h] {
    animation-delay: 0.2s;
}

/* KEYFRAMES */
@keyframes QURGALSoftReveal-b-nwe63h8d4h {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes QURGALStepEntry-b-nwe63h8d4h {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight-b-nwe63h8d4h {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* /Pages/Components/DetailComponents/ComponentSupport.razor.rz.scp.css */
.qurgal-case-card[b-d4wqvw71x1] {
    background: #fff;
    border: 1px solid rgba(26, 35, 126, 0.1);
    border-radius: 24px;
    padding: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    background-color: #ffffff;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

    .qurgal-case-card.is-visible[b-d4wqvw71x1] {
        filter: blur(0) saturate(1);
        /*background-color: var(--local-main-color-ultra-light);*/
        transform: translateY(0);
    }

.qurgal-case-card-header[b-d4wqvw71x1] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.qurgal-case-icon[b-d4wqvw71x1] {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--local-main-color);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    animation: qurgalFloat-b-d4wqvw71x1 4s infinite ease-in-out;
}

    .qurgal-case-icon[b-d4wqvw71x1]::after {
        content: "";
        position: absolute;
        inset: -4px;
        border: 1.5px dashed var(--local-main-color-light);
        border-radius: 18px;
        opacity: 0.4;
        animation: qurgalSpin-b-d4wqvw71x1 12s linear infinite;
    }

.qurgal-case-tag[b-d4wqvw71x1] {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--local-main-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.qurgal-btn-primary[b-d4wqvw71x1] {
    position: relative;
    overflow: hidden;
    background: var(--local-main-color);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .qurgal-btn-primary[b-d4wqvw71x1]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: lightSlide-b-d4wqvw71x1 5s infinite;
    }

.qurgal-support-badge[b-d4wqvw71x1] {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--local-main-color);
    color: var(--qurgal-white);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 10px 15px;
}
@keyframes qurgalSpin-b-d4wqvw71x1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes qurgalFloat-b-d4wqvw71x1 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes lightSlide-b-d4wqvw71x1 {
    0% {
        left: -100%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@media (max-width: 768px) {
    .qurgal-case-card[b-d4wqvw71x1] {
        padding: 20px !important;
    }

    .qurgal-case-icon[b-d4wqvw71x1] {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    .qurgal-case-tag[b-d4wqvw71x1] {
        font-size: 0.65rem !important;
    }

    .qurgal-case-card h5[b-d4wqvw71x1] {
        font-size: 1rem !important;
    }
}
/* /Pages/Components/HomeComponents/CallToAction.razor.rz.scp.css */
.call-to-action[b-esnt6i8gxg] {
    padding: 50px 0;
    position: relative;
    clip-path: inset(0);
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .call-to-action .cta-bg[b-esnt6i8gxg] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action[b-esnt6i8gxg]:before {
        content: "";
        background: linear-gradient(90deg, rgba(26, 35, 126, 0.9) 0%, rgba(87, 89, 179, 0.75) 100%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action .container[b-esnt6i8gxg] {
        position: relative;
        z-index: 3;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

.cta-text-content[b-esnt6i8gxg] {
    text-align: left;
    flex: 1;
}

.call-to-action h3[b-esnt6i8gxg] {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.call-to-action p[b-esnt6i8gxg] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0;
    max-width: 500px;
}

.call-to-action .cta-btn[b-esnt6i8gxg] {
    white-space: nowrap;
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 10px;
    transition: 0.3s all ease;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

    .call-to-action .cta-btn:hover[b-esnt6i8gxg] {
        background: #ffffff;
        color: #1a237e;
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .call-to-action .container[b-esnt6i8gxg] {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-text-content[b-esnt6i8gxg] {
        text-align: center;
    }

    .call-to-action h3[b-esnt6i8gxg] {
        font-size: 22px;
    }

    .call-to-action p[b-esnt6i8gxg] {
        margin-bottom: 5px;
    }
}
/* /Pages/Components/HomeComponents/Features.razor.rz.scp.css */

/* --- SECTION 2: PRODUCT CARD GRID --- */
.features-products-grid[b-zp0ous2gcu] {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card[b-zp0ous2gcu] {
    background: var(--surface-color);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    background: #fff;
    transition: border-bottom 0.3s ease;
}
    .product-card[b-zp0ous2gcu]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-purple), var(--QURGAL-blue), var(--QURGAL-amber));
    }

.product-icon i[b-zp0ous2gcu] {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--QURGAL-amber), var(--QURGAL-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.product-card h3[b-zp0ous2gcu] {
    font-size: 20px;
    font-weight: 700;
    color: var(--QURGAL-dark);
    margin-bottom: 12px;
}

.product-card p[b-zp0ous2gcu] {
    font-size: 15px;
    color: var(--heading-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-card-footer[b-zp0ous2gcu] {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    .product-card-footer[b-zp0ous2gcu]:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-purple), var(--QURGAL-blue), var(--QURGAL-amber));
    }

.product-link[b-zp0ous2gcu] {
    font-size: 14px;
    font-weight: 600;
    color: var(--QURGAL-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-card:hover .product-link[b-zp0ous2gcu] {
    gap: 12px;
}

.status-dot[b-zp0ous2gcu] {
    width: 8px;
    height: 8px;
    background: var(--QURGAL-blue);
    border-radius: 50%;
}

@media (max-width: 1100px) {
    .ms-products-grid[b-zp0ous2gcu], .features-products-grid[b-zp0ous2gcu] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ms-products-grid[b-zp0ous2gcu], .features-products-grid[b-zp0ous2gcu] {
        grid-template-columns: 1fr;
    }
}


.features-products-grid[b-zp0ous2gcu] {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}


@media (min-width: 768px) {
    .features-products-grid[b-zp0ous2gcu] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    .features-products-grid[b-zp0ous2gcu] {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* /Pages/Components/HomeComponents/HeroCard.razor.rz.scp.css */
/*--------------------------------------------------------------
# Agile Hero Section
--------------------------------------------------------------*/

.hero-agile[b-2nsfpkjvx2] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

    .hero-agile[b-2nsfpkjvx2]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 60px 60px;
        opacity: 0.3;
        z-index: 1;
    }

.hero-container[b-2nsfpkjvx2] {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-agile-badge[b-2nsfpkjvx2] {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--QURGAL-blue);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--surface-color);
    margin-bottom: 28px;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--QURGAL-blue), transparent 85%);
}

.hero-agile h1[b-2nsfpkjvx2] {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--QURGAL-dark);
    margin-bottom: 28px;
}

    .hero-agile h1 span[b-2nsfpkjvx2] {
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-agile p.lead[b-2nsfpkjvx2] {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--QURGAL-dark);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-agile-display[b-2nsfpkjvx2] {
    font-size: 11px;
    color: var(--QURGAL-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-agile-icon[b-2nsfpkjvx2] {
    font-size: 24px;
    font-weight: 800;
    color: var(--QURGAL-indigo);
}

.solution-card[b-2nsfpkjvx2] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

    .solution-card[b-2nsfpkjvx2]::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: var(--brand-gradient);
        border-radius: 26px;
        z-index: -1;
        opacity: 0.2;
    }
.stats-container[b-2nsfpkjvx2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
    max-width: 90%;
}
.card-header h3[b-2nsfpkjvx2] {
    font-size: 1.8rem;
    color: var(--QURGAL-blue);
    margin-bottom: 8px;
}

.card-header p[b-2nsfpkjvx2] {
    color: var(--QURGAL-dark);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.feature-list[b-2nsfpkjvx2] {
    list-style: none;
    margin: 30px 0;
}

    .feature-list li[b-2nsfpkjvx2] {
        padding: 10px 0;
        font-size: 1.05rem;
        color: var(--QURGAL-blue);
        display: flex;
        align-items: center;
        font-weight: 500;
        border-bottom: 1px solid #f1f5f9;
    }

        .feature-list li i[b-2nsfpkjvx2] {
            width: 24px;
            height: 24px;
            background: #e0f2fe;
            color: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 0.8rem;
            font-style: normal;
        }

.cta-button[b-2nsfpkjvx2] {
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--QURGAL-blue);
    color: var(--surface-color);
    padding: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-align: center;
}

    .cta-button:hover[b-2nsfpkjvx2] {
        background: var(--QURGAL-indigo);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(10, 37, 64, 0.2);
    }

.secondary-info[b-2nsfpkjvx2] {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

    .secondary-info .secondary-info-icon[b-2nsfpkjvx2] {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 20px;
    }
    .secondary-info span[b-2nsfpkjvx2] {
        font-size: 0.85rem;
        color: var(--slate-600);
        font-weight: 500;
        letter-spacing: 0.5px;
    }

@media (max-width: 992px) {
    .hero-agile[b-2nsfpkjvx2] {
        min-height: auto;
    }

    .hero-container[b-2nsfpkjvx2] {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content[b-2nsfpkjvx2] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1[b-2nsfpkjvx2] {
        font-size: 2.5rem !important;
    }

    p.lead[b-2nsfpkjvx2] {
        font-size: 1.1rem !important;
        padding-left: 0 !important;
        border-left: none !important;
    }

    .stats-container[b-2nsfpkjvx2] {
        justify-content: center;
        flex-wrap: wrap;
    }

    .solution-card[b-2nsfpkjvx2] {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px 20px !important;
    }
}

.hero-agile-icon[b-2nsfpkjvx2] {
    font-size: 1.5rem;
    color: var(--QURGAL-indigo);
    margin-bottom: 5px;
}

.hero-agile-display[b-2nsfpkjvx2] {
    font-size: 12px;
    color: var(--QURGAL-dark);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}
/* /Pages/Components/HomeComponents/HeroSlider.razor.rz.scp.css */
.hero-slider[b-itqzbm3ri2] {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin: 0;
}

.slide-container[b-itqzbm3ri2] {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slider[b-itqzbm3ri2] {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

    .slider[b-itqzbm3ri2]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.slide-content[b-itqzbm3ri2] {
    position: relative;
    z-index: 10;
    margin-left: 8%;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .slide-content.active-content[b-itqzbm3ri2] {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-content.d-none[b-itqzbm3ri2] {
        display: none !important;
    }

    .slide-content h2[b-itqzbm3ri2] {
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
    }

.slide-description[b-itqzbm3ri2] {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.active-content .info-badge[b-itqzbm3ri2] {
    transition-delay: 0.2s;
}

.active-content h2[b-itqzbm3ri2] {
    transition-delay: 0.4s;
}

.active-content .slide-description[b-itqzbm3ri2] {
    transition-delay: 0.6s;
}

.active-content .btn-group[b-itqzbm3ri2] {
    transition-delay: 0.8s;
}


.btn-group[b-itqzbm3ri2] {
    display: flex;
    gap: 15px;
}

.btn-main[b-itqzbm3ri2] {
    background: var(--QURGAL-blue);
    color: #fff;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.slider-controls-bottom[b-itqzbm3ri2] {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.controls-group[b-itqzbm3ri2] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.indicators-group[b-itqzbm3ri2] {
    display: flex;
    gap: 8px;
}

.indicator-bar[b-itqzbm3ri2] {
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .indicator-bar[b-itqzbm3ri2]::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: #fff;
    }

    .indicator-bar.active[b-itqzbm3ri2]::after {
        animation: fill-progress-b-itqzbm3ri2 var(--duration, 5s) linear forwards;
    }

    .indicator-bar.completed[b-itqzbm3ri2]::after {
        width: 100%;
    }

.slider-btn[b-itqzbm3ri2] {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

    .slider-btn .bi[b-itqzbm3ri2] {
        font-size: 2rem;
    }

/* --- RESPONSIVE OPTIMIZATION --- */

/* Tablet Ayarları (1024px altı) */
@media (max-width: 1024px) {
    .hero-slider[b-itqzbm3ri2] {
        height: 65vh; /* Tablette biraz daha kısa daha iyi durur */
    }

    .slide-content[b-itqzbm3ri2] {
        margin-left: 5%;
        max-width: 500px;
        padding: 30px;
    }

        .slide-content h2[b-itqzbm3ri2] {
            font-size: 2.2rem;
        }
}

/* Mobil Ayarları (768px altı) */
@media (max-width: 768px) {
    .hero-slider[b-itqzbm3ri2] {
        height: 85vh;
    }

    .slider[b-itqzbm3ri2] {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .slide-content[b-itqzbm3ri2] {
        width: 92%;
        padding: 25px;
        gap: 15px;
        backdrop-filter: blur(10px);
        border-radius: 15px;
    }

        .slide-content h2[b-itqzbm3ri2] {
            font-size: 1.8rem;
        }

    .slide-description[b-itqzbm3ri2] {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .btn-group[b-itqzbm3ri2] {
        flex-direction: column;
        gap: 10px;
    }

    .btn-main[b-itqzbm3ri2] {
        padding: 10px 20px;
        width: 100%;
    }

    .slider-controls-bottom[b-itqzbm3ri2] {
        bottom: 15px;
        align-items: center;
    }

    .controls-group[b-itqzbm3ri2] {
        gap: 10px;
        width: 100%;
        justify-content: space-around;
        padding: 0 15px;
    }

    .indicator-bar[b-itqzbm3ri2] {
        width: 35px;
    }

    .slider-btn .bi[b-itqzbm3ri2] {
        font-size: 1.5rem;
    }
}

@media (max-width: 380px) {
    .slide-content h2[b-itqzbm3ri2] {
        font-size: 1.5rem;
    }

    .slide-description[b-itqzbm3ri2] {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


@keyframes fill-progress-b-itqzbm3ri2 {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}
/* /Pages/Components/HomeComponents/Nebula.razor.rz.scp.css */
.QURGAL-wrapper[b-ii55k9v6uc] {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    margin: -1px 0;
}

    .QURGAL-wrapper[b-ii55k9v6uc]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 20%;
        background: linear-gradient(to bottom, var(--surface-color), transparent);
        z-index: 2;
    }

    .QURGAL-wrapper[b-ii55k9v6uc]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 10%;
        background: linear-gradient(to top, var(--surface-color), transparent);
        z-index: 2;
    }

/*.QURGAL-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, #fff 15%, rgba(255, 255, 255, 0) 100%);
}

.QURGAL-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, #fff 15%, rgba(255, 255, 255, 0) 100%);
}
*/

.nebula[b-ii55k9v6uc] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    filter: blur(120px) saturate(150%);
    opacity: 0.85;
}

.orb[b-ii55k9v6uc] {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* --- ORB BASE (Ortak Özellikler) --- */
[class*="orb-"][b-ii55k9v6uc] {
    position: absolute; /* Kapsayıcına göre konumlanması için */
    border-radius: 50%;
    filter: blur(50px); /* O yumuşak geçiş efekti */
    z-index: -1; /* İçeriğin arkasında kalması için */
    pointer-events: none; /* Mouse ile seçilmesinler */
    opacity: 0.5;
}

/* 1. SOL ÜST KÖŞE (Purple) */
.orb-purple[b-ii55k9v6uc] {
    width: 40vw;
    height: 40vw;
    background: var(--QURGAL-purple, #8e44ad);
    top: -10%;
    left: -10%;
}

/* 2. SAĞ ÜST KÖŞE (Amber) */
.orb-amber[b-ii55k9v6uc] {
    width: 35vw;
    height: 35vw;
    background: var(--QURGAL-amber, #fd7e14);
    top: -5%;
    right: -10%;
}

/* 3. SOL ALT KÖŞE (Rose) */
.orb-rose[b-ii55k9v6uc] {
    width: 40vw;
    height: 40vw;
    background: var(--QURGAL-rose, #b33951);
    bottom: -10%;
    left: -10%;
}

/* 4. SAĞ ALT KÖŞE (Blue) */
.orb-blue[b-ii55k9v6uc] {
    width: 45vw;
    height: 45vw;
    background: var(--QURGAL-blue, #1a237e);
    bottom: -15%;
    right: -5%;
}

/* 5. ALT ORTALI (Indigo) */
.orb-indigo[b-ii55k9v6uc] {
    width: 30vw;
    height: 30vw;
    background: var(--QURGAL-indigo, #5759b3);
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%); /* Tam ortalamak için */
    
}

.carousel-scene[b-ii55k9v6uc] {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.card[b-ii55k9v6uc] {
    position: absolute;
    width: 400px;
    height: 220px;
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
    transform-style: flat;
    backface-visibility: hidden;
}

.card[b-ii55k9v6uc]::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    z-index: -1;
}

.nebula-card-content[b-ii55k9v6uc] {
    padding: 30px;
    position: relative;
    z-index: 2;
}
.nebula-card-header[b-ii55k9v6uc] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.icon-box[b-ii55k9v6uc] {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: white;
}

.card.plan .icon-box[b-ii55k9v6uc] { background: #5759b3; }
.card.design .icon-box[b-ii55k9v6uc] { background: #b33951; }
.card.build .icon-box[b-ii55k9v6uc] { background: #1a237e; }
.card.build h3[b-ii55k9v6uc] { color: #1a237e; }

.card.prev[b-ii55k9v6uc] {
    transform: translateX(-50%) scale(0.8) rotateY(15deg);
    opacity: 0.4;
    z-index: 5;
}
.card.active[b-ii55k9v6uc] {
    transform: translateX(0) scale(1.1) rotateY(0);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card.next[b-ii55k9v6uc] {
    transform: translateX(50%) scale(0.8) rotateY(-15deg);
    opacity: 0.4;
    z-index: 5;
}

.nav-controls[b-ii55k9v6uc] {
    display: flex;
    gap: 20px;
    z-index: 10;
}

.arrow-btn[b-ii55k9v6uc] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .card[b-ii55k9v6uc] {
        width: 260px;
    }

        .card.prev[b-ii55k9v6uc] {
            transform: translateX(-40%) scale(0.8);
        }

        .card.next[b-ii55k9v6uc] {
            transform: translateX(40%) scale(0.8);
        }
}
/* /Pages/Components/HomeComponents/PackageMatrix.razor.rz.scp.css */
.corporate-table[b-hdd4uwp5ia] {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 900px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    table-layout: fixed;
}

.pkg-head[b-hdd4uwp5ia] {
    padding: 1.5rem 0.5rem !important;
    text-align: center;
    border-bottom: 2px solid #e2e8f0 !important;
    vertical-align: bottom;
}

    .pkg-head h5[b-hdd4uwp5ia] {
        font-size: 1rem;
        margin-bottom: 0;
    }


.feature-head[b-hdd4uwp5ia] {
    background: #f8fafc;
    padding: 1rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
    color: var(--heading-text);
    font-weight: 700;
    width: 160px;
}

.f-label[b-hdd4uwp5ia] {
    padding: 0.8rem 1rem !important;
    font-weight: 600;
    color: var(--heading-text);
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0 !important;
    font-size: 0.85rem;
    width: 160px;
}

.v-cell[b-hdd4uwp5ia] {
    padding: 0.8rem 0.5rem !important;
    text-align: center;
    border-bottom: 1px solid #e2e8f0 !important;
    font-size: 0.8rem;
    word-break: break-word;
}

.highlight-col[b-hdd4uwp5ia] {
    background: #f8fafc !important;
    border-left: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    position: relative;
}

thead th.highlight-col[b-hdd4uwp5ia] {
    border-top: 4px solid var(--QURGAL-blue) !important;
}


.section-divider td[b-hdd4uwp5ia] {
    background: #f1f5f9 !important;
    color: #64748b;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 0.6rem 1rem !important;
}

.corporate-badge[b-hdd4uwp5ia] {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--QURGAL-blue);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
}

.btn-review-link[b-hdd4uwp5ia] {
    text-decoration: none;
    font-weight: 700;
    color: var(--QURGAL-blue);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.btn-review[b-hdd4uwp5ia] {
    display: block;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    background: var(--QURGAL-blue);
    color: var(--surface-color);
    text-decoration: none;
}

@media (max-width: 768px) {

    .corporate-table[b-hdd4uwp5ia] {
        min-width: 650px;
    }

    .f-label[b-hdd4uwp5ia], .feature-head[b-hdd4uwp5ia] {
        position: sticky;
        left: 0;
        z-index: 5;
        box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    }

    .section-divider td[b-hdd4uwp5ia] {
        position: sticky;
        left: 0;
    }

    .v-cell[b-hdd4uwp5ia] {
        font-size: 0.75rem;
    }
}

.table-responsive[b-hdd4uwp5ia] {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

    .table-responsive[b-hdd4uwp5ia]::-webkit-scrollbar {
        height: 6px;
    }

    .table-responsive[b-hdd4uwp5ia]::-webkit-scrollbar-thumb {
        background-color: #cbd5e1;
        border-radius: 10px;
    }

.corporate-table[b-hdd4uwp5ia] {
    min-width: 100% !important;
    width: 100% !important;
}

.feature-head[b-hdd4uwp5ia], .f-label[b-hdd4uwp5ia] {
    width: 25% !important;
}

.pkg-head[b-hdd4uwp5ia], .v-cell[b-hdd4uwp5ia] {
    width: 25% !important;
}

@media (min-width: 1200px) {
    .corporate-table[b-hdd4uwp5ia] {
        min-width: 100%;
    }
}
/* /Pages/Components/HomeComponents/PlansTabs.razor.rz.scp.css */
.prism-grid[b-h1d7gubl5y] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    height: 600px;
    margin-bottom: -300px;
    transition: all 0.5s ease;

}

.prism-card[b-h1d7gubl5y] {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--QURGAL-blue-ultra-light);
    padding: 30px 25px;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 215px;
    cursor: pointer;
    position: relative;
}

.content-placeholder[b-h1d7gubl5y] {
    font-size: 15px;
    font-weight: 500;
    margin: 15px 0;
    padding: 15px 0;
    border-top: none;
    border-bottom: none;
    color: var(--QURGAL-dark);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.8em;
    min-height: 4.8em;
    max-height: 4.8em;
    position: relative;
}

    .content-placeholder[b-h1d7gubl5y]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-purple), var(--QURGAL-blue), var(--QURGAL-amber));
        box-shadow: 0 0 10px rgba(179, 57, 81, 0.4);
    }

    .content-placeholder[b-h1d7gubl5y]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-purple), var(--QURGAL-blue), var(--QURGAL-amber));
        box-shadow: 0 0 10px rgba(253, 126, 20, 0.4);
    }

@media (min-width: 991px) {
    .prism-grid[b-h1d7gubl5y] {
        flex-wrap: nowrap;
    }

    .prism-card:hover[b-h1d7gubl5y] {
        flex: 1.8;
        max-height: 550px;
        border-color: var(--QURGAL-blue);
        box-shadow: 0 30px 60px rgba(0, 103, 184, 0.15);
        z-index: 10;
    }

    .prism-grid:hover .prism-card:not(:hover)[b-h1d7gubl5y] {
        flex: 0.7;
        opacity: 0.6;
    }

    .prism-card .reveal-content[b-h1d7gubl5y],
    .prism-card .feat-list[b-h1d7gubl5y],
    .prism-card .btn-card[b-h1d7gubl5y] {
        opacity: 0;
        transition: opacity 0.4s ease 0.2s;
    }

    .prism-card:hover .reveal-content[b-h1d7gubl5y],
    .prism-card:hover .feat-list[b-h1d7gubl5y],
    .prism-card:hover .btn-card[b-h1d7gubl5y] {
        opacity: 1;
    }

    .prism-card:hover .content-placeholder[b-h1d7gubl5y] {
        -webkit-line-clamp: 3;
        height: 4.8em;
        opacity: 1;
    }

        .prism-card:hover .content-placeholder[b-h1d7gubl5y]::before {
            box-shadow: 0 0 10px rgba(179, 57, 81, 0.4); /* Rose tonunda parlama */
        }

        .prism-card:hover .content-placeholder[b-h1d7gubl5y]::after {
            box-shadow: 0 0 10px rgba(253, 126, 20, 0.4); /* Amber tonunda parlama */
        }
}

@media (max-width:990px) {
    .prism-grid[b-h1d7gubl5y] {
        flex-wrap: wrap;
        gap: 20px;
        height: auto;
        margin-bottom: 0;
        flex-direction: column;
    }

    .prism-card[b-h1d7gubl5y] {
        width: 100%;
        max-height: none !important;
        cursor: default;
        padding-bottom: 40px;
    }

    .content-placeholder[b-h1d7gubl5y] {
        -webkit-line-clamp: unset;
        height: auto;
        min-height: auto;
    }

    .reveal-content[b-h1d7gubl5y], .feat-list[b-h1d7gubl5y], .btn-card[b-h1d7gubl5y] {
        opacity: 1 !important;
    }
}

.card-label[b-h1d7gubl5y] {
    font-size: 11px;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--QURGAL-blue);
    display: block;
}

.prism-card h3[b-h1d7gubl5y] {
    font-size: 28px;
    font-weight: 800;
    color: var(--QURGAL-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.prism-card.featured[b-h1d7gubl5y] {
    background: var(--QURGAL-dark);
    border: none;
}

    .prism-card.featured h3[b-h1d7gubl5y],
    .prism-card.featured .card-label[b-h1d7gubl5y] {
        color: #fff;
    }

.featured .card-label[b-h1d7gubl5y] {
    color: #38bdf8;
}

.featured .content-placeholder[b-h1d7gubl5y] {
    border-color: rgba(255,255,255,0.1);
    color: #94a3b8;
}

.feat-list[b-h1d7gubl5y] {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

    .feat-list li[b-h1d7gubl5y] {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: inherit;
    }

        .feat-list li svg[b-h1d7gubl5y] {
            width: 18px;
            color: var(--QURGAL-blue);
        }

.featured .feat-list li svg[b-h1d7gubl5y] {
    color: #38bdf8;
}

.btn-card[b-h1d7gubl5y] {
    display: inline-block;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--QURGAL-blue);
    text-align: center;
    text-decoration: none;
    color: var(--QURGAL-dark);
    font-weight: 800;
    transition: 0.3s;
}

.featured .btn-card[b-h1d7gubl5y] {
    background: var(--QURGAL-blue);
    border: none;
    color: #fff;
}

.btn-card:hover[b-h1d7gubl5y] {
    background: var(--QURGAL-blue);
    color: #fff;
    border-color: var(--QURGAL-blue);
}

@media (max-width: 768px) {
    .services[b-h1d7gubl5y] {
        padding: 60px 0px 60px 18px !important;
    }
}
/* /Pages/Components/HomeComponents/QuickContact.razor.rz.scp.css */
@keyframes gradientSweep-b-qmuvl457ew {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-section[b-qmuvl457ew] {
    position: relative;
    padding: 150px 0 100px 0 !important;
    color: white;
    background: linear-gradient(-45deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-purple), var(--QURGAL-blue), var(--QURGAL-amber));
    background-size: 400% 400%;
    animation: gradientSweep-b-qmuvl457ew 12s ease infinite;
}

    .cta-section[b-qmuvl457ew]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 30%;
        background: linear-gradient(to bottom, var(--surface-color), transparent);
        z-index: 2;
    }

    .cta-section[b-qmuvl457ew]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30%;
        background: linear-gradient(to top, var(--surface-color), transparent);
        z-index: 2;
    }

.info-text[b-qmuvl457ew] {
    text-align: start;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

    .info-text h2[b-qmuvl457ew] {
        font-size: 4.5rem;
        font-weight: 950;
        line-height: 1;
        margin-bottom: 20px;
        position: relative;
        z-index: 10;
        display: inline-block;
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, var(--QURGAL-blue) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 5px 2px rgba(0,0,0,0.3)) drop-shadow(0 15px 30px rgba(0,0,0,0.4));
        letter-spacing: -2px;
        text-transform: uppercase;
    }

        .info-text h2[b-qmuvl457ew]::after {
            content: "";
            display: block;
            width: 100px;
            height: 8px;
            background: linear-gradient(90deg, var(--QURGAL-rose), var(--QURGAL-purple));
            border-radius: 50px;
            margin: 20px auto 0 auto;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

.contact-card[b-qmuvl457ew] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.form-control[b-qmuvl457ew] {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 18px 22px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .form-control:focus[b-qmuvl457ew] {
        transform: translateY(-3px);
        border-color: var(--QURGAL-indigo);
        box-shadow: 0 10px 20px rgba(87, 89, 179, 0.15);
        outline: none;
    }

.btn-animated[b-qmuvl457ew] {
    width: 100%;
    border: none;
    padding: 18px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 15px;
    background: linear-gradient(-45deg, var(--QURGAL-rose), var(--QURGAL-indigo), var(--QURGAL-blue), var(--QURGAL-purple));
    background-size: 300% 300%;
    animation: gradientSweep-b-qmuvl457ew 4s ease infinite;
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .btn-animated:hover[b-qmuvl457ew] {
        transform: scale(1.02);
        color: white;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        background: var(--accent-color);
    }

@media (max-width: 991px) {
    .info-text h2[b-qmuvl457ew] {
        font-size: 3rem;
        letter-spacing: -1px;
    }

        .info-text h2[b-qmuvl457ew]::after {
            margin: 15px auto 0 auto;
        }
}

@media (max-width: 768px) {
    .cta-section[b-qmuvl457ew] {
        padding: 80px 0 60px 0;
    }

    .info-text[b-qmuvl457ew] {
        text-align: center;
        padding-right: 0 !important;
    }

        .info-text h2[b-qmuvl457ew] {
            font-size: 2.5rem;
            line-height: 1.2;
        }

    .contact-card[b-qmuvl457ew] {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 20px;
    }

    .form-control[b-qmuvl457ew] {
        padding: 14px 18px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .btn-animated[b-qmuvl457ew] {
        padding: 15px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}
/* /Pages/Components/HomeComponents/SectionSplitter.razor.rz.scp.css */
.agile-section-wrapper[b-nkc81cjoue] {
    width: 100%;
    background-color: #ffffff;
    background-image: radial-gradient(#e2e8f0 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

.agile-card[b-nkc81cjoue] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.agile-card-action-side[b-nkc81cjoue]::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--brand-gradient);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.2;
}

.agile-card-content-side[b-nkc81cjoue] {
    flex: 1;
    padding: 20px;
}

.agile-card-action-side[b-nkc81cjoue] {
    flex: 0 0 350px;
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.agile-card-badge[b-nkc81cjoue] {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 10px;
    background: #f0f9ff;
    color: var(--QURGAL-indigo);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.agile-card h2[b-nkc81cjoue] {
    font-size: 42px;
    font-weight: 800;
    color: var(--QURGAL-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.agile-card-gradient-text[b-nkc81cjoue] {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agile-card-description[b-nkc81cjoue] {
    font-size: 1.1rem;
    color: var(--heading-text-muted);
    margin-bottom: 30px;
    max-width: 550px;
}

.agile-card-focus[b-nkc81cjoue] {
    font-size: 20px;
    font-weight: 800;
    color: var(--QURGAL-dark);
}
.agile-card-info[b-nkc81cjoue] {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 20px;
}

.agile-card-input-group[b-nkc81cjoue] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.agile-card-simple-input[b-nkc81cjoue] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
    background: white;
    font-weight: 500;
}

    .agile-card-simple-input[b-nkc81cjoue]::placeholder {
        color: #94a3b8;
        font-style: italic;
    }


.agile-card-call-cta-btn[b-nkc81cjoue] {
    display: block;
    background: var(--QURGAL-dark);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
}

    .agile-card-call-cta-btn:hover[b-nkc81cjoue] {
        background: var(--QURGAL-indigo);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
    }

.agile-card-cta-btn[b-nkc81cjoue] {
    display: block;
    color: white;
    background: var(--QURGAL-indigo);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

    .agile-card-cta-btn:hover[b-nkc81cjoue] {
        background: var(--QURGAL-dark);
        transform: translateY(2px);
        box-shadow: 0px;
    }
.agile-card-secondary-link[b-nkc81cjoue] {
    font-size: 14px;
    color: var(--QURGAL-indigo);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .agile-card[b-nkc81cjoue] {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .agile-card-content-side[b-nkc81cjoue] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .agile-card-action-side[b-nkc81cjoue] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .agile-card-input-group[b-nkc81cjoue] {
        flex-direction: column;
    }

    .agile-card-cta-btn[b-nkc81cjoue] {
        width: 100%;
        text-align: center;
    }
}
/* /Pages/Components/HomeComponents/Subscribe.razor.rz.scp.css */
.subscribe .container[b-yq75aoan8p] {
    padding: 80px 80px 0 80px;
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 15px;
}

@media (max-width: 992px) {
    .subscribe .container[b-yq75aoan8p] {
        padding: 60px 60px 0 60px;
    }
}

@media (max-width: 575px) {
    .subscribe .container[b-yq75aoan8p] {
        padding: 25px 15px 0 15px;
        border-radius: 0;
    }
}

.subscribe .cta-content h2[b-yq75aoan8p] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subscribe .cta-content p[b-yq75aoan8p] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.subscribe .cta-form .form-control[b-yq75aoan8p] {
    height: 50px;
    border: 1px solid var(--QURGAL-blue);
    padding-left: 20px;
}

    .subscribe .cta-form .form-control:focus[b-yq75aoan8p] {
        box-shadow: none;
        border-color: var(--QURGAL-blue);
    }

.subscribe .cta-form .btn[b-yq75aoan8p] {
    height: 50px;
    background-color: var(--QURGAL-blue);
    border-color: var(--QURGAL-blue);
    color: var(--surface-color);
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .subscribe .cta-form .btn:hover[b-yq75aoan8p] {
        background-color: color-mix(in srgb, var(--QURGAL-blue), black 10%);
        border-color: color-mix(in srgb, var(--QURGAL-blue), black 10%);
    }

@media (max-width: 575px) {
    .subscribe .cta-form .btn[b-yq75aoan8p] {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .subscribe .cta-content[b-yq75aoan8p] {
        text-align: center;
        margin-bottom: 2rem;
    }

    .subscribe .cta-image[b-yq75aoan8p] {
        text-align: center;
    }
}
/* /Pages/Components/UnusageComponents/AgileBridge.razor.rz.scp.css */
/*--------------------------------------------------------------
# Agile Section
--------------------------------------------------------------*/
.agile-card-main[b-vc6up9rxyw] {
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.agile-bridge-sub[b-vc6up9rxyw] {
    color: var(--QURGAL-blue);
    font-size: calc(1.5rem + 1vw);
    line-height: 1.2;
}

.agile-bridge-desc[b-vc6up9rxyw] {
    font-size: 1.1rem;
    line-height: 1.6;
}

.agile-bridge .btn[b-vc6up9rxyw] {
    background-color: var(--QURGAL-blue);
}
    .agile-bridge .btn:hover[b-vc6up9rxyw] {
        background-color: #0056a3;
    }

@media (max-width: 430px) {
    .agile-bridge-sub[b-vc6up9rxyw] {
        font-size: 1.4rem !important;
    }

    .agile-bridge-desc[b-vc6up9rxyw] {
        font-size: 0.95rem !important;
    }

    .agile-bridge-label[b-vc6up9rxyw] {
        font-size: 0.85rem !important;
    }

    .agile-feature-text[b-vc6up9rxyw] {
        font-size: 0.9rem !important;
    }

    .w-100-mobile[b-vc6up9rxyw] {
        width: 100% !important;
    }

    .col-lg-8.p-4[b-vc6up9rxyw] {
        padding: 1.5rem !important;
    }
}

.animate-spin[b-vc6up9rxyw] {
    display: inline-block;
    animation: agile-spin-b-vc6up9rxyw 10s linear infinite;
}

@keyframes agile-spin-b-vc6up9rxyw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* /Pages/Components/UnusageComponents/Clients.razor.rz.scp.css */
.clients[b-bwo1fwd3pe] {
    padding: 12px 0;
}

    .clients .swiper[b-bwo1fwd3pe] {
        padding: 10px 0;
    }


    .clients .swiper-wrapper[b-bwo1fwd3pe] {
        height: auto;
    }

    .clients .swiper-slide img[b-bwo1fwd3pe] {
        transition: 0.3s;
        padding: 0 10px;
    }

        .clients .swiper-slide img:hover[b-bwo1fwd3pe] {
            transform: scale(1.1);
        }
/* /Pages/Components/UnusageComponents/CorporateGrid.razor.rz.scp.css */
.corporate-grid[b-qxybdnjswg] {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.grid-container[b-qxybdnjswg] {
    margin: 0 auto;
    display: flex;
    max-width: 1000px;
    padding: 0 20px;
}

.grid-card[b-qxybdnjswg] {
    flex: 1;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: background 0.3s ease;
}

    .grid-card:not(:last-child)[b-qxybdnjswg] {
        border-right: 1px solid #e5e5e5;
    }

.card-no[b-qxybdnjswg] {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0067b8;
    letter-spacing: 2px;
}

.card-content h3[b-qxybdnjswg] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-content p[b-qxybdnjswg] {
    font-size: 1rem;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: auto;
}

.card-link[b-qxybdnjswg] {
    text-decoration: none;
    font-weight: 700;
    color: #0A2540;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.grid-card:hover[b-qxybdnjswg] {
    background-color: #fcfcfc;
}

    .grid-card:hover .card-link[b-qxybdnjswg] {
        color: #0067b8;
    }


.grid-card .card-link i[b-qxybdnjswg] {
    animation: badgeShineEffect-b-qxybdnjswg 1s infinite;
}

@keyframes rotateAngle-b-qxybdnjswg {
    to {
        --angle: 360deg;
    }
}

@keyframes badgeShineEffect-b-qxybdnjswg {
    0%, 100% {
        transform: translate(0px, 0px);
        color: #0067b8;
    }

    50% {
        transform: translate(3px, -3px);
        color: #0067b8;
    }
}

@media (max-width: 768px) {
    .grid-container[b-qxybdnjswg] {
        flex-direction: column;
        max-width: 100%;
    }

    .grid-card[b-qxybdnjswg] {
        border-right: none !important;
        border-bottom: 1px solid #e5e5e5;
        padding: 30px 10px;
        gap: 20px;
    }

        .grid-card:last-child[b-qxybdnjswg] {
            border-bottom: none;
        }

    .card-content h3[b-qxybdnjswg] {
        font-size: 1.25rem;
    }
}
/* /Pages/Components/UnusageComponents/FaqSection.razor.rz.scp.css */
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container[b-f1ek0tox3l] {
    margin-top: 15px;
}

    .faq .faq-container .faq-item[b-f1ek0tox3l] {
        background-color: var(--surface-color);
        position: relative;
        padding: 20px;
        margin-bottom: 20px;
        overflow: hidden;
    }

        .faq .faq-container .faq-item:last-child[b-f1ek0tox3l] {
            margin-bottom: 0;
        }

        .faq .faq-container .faq-item h3[b-f1ek0tox3l] {
            font-weight: 600;
            font-size: 18px;
            line-height: 24px;
            margin: 0 30px 0 32px;
            transition: 0.3s;
            cursor: pointer;
        }

            .faq .faq-container .faq-item h3 span[b-f1ek0tox3l] {
                color: var(--QURGAL-blue);
                padding-right: 5px;
            }

            .faq .faq-container .faq-item h3:hover[b-f1ek0tox3l] {
                color: var(--QURGAL-blue);
            }

        .faq .faq-container .faq-item .faq-content[b-f1ek0tox3l] {
            display: grid;
            grid-template-rows: 0fr;
            transition: 0.3s ease-in-out;
            visibility: hidden;
            opacity: 0;
        }

            .faq .faq-container .faq-item .faq-content p[b-f1ek0tox3l] {
                margin-bottom: 0;
                overflow: hidden;
            }

        .faq .faq-container .faq-item .faq-icon[b-f1ek0tox3l] {
            position: absolute;
            top: 22px;
            left: 20px;
            font-size: 20px;
            line-height: 0;
            transition: 0.3s;
            color: var(--QURGAL-blue);
        }

        .faq .faq-container .faq-item .faq-toggle[b-f1ek0tox3l] {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 16px;
            line-height: 0;
            transition: 0.3s;
            cursor: pointer;
        }

            .faq .faq-container .faq-item .faq-toggle:hover[b-f1ek0tox3l] {
                color: var(--QURGAL-blue);
            }

    .faq .faq-container .faq-active h3[b-f1ek0tox3l] {
        color: var(--QURGAL-blue);
    }

    .faq .faq-container .faq-active .faq-content[b-f1ek0tox3l] {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
        padding-top: 10px;
    }

    .faq .faq-container .faq-active .faq-toggle[b-f1ek0tox3l] {
        transform: rotate(90deg);
        color: var(--QURGAL-blue);
    }
/* /Pages/Components/UnusageComponents/PackageWizard.razor.rz.scp.css */
.animate-fade-in[b-oypk46stbr] {
    animation: fadeIn 0.5s ease-in;
}

.animate-zoom-in[b-oypk46stbr] {
    animation: zoomIn 0.5s ease-out;
}

.wizard-step .wizard-btn:hover[b-oypk46stbr] {
    background: var(--brand-gradient);
    transform: translateY(-3px);
}

@@keyframes fadeIn {
    from[b-oypk46stbr] {
        opacity: 0;
        transform: translateY(10px);
    }

    to[b-oypk46stbr] {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Components/UnusageComponents/ServiceInfoGrid.razor.rz.scp.css */
/* --- MS PRODUCTS SECTION --- */
.ms-products-section[b-be7mibx1f9] {
    background-color: transparent;
}

/* ÖNEMLİ: Container override (daha önce eklemediysen) */
@media (min-width: 1400px) {
    .ms-products-section .container[b-be7mibx1f9] {
        max-width: 1600px !important;
    }
}

.ms-card[b-be7mibx1f9] {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--QURGAL-blue), transparent 85%);
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.card-img[b-be7mibx1f9] {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .card-img img[b-be7mibx1f9] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.card-body[b-be7mibx1f9] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Body kısmının esnemesini sağlar */
}

    .card-body h3[b-be7mibx1f9] {
        font-size: 22px;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 15px;
    }

    .card-body p[b-be7mibx1f9] {
        font-size: 15px;
        color: #4a5568;
        line-height: 1.6;
        margin-bottom: 0;
    }

.card-footer[b-be7mibx1f9] {
    padding: 0 24px 24px 24px;
    border: none;
    background: transparent;
}

.ms-btn[b-be7mibx1f9] {
    width: 100%;
    background-color: var(--QURGAL-blue);
    color: #ffffff !important;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

    .ms-btn:hover[b-be7mibx1f9] {
        filter: brightness(0.9);
    }
/* /Pages/Components/UnusageComponents/ServiceProcessGrid.razor.rz.scp.css */
/*--------------------------------------------------------------
# Service Process Section
--------------------------------------------------------------*/
.service-process .service-process-item[b-bly06q8b3t] {
    background: var(--surface-color);
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--QURGAL-blue), transparent 85%);
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

    .service-process .service-process-item .service-process-image[b-bly06q8b3t] {
        overflow: hidden;
        position: relative;
        height: 200px;
    }

        .service-process .service-process-item .service-process-image img[b-bly06q8b3t] {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

    .service-process .service-process-item:hover .service-process-image img[b-bly06q8b3t] {
        transform: scale(1.1);
    }


.service-process .service-process-content[b-bly06q8b3t] {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

    .service-process .service-process-content h3[b-bly06q8b3t] {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-process .service-process-content .service-btn[b-bly06q8b3t] {
        margin-top: auto;
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 25px;
        border-radius: 0px;
        background: var(--QURGAL-blue);
        color: var(--surface-color);
        transition: 0.3s;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
    }

        .service-process .service-process-content .service-btn:hover[b-bly06q8b3t] {
            background-color: var(--QURGAL-blue-hover);
        }

.service-process .service-process-features .feature-item[b-bly06q8b3t] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .service-process .service-process-features .feature-item p[b-bly06q8b3t] {
        font-size: 14px;
        flex-grow: 1;
        margin-bottom: 20px;
    }

@media (max-width: 1199px) {
    .service-process .service-process-content h3[b-bly06q8b3t] {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .service-process .service-process-item[b-bly06q8b3t] {
        margin-bottom: 30px;
    }



    .service-process .service-process-content h3[b-bly06q8b3t] {
        font-size: 20px;
        margin-bottom: 12px;
    }
}
/* /Pages/Components/UnusageComponents/Solutions.razor.rz.scp.css */
/*--------------------------------------------------------------
# Solution Section
--------------------------------------------------------------*/
.solution .solution-filters[b-j660g31ik0] {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .solution .solution-filters li[b-j660g31ik0] {
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        margin: 0 10px;
        line-height: 1;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        text-decoration: underline !important;
    }

        .solution .solution-filters li:hover[b-j660g31ik0],
        .solution .solution-filters li.filter-active[b-j660g31ik0] {
            color: var(--QURGAL-blue);
        }

        .solution .solution-filters li:first-child[b-j660g31ik0] {
            margin-left: 0;
        }

        .solution .solution-filters li:last-child[b-j660g31ik0] {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .solution .solution-filters li[b-j660g31ik0] {
        font-size: 14px;
        margin: 0 5px;
    }
}

.solution .solution-content[b-j660g31ik0] {
    position: relative;
    overflow: hidden;
}

    .solution .solution-content img[b-j660g31ik0] {
        transition: 0.3s;
    }

    .solution .solution-content .solution-info[b-j660g31ik0] {
        opacity: 0;
        position: absolute;
        inset: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px;
    }

        .solution .solution-content .solution-info h4[b-j660g31ik0] {
            font-size: 14px;
            padding: 5px 10px;
            font-weight: 400;
            color: #ffffff;
            display: inline-block;
            background-color: var(--QURGAL-blue);
        }

        .solution .solution-content .solution-info p[b-j660g31ik0] {
            position: absolute;
            bottom: 10px;
            text-align: center;
            display: inline-block;
            left: 0;
            right: 0;
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        .solution .solution-content .solution-info .preview-link[b-j660g31ik0],
        .solution .solution-content .solution-info .details-link[b-j660g31ik0] {
            position: absolute;
            left: calc(50% - 40px);
            font-size: 26px;
            top: calc(50% - 14px);
            color: #fff;
            transition: 0.3s;
            line-height: 1.2;
        }

            .solution .solution-content .solution-info .preview-link:hover[b-j660g31ik0],
            .solution .solution-content .solution-info .details-link:hover[b-j660g31ik0] {
                color: var(--QURGAL-blue);
            }

        .solution .solution-content .solution-info .details-link[b-j660g31ik0] {
            left: 50%;
            font-size: 34px;
            line-height: 0;
        }

    .solution .solution-content:hover .solution-info[b-j660g31ik0] {
        opacity: 1;
    }

    .solution .solution-content:hover img[b-j660g31ik0] {
        transform: scale(1.1);
    }

/* Solution Filters Colors */

/*SaaS*/
.solution .solution-filters .filter-saas[b-j660g31ik0] {
    color: var(--solution-color-saas);
}

.solution .filter-saas .solution-content .solution-info h4[b-j660g31ik0] {
    background-color: var(--solution-color-saas);
}

.solution .filter-saas .solution-content .solution-info .preview-link:hover[b-j660g31ik0],
.solution .filter-saas .solution-content .solution-info .details-link:hover[b-j660g31ik0] {
    color: var(--solution-color-saas);
}

/*Fast-Track*/
.solution .solution-filters .filter-fast[b-j660g31ik0] {
    color: var(--solution-color-fast);
}

.solution .filter-fast .solution-content .solution-info h4[b-j660g31ik0] {
    background-color: var(--solution-color-fast);
}

.solution .filter-fast .solution-content .solution-info .preview-link:hover[b-j660g31ik0],
.solution .filter-fast .solution-content .solution-info .details-link:hover[b-j660g31ik0] {
    color: var(--solution-color-fast);
}

/*Pro*/
.solution .solution-filters .filter-pro[b-j660g31ik0] {
    color: var(--solution-color-pro);
}

.solution .filter-pro .solution-content .solution-info h4[b-j660g31ik0] {
    background-color: var(--solution-color-pro);
}

.solution .filter-pro .solution-content .solution-info .preview-link:hover[b-j660g31ik0],
.solution .filter-pro .solution-content .solution-info .details-link:hover[b-j660g31ik0] {
    color: var(--solution-color-pro);
}

/*Enterprise*/
.solution .solution-filters .filter-ent[b-j660g31ik0] {
    color: var(--solution-color-ent);
}

.solution .filter-ent .solution-content .solution-info h4[b-j660g31ik0] {
    background-color: var(--solution-color-ent);
}

.solution .filter-ent .solution-content .solution-info .preview-link:hover[b-j660g31ik0],
.solution .filter-ent .solution-content .solution-info .details-link:hover[b-j660g31ik0] {
    color: var(--solution-color-ent);
}
/* /Pages/Contact.razor.rz.scp.css */
.header-title[b-2zitbreqaq] {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1a237e;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.5);
}

.section-header .badge[b-2zitbreqaq] {
    background-color: var(--QURGAL-blue-light);
    color: var(--QURGAL-white);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-section[b-2zitbreqaq] {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--QURGAL-blue-ultra-light) 0%, #ffffff 100%);
}

.section-title span[b-2zitbreqaq] {
    color: var(--QURGAL-blue);
    letter-spacing: 2px;
}

.info-wrap[b-2zitbreqaq] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.icon-box[b-2zitbreqaq] {
    width: 54px;
    height: 54px;
    background: var(--QURGAL-blue-light);
    color: var(--QURGAL-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-item h5[b-2zitbreqaq] {
    color: var(--QURGAL-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p[b-2zitbreqaq] {
    color: #64748b;
    font-size: 0.95rem;
}

.form-card[b-2zitbreqaq] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-label[b-2zitbreqaq] {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--QURGAL-dark);
    margin-bottom: 8px;
}

.custom-input[b-2zitbreqaq] {
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

    .custom-input:focus[b-2zitbreqaq] {
        outline: none;
        border-color: var(--QURGAL-blue);
        box-shadow: 0 0 0 4px var(--QURGAL-blue-light);
    }

.btn-submit[b-2zitbreqaq] {
    background: var(--QURGAL-blue);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .btn-submit:hover[b-2zitbreqaq] {
        background: #0052d4;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 98, 255, 0.2);
        color: white;
    }

.map-container[b-2zitbreqaq] {
    filter: grayscale(10%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}



.QURGAL-mesh-bg[b-2zitbreqaq] {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fff;
    background-image: radial-gradient(at 0% 0%, var(--QURGAL-rose) 0px, transparent 40%), radial-gradient(at 50% 0%, var(--QURGAL-indigo) 0px, transparent 40%), radial-gradient(at 100% 0%, var(--QURGAL-purple) 0px, transparent 40%), radial-gradient(at 0% 100%, var(--QURGAL-blue) 0px, transparent 40%), radial-gradient(at 100% 100%, var(--QURGAL-amber) 0px, transparent 40%), radial-gradient(at 50% 50%, var(--QURGAL-rose) 0px, transparent 60%);
    background-size: 150% 150%;
    animation: meshAnimation-b-2zitbreqaq 12s ease infinite alternate;
}

@keyframes meshAnimation-b-2zitbreqaq {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 50% 100%;
    }
}

.social-grid[b-2zitbreqaq] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-box[b-2zitbreqaq] {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--QURGAL-blue);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .social-box:hover[b-2zitbreqaq] {
        transform: translateY(-8px) scale(1.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

    .social-box.whatsapp:hover[b-2zitbreqaq] {
        background: #25D366;
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    }

    .social-box.instagram:hover[b-2zitbreqaq] {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
    }

    .social-box.facebook:hover[b-2zitbreqaq] {
        background: #1877F2;
        box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
    }

    .social-box.x-twitter:hover[b-2zitbreqaq] {
        background: #000000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .social-box.linkedin:hover[b-2zitbreqaq] {
        background: #0077B5;
        box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
    }

    .social-box.maps:hover[b-2zitbreqaq] {
        background: #EA4335;
        box-shadow: 0 10px 20px rgba(234, 67, 53, 0.4);
    }

.social-box[b-2zitbreqaq] {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .social-grid[b-2zitbreqaq] {
        gap: 10px;
        justify-content: center;
    }

    .social-box[b-2zitbreqaq] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

        .social-box:hover[b-2zitbreqaq] {
            transform: translateY(-5px) scale(1.05);
        }
}

@media (max-width: 380px) {
    .social-box[b-2zitbreqaq] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* /Pages/Details/Enterprise.razor.rz.scp.css */
/* --- Enterprise Hero --- */
.ent-hero-clean[b-3y4h3a82dj] {
    position: relative;
    overflow: hidden;
    padding: 160px 0 140px 0;
    background: linear-gradient(to bottom, var(--QURGAL-blue) 0%, var(--QURGAL-blue) 100px, #ffffff 450px);
}

.ent-network-bg[b-3y4h3a82dj] {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(92, 107, 192, 0.08) 1.5px, transparent 1.5px), linear-gradient(90deg, rgba(92, 107, 192, 0.08) 1.5px, transparent 1.5px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at 85% 50%, black 0%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at 85% 50%, black 0%, transparent 85%);
    z-index: 1;
}

.container[b-3y4h3a82dj] {
    position: relative;
    z-index: 10;
}

.ent-tag[b-3y4h3a82dj] {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.ent-display-title[b-3y4h3a82dj] {
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--QURGAL-dark);
}

.text-navy[b-3y4h3a82dj] {
    color: var(--QURGAL-blue);
}

.ent-subtext[b-3y4h3a82dj] {
    font-size: 1.25rem;
    color: #475569;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Kart Alanı --- */
.ent-visual-side[b-3y4h3a82dj] {
    display: flex;
    justify-content: flex-end;
}

.premium-assurance-card[b-3y4h3a82dj] {
    background: #ffffff;
    padding: 35px 45px;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(26, 35, 126, 0.1);
    border: 1px solid var(--QURGAL-blue-ultra-light);
    display: flex;
    align-items: center;
    gap: 25px;
    animation: entFloat-b-3y4h3a82dj 5s ease-in-out infinite;
    position: relative;
}

    .premium-assurance-card[b-3y4h3a82dj]::before {
        content: "";
        position: absolute;
        left: 0;
        top: 25%;
        height: 50%;
        width: 6px;
        background-color: var(--QURGAL-blue);
        border-radius: 0 4px 4px 0;
    }

@keyframes entFloat-b-3y4h3a82dj {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.icon-box-navy[b-3y4h3a82dj] {
    width: 65px;
    height: 65px;
    background: var(--QURGAL-blue-ultra-light);
    color: var(--QURGAL-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.card-details h5[b-3y4h3a82dj] {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--QURGAL-dark);
    margin: 0;
}

.card-details p[b-3y4h3a82dj] {
    color: var(--QURGAL-blue-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0;
}

.divider-ent[b-3y4h3a82dj] {
    width: 80px;
    height: 4px;
    background: var(--QURGAL-blue);
    border-radius: 10px;
    margin-top: 40px;
    opacity: 0.3;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991.98px) {
    .ent-hero-clean[b-3y4h3a82dj] {
        padding: 120px 0 80px 0;
        text-align: center;
        /* Mobilde gradient geçişini daraltıyoruz */
        background: linear-gradient(to bottom, var(--QURGAL-blue) 0%, var(--QURGAL-blue) 60px, #ffffff 300px);
    }

    .ent-display-title[b-3y4h3a82dj] {
        font-size: 2.4rem; /* Kurumsal duruş için çok küçültmedik ama sığdırdık */
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .ent-subtext[b-3y4h3a82dj] {
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .ent-visual-side[b-3y4h3a82dj] {
        justify-content: center; /* Kartı mobilde ortala */
        margin-top: 60px;
    }

    .premium-assurance-card[b-3y4h3a82dj] {
        padding: 25px 30px;
        gap: 20px;
        width: 100%;
        max-width: 350px;
    }

    .icon-box-navy[b-3y4h3a82dj] {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .card-details[b-3y4h3a82dj] {
        text-align: left;
    }

        .card-details h5[b-3y4h3a82dj] {
            font-size: 1.1rem;
        }

        .card-details p[b-3y4h3a82dj] {
            font-size: 0.75rem;
        }
}

/* /Pages/Details/Pro.razor.rz.scp.css */
/* --- Pro Hero Ana Yapı --- */
.pro-hero-minimal[b-f4c4s0x5w6] {
    position: relative;
    padding: 160px 0 140px 0;
    overflow: hidden;
    /* Navbar Kurtarma: Indigo'dan Beyaza asil bir süzülme */
    background: linear-gradient(to bottom, var(--QURGAL-indigo) 0%, var(--QURGAL-indigo) 80px, #ffffff 450px);
}

/* --- İnce Pro Ağ Dokusu --- */
.pro-network-overlay[b-f4c4s0x5w6] {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(93, 91, 212, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(93, 91, 212, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 80% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 80% 50%, black 0%, transparent 80%);
    z-index: 1;
}

.container[b-f4c4s0x5w6] {
    position: relative;
    z-index: 10;
}

/* Badge - QURGAL Pro */
.pro-status-badge[b-f4c4s0x5w6] {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.pro-display-title[b-f4c4s0x5w6] {
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 30px;
    color: var(--QURGAL-dark);
}

.text-indigo[b-f4c4s0x5w6] {
    color: var(--QURGAL-indigo);
}

.pro-manifesto[b-f4c4s0x5w6] {
    font-size: 1.35rem;
    color: #64748b;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

/* --- Görsel Alan --- */
.visual-container[b-f4c4s0x5w6] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-icon-blur[b-f4c4s0x5w6] {
    position: absolute;
    font-size: 15rem;
    color: var(--QURGAL-indigo);
    opacity: 0.4;
    z-index: 1;
    animation: slowPulse-b-f4c4s0x5w6 8s ease-in-out infinite;
}

@keyframes slowPulse-b-f4c4s0x5w6 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.premium-floating-card[b-f4c4s0x5w6] {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 30px;
    box-shadow: 0 35px 70px rgba(93, 91, 212, 0.12);
    border: 1px solid var(--QURGAL-indigo-ultra-light);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: elegantFloat-b-f4c4s0x5w6 5s ease-in-out infinite;
}

@keyframes elegantFloat-b-f4c4s0x5w6 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

.icon-box[b-f4c4s0x5w6] {
    width: 60px;
    height: 60px;
    background: var(--QURGAL-indigo);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(93, 91, 212, 0.2);
}

.card-content h5[b-f4c4s0x5w6] {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--QURGAL-dark);
    margin: 0;
}

.card-content p[b-f4c4s0x5w6] {
    color: var(--QURGAL-indigo);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.divider-pro[b-f4c4s0x5w6] {
    width: 80px;
    height: 4px;
    background: var(--QURGAL-indigo);
    border-radius: 10px;
    margin-top: 40px;
    opacity: 0.3;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991.98px) {
    .pro-hero-minimal[b-f4c4s0x5w6] {
        padding: 120px 0 40px 0;
        text-align: center;
        /* Mobilde geçişi biraz daha yukarı çekiyoruz */
        background: linear-gradient(to bottom, var(--QURGAL-indigo) 0%, var(--QURGAL-indigo) 60px, #ffffff 300px);
    }

    .pro-display-title[b-f4c4s0x5w6] {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .pro-manifesto[b-f4c4s0x5w6] {
        font-size: 1.1rem;
        margin: 0 auto;
    }

/*    .divider-pro {
        margin: 30px auto 0 auto;
    }*/

    .visual-container[b-f4c4s0x5w6] {
        height: 250px;
    }

    .bg-icon-blur[b-f4c4s0x5w6] {
        font-size: 10rem;
    }

    .premium-floating-card[b-f4c4s0x5w6] {
        padding: 20px 25px;
        gap: 15px;
        max-width: 320px;
    }

    .icon-box[b-f4c4s0x5w6] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .card-content[b-f4c4s0x5w6] {
        text-align: left;
    }

        .card-content h5[b-f4c4s0x5w6] {
            font-size: 1.1rem;
        }

        .card-content p[b-f4c4s0x5w6] {
            font-size: 0.85rem;
        }
}
/* /Pages/Details/SaaS.razor.rz.scp.css */
/* --- SaaS Hero Ana Konteynır --- */
.saas-hero[b-2768n3cgag] {
    position: relative;
    padding: 160px 0 140px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--QURGAL-purple) 0%, var(--QURGAL-purple) 100px, #ffffff 450px);
}

/* --- SaaS Ağ/Bulut Dokusu --- */
.saas-network-bg[b-2768n3cgag] {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--QURGAL-purple-light) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 80% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 80% 40%, black 0%, transparent 80%);
    opacity: 0.4;
    z-index: 1;
}

.container[b-2768n3cgag] {
    position: relative;
    z-index: 10;
}

.saas-badge[b-2768n3cgag] {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.saas-title[b-2768n3cgag] {
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--QURGAL-dark);
}

.text-purple[b-2768n3cgag] {
    color: var(--QURGAL-purple);
}

.saas-lead[b-2768n3cgag] {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Görsel Alan --- */
.saas-visual-stack[b-2768n3cgag] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-ring[b-2768n3cgag] {
    position: absolute;
    border: 2px dashed var(--QURGAL-purple);
    border-radius: 50%;
    animation: rotateRing-b-2768n3cgag 25s linear infinite;
}

.ring-1[b-2768n3cgag] {
    width: 320px;
    height: 320px;
}

.ring-2[b-2768n3cgag] {
    width: 480px;
    height: 480px;
    animation-direction: reverse;
    opacity: 0.5;
}

@keyframes rotateRing-b-2768n3cgag {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.saas-floating-card[b-2768n3cgag] {
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(142, 127, 150, 0.15);
    border: 1px solid var(--QURGAL-purple-ultra-light);
    display: flex;
    align-items: center;
    gap: 18px;
    animation: saasFloat-b-2768n3cgag 6s ease-in-out infinite;
    z-index: 5;
}

@keyframes saasFloat-b-2768n3cgag {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.saas-icon-wrapper[b-2768n3cgag] {
    width: 54px;
    height: 54px;
    background: var(--QURGAL-purple-ultra-light);
    color: var(--QURGAL-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.saas-card-text h5[b-2768n3cgag] {
    font-weight: 800;
    margin: 0;
    font-size: 1.2rem;
    color: var(--QURGAL-dark);
}

.mini-badge[b-2768n3cgag] {
    position: absolute;
    background: white;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    z-index: 6;
    border: 1px solid var(--QURGAL-purple-ultra-light);
}
.divider-saas[b-2768n3cgag] {
    width: 80px;
    height: 4px;
    background: var(--QURGAL-purple);
    border-radius: 10px;
    margin-top: 40px;
    opacity: 0.3;
}
/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991.98px) {
    .saas-hero[b-2768n3cgag] {
        padding: 120px 0 40px 0;
        text-align: center;
        background: linear-gradient(to bottom, var(--QURGAL-purple) 0%, var(--QURGAL-purple) 60px, #ffffff 300px);
    }

    .saas-title[b-2768n3cgag] {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .saas-lead[b-2768n3cgag] {
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .mt-5.d-flex[b-2768n3cgag] {
        justify-content: center;
    }

    /* Görsel alanı mobilde dikeyde çok yer kaplamasın diye sınırladık */
    .saas-visual-stack[b-2768n3cgag] {
        height: 280px; /* Mobilde yüksekliği biraz daha kıstık */
    }

    /* 1. Halkayı mobilde küçülttük (Masaüstü 320px idi) */
    .ring-1[b-2768n3cgag] {
        width: 220px;
        height: 220px;
    }

    /* 2. Halkayı mobilde küçülttük (Masaüstü 480px idi) */
    .ring-2[b-2768n3cgag] {
        width: 300px;
        height: 300px;
        opacity: 0.3; /* Mobilde daha hafif bir görünüm */
    }

    /* Kartın halkaların tam ortasında ve şık durması için */
    .saas-floating-card[b-2768n3cgag] {
        padding: 15px 20px;
        gap: 12px;
        max-width: 260px; /* Kartı da biraz daralttık */
        border-radius: 18px;
    }

    /* Metrik etiketlerini halkaların dışına taşmayacak şekilde yaklaştırdık */
    .mini-badge[b-2768n3cgag] {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

        /* 99.9% Uptime rozetini halkaya yaklaştır */
        .mini-badge[style*="top: -30px"][b-2768n3cgag] {
            top: -15px !important;
            right: 15% !important;
        }

        /* API Ready rozetini halkaya yaklaştır */
        .mini-badge[style*="bottom: -20px"][b-2768n3cgag] {
            bottom: -5px !important;
            left: 15% !important;
        }
}
