:root {
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --primary: #00f3ff;
    --primary-glow: rgba(0, 243, 255, 0.4);
    --secondary: #bd00ff;
    --secondary-glow: rgba(189, 0, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 12px;
    --gradient-text: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --section-spacing: 120px;
    --container-max: 1200px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body.light-mode {
    --bg-dark: #ffffff;
    --bg-card: #f5f5f7;
    --bg-card-hover: #e8e8ed;
    --text-main: #1d1d1f;
    --text-muted: #222222;
    --glass-border: rgba(0, 0, 0, 0.1);
    --primary: #0047b3;
    --primary-glow: rgba(0, 71, 179, 0.3);
    --secondary: #0047b3;
    --secondary-glow: rgba(0, 71, 179, 0.1);
    --gradient-text: #1d1d1f;
    --gradient-primary: linear-gradient(135deg, #0047b3 0%, #0071e3 100%);
}

body.light-mode .background-glow {
    opacity: 0.3;
    filter: blur(80px);
}

body.light-mode .glass-header,
body.light-mode header.glass-header,
body.light-mode .glass-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .glass-card {
    background: #fff;
    border: 1px solid #d2d2d7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
}

body.light-mode .glass-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

body.light-mode .title-gradient,
body.light-mode .text-gradient {
    background: none;
    -webkit-text-fill-color: initial;
    color: #1d1d1f;
}

body.light-mode .btn-primary {
    background: #0071e3;
    color: #fff;
    border-radius: 980px;
}

body.light-mode .btn-primary:hover {
    background: #0077ed;
    box-shadow: 0 5px 15px rgba(0, 113, 227, 0.4);
}

body.light-mode .btn-secondary {
    background: #e8e8ed;
    color: #1d1d1f;
}

body.light-mode .btn-outline {
    border-color: #0071e3;
    color: #0071e3;
}

body.light-mode .btn-outline:hover {
    background: #0071e3;
    color: #fff;
}

body.light-mode .mobile-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #1d1d1f;
}

body.light-mode .mobile-menu .mobile-link {
    color: #1d1d1f;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-menu .close-menu-btn {
    color: #1d1d1f;
}

body.light-mode .mobile-menu-btn {
    color: #1d1d1f;
}

body.light-mode .nav-links a {
    color: #4a4a4f;
}

body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active {
    color: #0071e3;
}

body.light-mode p,
body.light-mode .service-card p,
body.light-mode .ref-overlay p,
body.light-mode .step p,
body.light-mode .faq-answer p {
    color: #4a4a4f;
}

body.light-mode .pricing-card .save-badge {
    color: #ffffff;
    background: #0047b3;
}

body.light-mode .footer-bottom p {
    color: #000000;
    font-weight: 500;
}

body.light-mode .mobile-lang-switcher a {
    color: #1d1d1f !important;
}

body.light-mode .mobile-lang-switcher a[style*="var(--primary)"] {
    color: var(--primary) !important;
}

body.light-mode .contact-form input:focus,
body.light-mode .contact-form select:focus,
body.light-mode .contact-form textarea:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

body.light-mode .hero-card {
    background: #fff;
    border: 1px solid #d2d2d7;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-mode .card-header {
    background: #f5f5f7;
    border-bottom: 1px solid #d2d2d7;
}

body.light-mode .mockup-box,
body.light-mode .mockup-line {
    background: #e8e8ed;
}

body.light-mode .toggle-switch {
    background: #e8e8ed;
}

body.light-mode .pricing-card.popular {
    background: #fff;
    border: 2px solid #0071e3;
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.15);
}

body.light-mode .popular-badge {
    background: #0071e3;
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html,
body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0047b3;
    color: white;
    padding: 8px;
    z-index: 10000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: bold;
    border-bottom-right-radius: 8px;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.center {
    text-align: center;
}

.section {
    padding: var(--section-spacing) 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title-gradient {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.background-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    max-width: 100vw;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.top-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-main);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.full-width {
    width: 100%;
}

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s;
    min-height: 80px;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.glass-header.scrolled {
    background: rgba(5, 5, 7, 0.95);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    margin-right: 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    color: var(--primary);
    transform: rotate(15deg);
}

.mobile-theme-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .mobile-theme-btn {
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-theme-btn span {
    margin-left: 10px;
    font-size: 1rem;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.lang-switcher a {
    color: var(--text-muted);
}

.lang-switcher a.active {
    color: var(--primary) !important;
    font-weight: 700;
}

.mobile-menu-btn,
.close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width:900px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
}

.trust-indicators {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--primary);
}

.hero-card {
    width: 100%;
    aspect-ratio: 1.5;
    background: rgba(20, 20, 25, 0.6);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    min-height: 200px;
}

.card-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot-ui {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-ui.red {
    background: #ff5f56;
}

.dot-ui.yellow {
    background: #ffbd2e;
}

.dot-ui.green {
    background: #27c93f;
}

.card-body-mockup {
    padding: 30px;
}

.mockup-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 4px;
}

.w-75 {
    width: 75%;
}

.w-full {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.mockup-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.mockup-box {
    flex: 1;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mockup-btn {
    width: 120px;
    height: 30px;
    background: var(--primary);
    border-radius: 4px;
    opacity: 0.8;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: 0.3s;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.grid-2-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.ref-card {
    padding: 0 !important;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.ref-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.ref-card:hover img {
    transform: scale(1.05);
}

.ref-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.ref-card:hover .ref-overlay {
    opacity: 1;
    transform: translateY(0);
}

.process-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), transparent);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    text-align: center;
}

.step {
    flex: 1;
    padding: 0 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
}

.step-line {
    width: 50px;
    height: 2px;
    background: var(--glass-border);
    align-self: flex-start;
    margin-top: 50px;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width:600px) {
    .pricing-toggle-container {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.toggle-label {
    font-weight: 500;
    color: var(--text-muted);
    transition: 0.3s;
}

.toggle-label.active {
    color: #fff;
}

.pricing-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 10px;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-circle {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: 0.3s;
}

.toggle-switch.toggled .toggle-circle {
    left: 27px;
}

.toggle-switch.toggled {
    background: rgba(255, 255, 255, 0.2);
}

.save-badge {
    background: var(--secondary);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header-pricing {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 15px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--primary);
}

.features-list li strong {
    color: #fff;
}

.contact-form-card {
    padding: 3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 20px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-top: 15px;
    max-height: 200px;
}

.faq-item i {
    transition: 0.3s;
}

.faq-item.active i {
    transform: rotate(180deg);
}

footer {
    border-top: 1px solid var(--glass-border);
    background: #000;
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-links {
    display: flex;
    gap: 30px;
}

.footer-nav-links a {
    color: var(--text-muted);
}

.footer-nav-links a:hover {
    color: #fff;
}

.footer-links a,
.footer-social a {
    color: var(--text-muted);
}

.footer-links a:hover,
.footer-social a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #555;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.js-loaded .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
}

.js-loaded .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.js-loaded .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:900px) {
    .container {
        padding: 0 25px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p,
    .hero-buttons,
    .trust-indicators {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .nav-links,
    .btn.sm-hidden {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-3,
    .grid-2,
    .grid-2-large {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: 0;
        align-self: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease-out;
}

.success-message.visible {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.contact-form.hidden {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 60px 40px;
    transition: transform 0.4s ease-in-out, visibility 0.4s;
    transform: translateX(100%);
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.mobile-cta {
    margin-top: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 1rem;
}

@media (max-width:600px) {

    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}

.form-section-divider {
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section-divider h3 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
}

.form-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
    opacity: 0.8;
}

.color-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#color-picker {
    width: 50px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: var(--radius-sm);
}

.request-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.request-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(var(--glass-blur));
}

body.light-mode .request-card {
    background: #fff;
    border: 1px solid #d2d2d7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.request-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.light-mode .request-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.req-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.req-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.req-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.detail-row {
    display: flex;
    margin-bottom: 0.5rem;
}

.detail-label {
    width: 100px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-main);
    font-size: 0.9rem;
    flex: 1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.status-badge.loading {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.status-badge.done {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    max-height: 90vh;
    overflow-y: auto;
}

body.light-mode .modal-content {
    background: #fff;
    border: 1px solid #d2d2d7;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.copy-area {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    color: #e2e8f0;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: pre-wrap;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
}

body.light-mode .copy-area {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 120px;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body.light-mode .cookie-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d2d2d7;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width:600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.team-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), transparent);
}

.team-card {
    padding: 3rem 2rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
    padding: 2rem;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    color: var(--text-main);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

body.light-mode .testimonial-dot {
    background: #d2d2d7;
}

body.light-mode .testimonial-dot.active {
    background: var(--primary);
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: 0.3s;
}

.tech-logo-item i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.tech-logo-item:hover i {
    color: var(--primary);
    transform: translateY(-3px);
}

.konfigurator-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 243, 255, 0.03), transparent);
}

.konfig-group {
    margin-bottom: 30px;
}

.konfig-label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.konfig-range-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.konfig-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.konfig-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: 0.2s;
}

.konfig-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

body.light-mode .konfig-range {
    background: #e8e8ed;
}

.konfig-range-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    min-width: 80px;
    text-align: right;
}

.konfig-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width:600px) {
    .konfig-checkboxes {
        grid-template-columns: 1fr;
    }
}

.konfig-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.konfig-checkbox input {
    display: none;
}

.konfig-checkbox span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    transition: 0.3s;
    width: 100%;
    color: var(--text-muted);
}

.konfig-checkbox input:checked+span {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

body.light-mode .konfig-checkbox input:checked+span {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 113, 227, 0.05);
}

.konfig-checkbox span i {
    font-size: 1.1rem;
}

.konfig-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px !important;
    margin-top: 30px;
    border: 1px solid var(--primary) !important;
    background: rgba(0, 243, 255, 0.03) !important;
}

.konfig-result-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 243, 255, 0.05);
}

body.light-mode .filter-btn.active {
    background: rgba(0, 113, 227, 0.05);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width:600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    transition: 0.3s;
}

.portfolio-item.hidden-item {
    display: none;
}

.portfolio-card {
    cursor: pointer;
}

.portfolio-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    background: rgba(0, 243, 255, 0.15);
    color: var(--primary);
    margin-top: 5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    cursor: pointer;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.blog-card-header {
    padding: 2rem 2rem 0;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 2rem;
    margin-bottom: 15px;
}

.blog-card-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-reading-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 0;
}

.blog-post-body h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.blog-post-body .post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.blog-post-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.blog-post-body h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-post-body h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.blog-back-link:hover {
    gap: 12px;
}

.portal-status-tracker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    overflow-x: auto;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

body.light-mode .status-dot {
    background: #e8e8ed;
    border-color: #d2d2d7;
}

.status-step.completed .status-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.status-step.current .status-dot {
    background: transparent;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 5px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

.status-step span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

.status-step.completed span,
.status-step.current span {
    color: var(--primary);
    font-weight: 600;
}

.status-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    margin-bottom: 25px;
}

body.light-mode .status-line {
    background: #e8e8ed;
}

.status-line.completed {
    background: var(--primary);
}

.align-center {
    align-items: center;
}

.glow-border {
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.05);
}

body.light-mode .glow-border {
    border: 1px solid rgba(0, 113, 227, 0.2);
    box-shadow: 0 0 30px rgba(0, 113, 227, 0.05);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.assist-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2147483647;
    font-family: var(--font-body);
    isolation: isolate;
}

.assist-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:600px) {
    .assist-trigger {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 20px;
        left: 20px;
    }

    .assist-widget {
        bottom: 20px;
        left: 20px;
    }
}

.assist-trigger:hover,
.assist-trigger.active {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary);
}

.assist-panel {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: rgba(29, 29, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform-origin: bottom left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: scale(1);
    overflow: hidden;
}

body.light-mode .assist-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.assist-panel.hidden {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    pointer-events: none;
}

.assist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

body.light-mode .assist-header {
    border-color: rgba(0, 0, 0, 0.1);
}

.assist-title {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.assist-close-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.2rem;
}

.assist-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.assist-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    color: var(--text-main);
    text-align: left;
    width: 100%;
    font-size: 0.95rem;
}

body.light-mode .assist-item {
    background: rgba(0, 0, 0, 0.05);
}

.assist-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.light-mode .assist-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

.assist-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.assist-controls {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 20px;
}

body.light-mode .assist-controls {
    background: rgba(255, 255, 255, 0.5);
}

.ctrl-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.assist-footer {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
}

body.light-mode .assist-footer {
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-reset {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-reset:hover {
    color: var(--primary);
}

body.assist-contrast-high,
body.assist-contrast-high.light-mode {
    background-color: #000 !important;
    color: #ffff00 !important;
}

body.assist-contrast-high *:not(.assist-widget):not(.assist-widget *) {
    background-color: #000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
}

body.assist-contrast-high img {
    filter: invert(1) grayscale(1);
    opacity: 0.8;
}

body.assist-contrast-high .assist-trigger {
    background-color: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #ffff00 !important;
    box-shadow: 0 0 10px #ffff00 !important;
}

body.assist-contrast-high .assist-panel {
    background-color: #000 !important;
    border: 2px solid #ffff00 !important;
}

body.assist-contrast-high .assist-item {
    border: 1px solid #ffff00 !important;
    color: #ffff00 !important;
    background: transparent !important;
}

body.assist-contrast-high .assist-icon {
    background-color: #ffff00 !important;
    color: #000 !important;
}

body.assist-contrast-high .assist-header {
    border-bottom: 1px solid #ffff00 !important;
}

.invert-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: invert(1);
    pointer-events: none;
    z-index: 9998;
    display: none;
}

.invert-mode-overlay.active {
    display: block;
}

.saturation-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    display: none;
}

.saturation-mode-overlay.active.low {
    display: block;
    backdrop-filter: saturate(50%);
}

.saturation-mode-overlay.active.grey {
    display: block;
    backdrop-filter: grayscale(100%);
}

.blue-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 166, 0, 0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 10000;
    display: none;
}

.blue-filter-overlay.active {
    display: block;
}

.night-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: brightness(0.7) contrast(1.2);
    pointer-events: none;
    z-index: 9998;
    display: none;
}

.night-mode-overlay.active {
    display: block;
}

body.assist-hide-images img,
body.assist-hide-images video,
body.assist-hide-images .background-glow {
    opacity: 0 !important;
    visibility: hidden !important;
}

body.assist-readable-font {
    font-family: Arial, Helvetica, sans-serif !important;
}

body.assist-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

body.assist-reading-active {
    cursor: wait;
}

body.light-mode .assist-trigger {
    background: #0071e3;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.4);
}

body.light-mode .assist-trigger:hover,
body.light-mode .assist-trigger.active {
    background: #000;
    color: #fff;
}

@media (max-width:480px) {
    :root {
        --section-spacing: 60px;
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }

    .container,
    .container-sm {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    h1,
    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        word-break: break-word;
        hyphens: auto;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .hero-content {
        gap: 30px;
        padding-top: 100px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }

    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .trust-item {
        font-size: 0.8rem;
        width: auto;
    }

    .grid-3,
    .grid-2,
    .grid-2-large,
    .pricing-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .glass-card,
    .service-card,
    .pricing-card {
        padding: 25px 20px !important;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
        padding: 4px;
        margin-left: auto;
    }

    .mobile-link {
        padding: 15px;
        font-size: 1.2rem;
    }

    .glass-header {
        background: rgba(10, 10, 12, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    body.light-mode .glass-header {
        background: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .logo-img {
        height: 35px !important;
        width: auto !important;
    }

    .logo-text {
        font-size: 1.3rem !important;
    }
}

@media (max-width:768px) {
    .glass-header .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px !important;
        gap: 10px;
    }

    .glass-header .logo-link {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .glass-header .logo-img {
        height: 35px !important;
    }

    .glass-header {
        height: auto !important;
        position: relative !important;
        top: 0 !important;
        margin-bottom: 20px !important;
    }

    .glass-header .header-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    #watchdog-spinner+i+span,
    .glass-header span[style*="font-size:1.2rem"] {
        display: none !important;
    }

    .glass-header+.container {
        flex-direction: column;
        gap: 10px;
        align-items: stretch !important;
    }

    #api-provider-select,
    #api-key-input,
    #save-key-btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .request-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .request-card {
        padding: 15px !important;
    }

    .req-name {
        font-size: 1.1rem !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .req-name span[style*="background"] {
        margin-left: 0 !important;
        margin-top: 5px;
        display: inline-block;
    }

    .generated-status button {
        padding: 10px 14px !important;
        margin-bottom: 8px;
    }

    .generated-status div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .tab-container {
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .tab-container button {
        flex-shrink: 0;
        padding: 10px 15px !important;
    }

    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
        padding: 20px !important;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

.mobile-menu.active .close-menu-btn {
    animation: spinIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes spinIn {
    0% {
        transform: rotate(-90deg) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.mobile-menu nav>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active nav>* {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active nav>*:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active nav>*:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active nav>*:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active nav>*:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active nav>*:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active nav>*:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu.active nav>*:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu.active nav>*:nth-child(8) {
    transition-delay: 0.45s;
}

.mobile-menu.active nav>*:nth-child(9) {
    transition-delay: 0.5s;
}

.btn,
.service-card,
.blog-card,
.pricing-card,
.request-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:active,
.btn-secondary:active,
.btn-outline:active {
    transform: scale(0.95);
}

.tech-logo-item i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-logo-item:hover i {
    transform: translateY(-8px) scale(1.1);
    filter: drop-shadow(0 5px 15px var(--primary-glow));
}