/*:root {
    --bg: #030712;
    --bg-soft: #07111f;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.12);
    --text: #f8fafc;
    --muted: #9ca3af;
    --orange: #ff8a00;
    --pink: #f72585;
    --purple: #6d28d9;
    --blue: #2563eb;
    --cyan: #00d9ff;
    --gradient: linear-gradient(90deg, #ff8a00, #f72585, #6d28d9, #00d9ff);
}

html[data-theme="light"] {
    --bg: #f8fafc;
    --bg-soft: #eef4f8;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --border: rgba(15, 23, 42, 0.10);
    --text: #0f172a;
    --muted: #64748b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 20% 10%, rgba(255, 138, 0, 0.14), transparent 28%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.14), transparent 30%), radial-gradient(circle at 50% 90%, rgba(109, 40, 217, 0.14), transparent 28%), var(--bg);
}

html[data-theme="light"] body {
    background: radial-gradient(circle at 20% 10%, rgba(255, 138, 0, 0.10), transparent 28%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.10), transparent 30%), radial-gradient(circle at 50% 90%, rgba(109, 40, 217, 0.08), transparent 28%), #f8fafc;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}*/

/* =========================================================
   NAVBAR
   ========================================================= */

/*.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0 18px;
    background: transparent;
    border-bottom: 0;
    transition: 0.3s ease;
}

    .site-header.scrolled {
        top: 10px;
    }

.ak-navbar {
    min-height: auto;
    padding: 0;
}

.nav-shell {
    min-height: 96px;
    border-radius: 30px;
    padding: 12px 22px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.site-header:not(.scrolled) .nav-shell {
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header.scrolled .nav-shell {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

    .site-header.scrolled .nav-shell::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 90deg, rgba(255, 138, 0, 0.38), rgba(247, 37, 133, 0.25), rgba(0, 217, 255, 0.38) );
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

html[data-theme="light"] .site-header:not(.scrolled) .nav-shell,
html[data-theme="light"] .site-header.scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.navbar-brand {
    position: relative;
    z-index: 3;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 230px;
    height: auto;
    max-height: none;
    object-fit: contain;
    transition: 0.25s ease;
}

.site-header.scrolled .brand-logo {
    width: 200px;
}

.brand-logo-light {
    display: none;
}

html[data-theme="dark"] .brand-logo-dark {
    display: block;
}

html[data-theme="dark"] .brand-logo-light {
    display: none;
}

html[data-theme="light"] .brand-logo-dark {
    display: none;
}

html[data-theme="light"] .brand-logo-light {
    display: block;
}

.main-nav-wrap {
    position: relative;
    z-index: 3;*/
/*    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;*/
/*}
@media (min-width: 992px) {
    .main-nav-wrap {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .main-nav-wrap {
        display: none !important;
        width: 100%;
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .main-nav-wrap.show {
            display: block !important;
        }

        .main-nav-wrap.collapsing {
            display: block !important;
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }

    .nav-menu {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
        border-radius: 22px;
        margin-bottom: 14px;
        padding: 12px;
    }

    .nav-link {
        display: block;
        text-align: center;
        padding: 0.85rem 1rem !important;
    }

    .nav-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-cta {
        min-width: 170px;
    }
}.nav-menu {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header:not(.scrolled) .nav-menu {
    background: rgba(3, 7, 18, 0.32);
    backdrop-filter: blur(12px);
}

html[data-theme="light"] .nav-menu,
html[data-theme="light"] .site-header:not(.scrolled) .nav-menu {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}

.nav-link {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.75rem 1rem !important;
    border-radius: 999px;
    transition: 0.25s ease;
}

html[data-theme="light"] .nav-link {
    color: rgba(15, 23, 42, 0.72) !important;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.18), transparent 65%), linear-gradient(90deg, rgba(255, 138, 0, 0.12), rgba(247, 37, 133, 0.12), rgba(0, 217, 255, 0.12));
    opacity: 0;
    transform: scale(0.84);
    transition: 0.25s ease;
}

html[data-theme="light"] .nav-link::before {
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.16), transparent 65%), linear-gradient(90deg, rgba(255, 138, 0, 0.10), rgba(247, 37, 133, 0.10), rgba(0, 217, 255, 0.10));
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active {
    color: #0f172a !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-cta {
    min-width: 130px;
    text-align: center;
    box-shadow: 0 0 34px rgba(247, 37, 133, 0.22);
}

.theme-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.25s ease;
}

    .theme-toggle:hover {
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 24px rgba(0, 217, 255, 0.16);
        transform: translateY(-2px);
    }

    .theme-toggle i {
        font-size: 1.05rem;
    }

.theme-icon-light {
    display: none;
}

html[data-theme="light"] .theme-toggle {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .theme-icon-dark {
    display: none;
}

html[data-theme="light"] .theme-icon-light {
    display: inline-block;
}

.custom-toggler {
    position: relative;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
}

    .custom-toggler:focus {
        box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
    }*/

/* =========================================================
   BUTTONS
   ========================================================= */

/*.btn-gradient {
    border: 0;
    color: white;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    background: var(--gradient);
    background-size: 180% 180%;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.25);
    transition: 0.25s ease;
}

    .btn-gradient:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 0 40px rgba(247, 37, 133, 0.36);
        background-position: 100% 50%;
    }

.btn-outline-glow {
    border: 1px solid var(--border);
    color: white;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
    transition: 0.25s ease;
}

    .btn-outline-glow:hover {
        color: white;
        transform: translateY(-2px);
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 0 24px rgba(0, 217, 255, 0.18);
    }

html[data-theme="light"] .btn-outline-glow {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

    html[data-theme="light"] .btn-outline-glow:hover {
        color: #0f172a;
        border-color: rgba(2, 132, 199, 0.35);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 14px 34px rgba(2, 132, 199, 0.12);
    }*/

/* =========================================================
   HERO
   ========================================================= */

/*.hero-section {
    position: relative;
    padding: 190px 0 64px;
    overflow: hidden;
}

.hero-full {
    padding: 170px 0 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -260px;
    right: -180px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.22), transparent 62%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    bottom: -240px;
    left: -160px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.18), transparent 62%);
    pointer-events: none;
}

.hero-card {
    position: relative;
    z-index: 2;
    min-height: 430px;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.52)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.hero-card-full {
    width: 100%;
    min-height: 620px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.54)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 70px;
}

.hero-card-full .hero-content {
    padding: 110px 0;
}

.eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero-content h1 {
    max-width: 920px;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.92;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: -0.06em;
}

    .hero-content h1 span {
        display: block;
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-text {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.1rem;
    margin: 24px 0 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

html[data-theme="light"] .hero-card,
html[data-theme="light"] .hero-card-full {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.90), rgba(248, 250, 252, 0.60)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

    html[data-theme="light"] .hero-card::before {
        opacity: 0.10;
    }

html[data-theme="light"] .hero-content h1 {
    color: #0f172a;
}

html[data-theme="light"] .hero-text {
    color: #64748b;
}*/

/* =========================================================
   TECH STACK SLIDER
   ========================================================= */

/*.tech-stack-showcase {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

    .tech-stack-showcase::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 90deg, rgba(255, 138, 0, 0.45), rgba(247, 37, 133, 0.28), rgba(0, 217, 255, 0.45) );
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.tech-stack-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

    .tech-stack-header span {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 950;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .tech-stack-header p {
        margin: 0;
        color: var(--muted);
        font-size: 0.92rem;
    }

.tech-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: max-content;
    gap: 14px;
    animation: techScroll 34s linear infinite;
}

.tech-marquee:hover .tech-marquee-track {
    animation-play-state: paused;
}

.tech-pill {
    min-width: 185px;
    height: 76px;
    padding: 0 22px;
    border-radius: 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.13), transparent 35%), rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
    white-space: nowrap;
    transition: 0.25s ease;
}

    .tech-pill i {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: var(--cyan);
        background: rgba(0, 217, 255, 0.10);
        font-size: 1.15rem;
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.08);
    }

    .tech-pill span {
        display: inline-block !important;
        font-size: 0.95rem;
        letter-spacing: -0.02em;
    }

    .tech-pill:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.35);
        background: radial-gradient(circle at top left, rgba(255, 138, 0, 0.14), transparent 34%), radial-gradient(circle at bottom right, rgba(0, 217, 255, 0.15), transparent 34%), rgba(255, 255, 255, 0.075);
    }

html[data-theme="light"] .tech-stack-showcase {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .tech-stack-header span {
    color: #0f172a;
}

html[data-theme="light"] .tech-pill {
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 35%), rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

    html[data-theme="light"] .tech-pill i {
        background: rgba(0, 217, 255, 0.08);
        color: #0284c7;
        box-shadow: none;
    }

@keyframes techScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}*/

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

/*.section {
    padding: 84px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

    .section-heading h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 950;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
    }

    .section-heading p {
        color: var(--muted);
    }

html[data-theme="light"] .section-soft {
    background: linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .section-heading p {
    color: var(--text);
}

html[data-theme="light"] .section-heading p {
    color: var(--muted);
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .work-body span {
    color: #0284c7;
}*/

/* =========================================================
   TECHNICAL EXCELLENCE
   ========================================================= */

/*.technical-section {
    position: relative;
    padding: 105px 0;
    background: radial-gradient(circle at 12% 20%, rgba(255, 138, 0, 0.10), transparent 28%), radial-gradient(circle at 88% 35%, rgba(0, 217, 255, 0.12), transparent 30%), linear-gradient(180deg, #050816, #07111f);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

    .technical-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: 0.22;
        pointer-events: none;
    }

.technical-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.technical-content h2 {
    max-width: 650px;
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

    .technical-content h2 span {
        color: #ff7a18;
    }

.technical-content p {
    max-width: 640px;
    color: #b8c7da;
    line-height: 1.8;
    font-size: 1.04rem;
    margin-bottom: 30px;
}

.technical-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.code-card {
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 70px rgba(0, 217, 255, 0.08);
    overflow: hidden;
}

.code-card-header {
    min-height: 54px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-dots {
    display: flex;
    gap: 8px;
}

    .window-dots span {
        width: 10px;
        height: 10px;
        border-radius: 999px;
    }

        .window-dots span:nth-child(1) {
            background: #ff4d6d;
        }

        .window-dots span:nth-child(2) {
            background: #ff8a00;
        }

        .window-dots span:nth-child(3) {
            background: #00d9ff;
        }

.code-file {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
    font-weight: 800;
}

.code-card pre {
    margin: 0;
    padding: 30px 28px;
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.9;
    white-space: pre-wrap;
}

.code-card code {
    font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
}

.code-purple {
    color: #c084fc;
}

.code-cyan {
    color: #00d9ff;
}

.code-orange {
    color: #ff8a00;
}

.code-muted {
    color: rgba(255, 255, 255, 0.34);
}

.code-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .code-metrics div {
        padding: 24px 16px;
        text-align: center;
    }

    .code-metrics strong {
        display: block;
        color: #00d9ff;
        font-size: 1.45rem;
        font-weight: 950;
        line-height: 1;
    }

    .code-metrics span {
        display: block;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.42);
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.7rem;
        font-weight: 900;
    }

html[data-theme="light"] .technical-section {
    background: radial-gradient(circle at 12% 20%, rgba(255, 138, 0, 0.08), transparent 28%), radial-gradient(circle at 88% 35%, rgba(0, 217, 255, 0.10), transparent 30%), linear-gradient(180deg, #f8fafc, #edf5fa);
    border-color: rgba(15, 23, 42, 0.06);
}

    html[data-theme="light"] .technical-section::before {
        opacity: 0.13;
    }

html[data-theme="light"] .technical-content h2 {
    color: #0f172a;
}

html[data-theme="light"] .technical-content p {
    color: #64748b;
}

html[data-theme="light"] .code-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,245,249,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .code-card-header,
html[data-theme="light"] .code-metrics {
    border-color: rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .code-file,
    html[data-theme="light"] .code-metrics span {
        color: #64748b;
    }

html[data-theme="light"] .code-card pre {
    color: #0f172a;
}

html[data-theme="light"] .code-muted {
    color: #94a3b8;
}

html[data-theme="light"] .code-purple {
    color: #7c3aed;
}

html[data-theme="light"] .code-cyan,
html[data-theme="light"] .code-metrics strong {
    color: #0284c7;
}

html[data-theme="light"] .code-orange {
    color: #ea580c;
}

html[data-theme="light"] .code-metrics div {
    background: rgba(248, 250, 252, 0.65);
}

    html[data-theme="light"] .code-metrics div + div {
        border-left: 1px solid rgba(15, 23, 42, 0.06);
    }*/

/* =========================================================
   SPECIALIZED EXPERTISE
   ========================================================= */

/*.capabilities-section {
    background: #050505;
    padding-top: 95px;
    padding-bottom: 95px;
}

    .capabilities-section .section-heading {
        margin-bottom: 54px;
    }

        .capabilities-section .section-heading h2 {
            text-transform: uppercase;
            font-size: clamp(2rem, 3vw, 3rem);
            letter-spacing: -0.04em;
        }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.capability-card {
    min-height: 300px;
    padding: 38px 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .capability-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 34%);
        opacity: 0;
        transition: 0.25s ease;
    }

    .capability-card:hover {
        transform: translateY(-8px);
    }

        .capability-card:hover::before {
            opacity: 1;
        }

.border-orange {
    border-color: rgba(255, 138, 0, 0.45);
    box-shadow: 0 0 42px rgba(255, 90, 0, 0.12);
}

.border-blue {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 42px rgba(37, 99, 235, 0.12);
}

.border-purple {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 42px rgba(168, 85, 247, 0.12);
}

.capability-icon {
    font-size: 2.1rem;
    margin-bottom: 30px;
}

.icon-orange {
    color: #ff7a18;
}

.icon-blue {
    color: #3b82f6;
}

.icon-purple {
    color: #c084fc;
}

.capability-card h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.13;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.capability-card p {
    position: relative;
    z-index: 2;
    color: #b8c7da;
    line-height: 1.65;
    margin: 0;
}

html[data-theme="light"] .capabilities-section {
    background: linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .capability-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .capability-card h3 {
        color: #0f172a;
    }

    html[data-theme="light"] .capability-card p {
        color: #64748b;
    }

html[data-theme="light"] .border-orange {
    border-color: rgba(255, 138, 0, 0.35);
    box-shadow: 0 10px 32px rgba(255, 138, 0, 0.10);
}

html[data-theme="light"] .border-blue {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.08);
}

html[data-theme="light"] .border-purple {
    border-color: rgba(168, 85, 247, 0.28);
    box-shadow: 0 10px 32px rgba(168, 85, 247, 0.08);
}*/

/* =========================================================
   FEATURED WORK
   ========================================================= */

/*.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work-card {
    overflow: hidden;
    transition: 0.25s ease;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

    .work-card:hover {
        transform: translateY(-8px);
        border-color: rgba(247, 37, 133, 0.4);
    }

.work-image {
    height: 230px;
    display: grid;
    place-items: center;
    font-size: 4rem;
    color: white;
}

.gradient-one {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 22%), linear-gradient(135deg, #ff8a00, #f72585);
}

.gradient-two {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 22%), linear-gradient(135deg, #6d28d9, #00d9ff);
}

.gradient-three {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 22%), linear-gradient(135deg, #111827, #ff8a00, #00d9ff);
}
.gradient-four {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 22%), linear-gradient(135deg, #00d9ff, #2563eb, #6d28d9);
}
.gradient-five {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 22%), linear-gradient(135deg, #22c55e, #14b8a6, #00d9ff);
}
.gradient-six {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 22%), linear-gradient(135deg, #7c3aed, #f72585, #ff8a00);
}

.work-body {
    padding: 22px;
}

    .work-body span {
        color: var(--cyan);
        font-size: 0.8rem;
        font-weight: 900;
        text-transform: uppercase;
    }

.work-card h3 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.work-card p {
    color: var(--muted);
}

html[data-theme="light"] .work-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .work-card h3 {
        color: #0f172a;
    }

    html[data-theme="light"] .work-card p {
        color: #64748b;
    }*/

/* =========================================================
   ABOUT / EXPERT
   ========================================================= */

/*.expert-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.expert-avatar {
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background: var(--gradient);
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 950;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.22);
}

.expert-card h3 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.expert-card p {
    color: var(--muted);
}

.expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

    .expert-tags span {
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 8px 12px;
        color: rgba(255, 255, 255, 0.78);
        background: rgba(255,255,255,0.045);
    }

html[data-theme="light"] .expert-card {
    background: radial-gradient(circle at 12% 20%, rgba(0, 217, 255, 0.08), transparent 28%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .expert-card h3 {
        color: #0f172a;
    }

    html[data-theme="light"] .expert-card p {
        color: #64748b;
    }

html[data-theme="light"] .expert-tags span {
    color: #334155;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .expert-avatar {
    color: #0f172a;
    box-shadow: 0 18px 46px rgba(0, 217, 255, 0.16);
}*/

/* =========================================================
   CONTACT
   ========================================================= */

/*.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

    .contact-grid h2 {
        font-size: clamp(2rem, 4vw, 3.4rem);
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .contact-grid p {
        color: var(--muted);
        max-width: 520px;
    }

.contact-form {
    padding: 28px;
    display: grid;
    gap: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        border: 1px solid var(--border);
        background: rgba(255,255,255,0.055);
        color: white;
        border-radius: 16px;
        padding: 15px 16px;
        outline: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.42);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: rgba(0, 217, 255, 0.55);
            box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
        }

html[data-theme="light"] .contact-section {
    background: radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.08), transparent 26%), radial-gradient(circle at 85% 30%, rgba(0, 217, 255, 0.09), transparent 28%), #f8fafc;
}

html[data-theme="light"] .contact-grid h2 {
    color: #0f172a;
}

html[data-theme="light"] .contact-grid p {
    color: #64748b;
}

html[data-theme="light"] .contact-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .contact-form input,
    html[data-theme="light"] .contact-form textarea {
        background: rgba(255, 255, 255, 0.96);
        color: #0f172a;
        border: 1px solid rgba(15, 23, 42, 0.10);
    }

        html[data-theme="light"] .contact-form input::placeholder,
        html[data-theme="light"] .contact-form textarea::placeholder {
            color: #94a3b8;
        }*/

/* =========================================================
   FOOTER
   ========================================================= */

/*.site-footer {
    border-top: 1px solid var(--border);
    padding: 52px 0 28px;
    background: #020617;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 28px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer h6 {
    color: white;
    font-weight: 900;
    margin-bottom: 16px;
}

.site-footer a {
    display: block;
    margin-bottom: 9px;
}

    .site-footer a:hover {
        color: white;
    }

.socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

    .socials a {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid var(--border);
        color: white;
        transition: 0.25s ease;
    }

        .socials a:hover {
            border-color: rgba(0, 217, 255, 0.6);
            box-shadow: 0 0 24px rgba(0, 217, 255, 0.22);
        }

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.88rem;
}

html[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.06);
}

    html[data-theme="light"] .site-footer h6 {
        color: #0f172a;
    }

    html[data-theme="light"] .site-footer p,
    html[data-theme="light"] .site-footer a,
    html[data-theme="light"] .footer-bottom {
        color: #64748b;
    }

html[data-theme="light"] .socials a {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.8);
}*/

/* =========================================================
   RESPONSIVE
   ========================================================= */

/*@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card-full {
        min-height: 560px;
    }
}

@media (max-width: 991px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-shell {
        min-height: 86px;
        padding: 12px 16px;
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 180px;
    }

    .main-nav-wrap {
        display: block !important;
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .nav-actions {
        justify-content: center;
    }

    .nav-cta {
        min-width: 170px;
    }

    .hero-section,
    .hero-full {
        padding-top: 120px;
    }

    .hero-content {
        padding: 42px;
    }

    .technical-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expert-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expert-avatar {
        margin: 0 auto;
    }

    .expert-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tech-stack-showcase {
        padding: 20px;
    }

    .tech-stack-header {
        display: block;
    }

        .tech-stack-header p {
            margin-top: 8px;
        }

    .tech-pill {
        min-width: 165px;
        height: 68px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 155px;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-card,
    .hero-card-full {
        min-height: auto;
    }

        .hero-card-full .hero-content {
            padding: 70px 0;
        }

    .hero-content {
        padding: 32px 24px;
    }

        .hero-content h1 {
            letter-spacing: -0.04em;
        }

    .section {
        padding: 62px 0;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: auto;
    }

    .technical-section {
        padding: 70px 0;
    }

    .code-card pre {
        font-size: 0.82rem;
        padding: 24px 18px;
    }

    .code-metrics {
        grid-template-columns: 1fr;
    }

    html[data-theme="light"] .code-metrics div + div {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }
}
.language-switch {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
}

    .language-switch a {
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .language-switch a:hover {
            color: #ffffff;
        }

    .language-switch span {
        color: rgba(255, 255, 255, 0.28);
        font-weight: 800;
    }

html[data-theme="light"] .language-switch {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .language-switch a {
        color: rgba(15, 23, 42, 0.72);
    }

        html[data-theme="light"] .language-switch a:hover {
            color: #0f172a;
        }

    html[data-theme="light"] .language-switch span {
        color: rgba(15, 23, 42, 0.28);
    }
.newsletter-box {
    margin-top: 24px;
    padding: 22px;
    max-width: 520px;
    border-radius: 26px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.newsletter-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

    .newsletter-content span::before {
        content: "\F32F";
        font-family: "bootstrap-icons";
        color: var(--cyan);
        font-size: 1rem;
    }

.newsletter-content p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 7, 18, 0.52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

    .newsletter-form input {
        flex: 1;
        min-width: 0;
        height: 46px;
        border: 0;
        outline: none;
        color: #ffffff;
        background: transparent;
        padding: 0 16px;
        font-size: 0.92rem;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.42);
        }

    .newsletter-form button {
        height: 46px;
        border: 0;
        border-radius: 999px;
        padding: 0 18px;
        color: #ffffff;
        font-weight: 900;
        background: var(--gradient);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        transition: 0.25s ease;
        box-shadow: 0 0 24px rgba(247, 37, 133, 0.22);
    }

        .newsletter-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 34px rgba(0, 217, 255, 0.28);
        }

        .newsletter-form button i {
            font-size: 0.95rem;
        }

html[data-theme="light"] .newsletter-box {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.09), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.07), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .newsletter-content span {
    color: #0f172a;
}

html[data-theme="light"] .newsletter-content p {
    color: #64748b;
}

html[data-theme="light"] .newsletter-form {
    background: rgba(255,255,255,0.82);
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .newsletter-form input {
        color: #0f172a;
    }

        html[data-theme="light"] .newsletter-form input::placeholder {
            color: #94a3b8;
        }

@media (max-width: 640px) {
    .newsletter-form {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

        .newsletter-form button {
            justify-content: center;
        }
}*/
/* =========================================================
   PREMIUM FOOTER
   ========================================================= */

/*.premium-footer {
    position: relative;
    padding: 90px 0 34px;
    background: radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.12), transparent 26%), radial-gradient(circle at 82% 10%, rgba(0, 217, 255, 0.10), transparent 28%), linear-gradient(180deg, #050816, #020617);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

    .premium-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: 0.20;
        pointer-events: none;
    }

.footer-panel {
    position: relative;
    z-index: 2;
    border-radius: 34px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.08), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.030));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.footer-top {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-area {
    max-width: 560px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
}

.footer-brand-area p {
    max-width: 520px;
    margin: 0;
    color: #b8c7da;
    line-height: 1.75;
    font-size: 0.96rem;
}

.newsletter-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 32%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.090), rgba(255,255,255,0.040));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.newsletter-text span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .newsletter-text span i {
        color: var(--cyan);
        font-size: 1rem;
    }

.newsletter-text p {
    max-width: 560px;
    margin: 0 0 18px;
    color: #b8c7da;
    font-size: 0.95rem;
    line-height: 1.65;
}

.newsletter-form {
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 7, 18, 0.55);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

    .newsletter-form input {
        flex: 1;
        min-width: 0;
        height: 48px;
        border: 0;
        outline: none;
        color: #ffffff;
        background: transparent;
        padding: 0 18px;
        font-size: 0.94rem;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.44);
        }

    .newsletter-form button {
        height: 48px;
        border: 0;
        border-radius: 999px;
        padding: 0 22px;
        color: #ffffff;
        font-weight: 950;
        background: var(--gradient);
        display: inline-flex;
        align-items: center;
        gap: 9px;
        white-space: nowrap;
        transition: 0.25s ease;
        box-shadow: 0 0 26px rgba(247, 37, 133, 0.26);
    }

        .newsletter-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 38px rgba(0, 217, 255, 0.30);
        }

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 28px;
    padding: 34px 0;
}

.footer-column,
.footer-contact-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.030);
}

    .footer-column h6,
    .footer-contact-card h6 {
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .footer-column a {
        display: flex;
        width: fit-content;
        color: #9ca3af;
        font-size: 0.94rem;
        margin-bottom: 12px;
        transition: 0.25s ease;
    }

        .footer-column a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

.footer-email {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #b8c7da !important;
    margin-bottom: 20px !important;
    word-break: break-word;
}

    .footer-email i {
        color: var(--cyan);
    }

.socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

    .socials a {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        color: #ffffff;
        background: rgba(255,255,255,0.04);
        transition: 0.25s ease;
    }

        .socials a:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 217, 255, 0.55);
            box-shadow: 0 0 26px rgba(0, 217, 255, 0.22);
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    font-size: 0.9rem;
}*/

/*.back-to-top {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.25s ease;
}

    .back-to-top:hover {
        color: #ffffff;
        transform: translateY(-3px);
        border-color: rgba(0, 217, 255, 0.50);
        box-shadow: 0 0 24px rgba(0, 217, 255, 0.20);
    }*/
/*.back-to-top {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 30%), var(--gradient);
    border: 0;
    box-shadow: 0 0 22px rgba(0, 217, 255, 0.22), 0 12px 30px rgba(0, 0, 0, 0.28);
    transition: 0.25s ease;
    text-decoration: none;
}

    .back-to-top i {
        font-size: 1.15rem;
        line-height: 1;
    }

    .back-to-top:hover {
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 0 32px rgba(247, 37, 133, 0.34), 0 16px 38px rgba(0, 0, 0, 0.34);
    }*/
/*.back-to-top {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff !important;
    text-decoration: none;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 32%), linear-gradient(135deg, #ff8a00, #f72585, #6d28d9, #00d9ff);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 26px rgba(0, 217, 255, 0.22), 0 14px 34px rgba(0, 0, 0, 0.32);
    transition: 0.25s ease;
}

    .back-to-top i {
        color: #ffffff !important;
        font-size: 1.35rem;
        font-weight: 900;
        line-height: 1;
        display: block;
    }

    .back-to-top:hover {
        color: #ffffff !important;
        transform: translateY(-4px);
        box-shadow: 0 0 36px rgba(247, 37, 133, 0.36), 0 18px 42px rgba(0, 0, 0, 0.36);
    }

html[data-theme="light"] .back-to-top {
    color: #ffffff;
    box-shadow: 0 0 22px rgba(0, 217, 255, 0.18), 0 12px 30px rgba(15, 23, 42, 0.14);
}*/
/*.back-to-top {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff !important;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

    .back-to-top i {
        display: block;
        font-size: 1.25rem;
        line-height: 1;
        margin: 0;
        padding: 0;
        color: #ffffff !important;
        transform: translateY(1px);
    }

    .back-to-top:hover {
        color: #ffffff !important;
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 26px rgba(0, 217, 255, 0.22), 0 18px 45px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    }
html[data-theme="light"] .back-to-top {
    color: #0f172a !important;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

    html[data-theme="light"] .back-to-top i {
        color: #0f172a !important;
    }

    html[data-theme="light"] .back-to-top:hover {
        border-color: rgba(2, 132, 199, 0.35);
        box-shadow: 0 0 24px rgba(0, 217, 255, 0.14), 0 18px 42px rgba(15, 23, 42, 0.14);
    }*/
/*.back-to-top {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

    .back-to-top::before {
        content: "";
        width: 11px;
        height: 11px;
        border-top: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
        transform: translateY(3px) rotate(45deg);
        border-radius: 1px;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 26px rgba(0, 217, 255, 0.22), 0 18px 45px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    }
html[data-theme="light"] .back-to-top {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

    html[data-theme="light"] .back-to-top::before {
        border-color: #0f172a;
    }*/
/* Light theme footer */
/*html[data-theme="light"] .premium-footer {
    background: radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.08), transparent 26%), radial-gradient(circle at 82% 10%, rgba(0, 217, 255, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .footer-panel {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .footer-top,
html[data-theme="light"] .footer-bottom {
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .footer-brand-area p,
html[data-theme="light"] .newsletter-text p,
html[data-theme="light"] .footer-email {
    color: #64748b !important;
}

html[data-theme="light"] .newsletter-card,
html[data-theme="light"] .footer-column,
html[data-theme="light"] .footer-contact-card {
    background: rgba(255,255,255,0.76);
    border-color: rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .newsletter-text span,
    html[data-theme="light"] .footer-column h6,
    html[data-theme="light"] .footer-contact-card h6 {
        color: #0f172a;
    }

html[data-theme="light"] .newsletter-form {
    background: rgba(255,255,255,0.86);
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .newsletter-form input {
        color: #0f172a;
    }

        html[data-theme="light"] .newsletter-form input::placeholder {
            color: #94a3b8;
        }

html[data-theme="light"] .footer-column a,
html[data-theme="light"] .footer-bottom {
    color: #64748b;
}

    html[data-theme="light"] .footer-column a:hover {
        color: #0f172a;
    }

html[data-theme="light"] .socials a,
html[data-theme="light"] .back-to-top {
    color: #0f172a;
    background: rgba(255,255,255,0.76);
    border-color: rgba(15, 23, 42, 0.10);
}*/

/* Responsive footer */
/*@media (max-width: 991px) {
    .footer-top,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-main {
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .premium-footer {
        padding: 64px 0 28px;
    }

    .footer-panel {
        padding: 22px;
        border-radius: 26px;
    }

    .newsletter-form {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

        .newsletter-form button {
            justify-content: center;
        }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.footer-fluid {
    width: 100%;
    padding: 0;
}

.footer-panel {
    width: 100%;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}*/

/* Keep the footer content nicely centered inside the full-width background */
/*.footer-top,
.footer-main,
.footer-bottom {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-top,
.footer-main,
.footer-bottom {
    padding-left: 48px;
    padding-right: 48px;
}
@media (max-width: 640px) {
    .footer-top,
    .footer-main,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    font-size: 0.9rem;
}

    .footer-bottom span {
        opacity: 0.86;
    }
html[data-theme="light"] .back-to-top {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

    html[data-theme="light"] .back-to-top::before {
        border-color: #0f172a;
    }*/

/* =========================================================
   PREMIUM FOOTER
   ========================================================= */

/*.premium-footer {
    position: relative;
    padding: 90px 0 34px;
    background: radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.12), transparent 26%), radial-gradient(circle at 82% 10%, rgba(0, 217, 255, 0.10), transparent 28%), linear-gradient(180deg, #050816, #020617);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

    .premium-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: 0.20;
        pointer-events: none;
    }

.footer-fluid {
    width: 100%;
    padding: 0;
}

.footer-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding: 34px 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 0;
    border-right: 0;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.08), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.030));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.footer-top,
.footer-main,
.footer-bottom {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-area {
    max-width: 560px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
}

.footer-brand-area p {
    max-width: 520px;
    margin: 0;
    color: #b8c7da;
    line-height: 1.75;
    font-size: 0.96rem;
}

.newsletter-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 32%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.090), rgba(255,255,255,0.040));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.newsletter-text span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .newsletter-text span i {
        color: var(--cyan);
        font-size: 1rem;
    }

.newsletter-text p {
    max-width: 560px;
    margin: 0 0 18px;
    color: #b8c7da;
    font-size: 0.95rem;
    line-height: 1.65;
}

.newsletter-form {
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 7, 18, 0.55);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

    .newsletter-form input {
        flex: 1;
        min-width: 0;
        height: 48px;
        border: 0;
        outline: none;
        color: #ffffff;
        background: transparent;
        padding: 0 18px;
        font-size: 0.94rem;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.44);
        }

    .newsletter-form button {
        height: 48px;
        border: 0;
        border-radius: 999px;
        padding: 0 22px;
        color: #ffffff;
        font-weight: 950;
        background: var(--gradient);
        display: inline-flex;
        align-items: center;
        gap: 9px;
        white-space: nowrap;
        transition: 0.25s ease;
        box-shadow: 0 0 26px rgba(247, 37, 133, 0.26);
    }

        .newsletter-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 38px rgba(0, 217, 255, 0.30);
        }

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.footer-column,
.footer-contact-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.030);
}

    .footer-column h6,
    .footer-contact-card h6 {
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .footer-column a {
        display: flex;
        width: fit-content;
        color: #9ca3af;
        font-size: 0.94rem;
        margin-bottom: 12px;
        transition: 0.25s ease;
    }

        .footer-column a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

.footer-email {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #b8c7da !important;
    margin-bottom: 20px !important;
    word-break: break-word;
}

    .footer-email i {
        color: var(--cyan);
    }

.socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

    .socials a {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        color: #ffffff;
        background: rgba(255,255,255,0.04);
        transition: 0.25s ease;
    }

        .socials a:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 217, 255, 0.55);
            box-shadow: 0 0 26px rgba(0, 217, 255, 0.22);
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    font-size: 0.9rem;
}

    .footer-bottom span {
        opacity: 0.86;
    }

.back-to-top {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

    .back-to-top::before {
        content: "";
        width: 11px;
        height: 11px;
        border-top: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
        transform: translateY(3px) rotate(45deg);
        border-radius: 1px;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 26px rgba(0, 217, 255, 0.22), 0 18px 45px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    }*/

/* Light theme footer */
/*html[data-theme="light"] .premium-footer {
    background: radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.08), transparent 26%), radial-gradient(circle at 82% 10%, rgba(0, 217, 255, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .footer-panel {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .footer-top,
html[data-theme="light"] .footer-bottom {
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .footer-brand-area p,
html[data-theme="light"] .newsletter-text p,
html[data-theme="light"] .footer-email {
    color: #64748b !important;
}

html[data-theme="light"] .newsletter-card,
html[data-theme="light"] .footer-column,
html[data-theme="light"] .footer-contact-card {
    background: rgba(255,255,255,0.76);
    border-color: rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .newsletter-text span,
    html[data-theme="light"] .footer-column h6,
    html[data-theme="light"] .footer-contact-card h6 {
        color: #0f172a;
    }

html[data-theme="light"] .newsletter-form {
    background: rgba(255,255,255,0.86);
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .newsletter-form input {
        color: #0f172a;
    }

        html[data-theme="light"] .newsletter-form input::placeholder {
            color: #94a3b8;
        }

html[data-theme="light"] .footer-column a,
html[data-theme="light"] .footer-bottom {
    color: #64748b;
}

    html[data-theme="light"] .footer-column a:hover {
        color: #0f172a;
    }

html[data-theme="light"] .socials a {
    color: #0f172a;
    background: rgba(255,255,255,0.76);
    border-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .back-to-top {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

    html[data-theme="light"] .back-to-top::before {
        border-color: #0f172a;
    }*/

/* =========================================================
   RESPONSIVE
   ========================================================= */

/*@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card-full {
        min-height: 560px;
    }
}

@media (max-width: 991px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-shell {
        min-height: 86px;
        padding: 12px 16px;
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 180px;
    }

    .main-nav-wrap {
        display: block !important;
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .nav-actions {
        justify-content: center;
    }

    .nav-cta {
        min-width: 170px;
    }

    .hero-section,
    .hero-full {
        padding-top: 120px;
    }

    .hero-content {
        padding: 42px;
    }

    .technical-grid,
    .contact-grid,
    .footer-top,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expert-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expert-avatar {
        margin: 0 auto;
    }

    .expert-tags {
        justify-content: center;
    }

    .footer-main {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .tech-stack-showcase {
        padding: 20px;
    }

    .tech-stack-header {
        display: block;
    }

        .tech-stack-header p {
            margin-top: 8px;
        }

    .tech-pill {
        min-width: 165px;
        height: 68px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 155px;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-card,
    .hero-card-full {
        min-height: auto;
    }

        .hero-card-full .hero-content {
            padding: 70px 0;
        }

    .hero-content {
        padding: 32px 24px;
    }

        .hero-content h1 {
            letter-spacing: -0.04em;
        }

    .section {
        padding: 62px 0;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: auto;
    }

    .technical-section {
        padding: 70px 0;
    }

    .code-card pre {
        font-size: 0.82rem;
        padding: 24px 18px;
    }

    .code-metrics {
        grid-template-columns: 1fr;
    }

    html[data-theme="light"] .code-metrics div + div {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .premium-footer {
        padding: 64px 0 28px;
    }

    .footer-panel {
        padding: 22px 0;
    }

    .footer-top,
    .footer-main,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-form {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

        .newsletter-form button {
            justify-content: center;
        }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}*/
/* =========================================================
   CONTACT RESULT MESSAGES
   ========================================================= */

/*.contact-result {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 4px;
    animation: contactMessageIn 0.35s ease both;
}

.contact-result-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 1.15rem;
}

.contact-result strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 950;
    margin-bottom: 4px;
}

.contact-result p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-result-success {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 34%), linear-gradient(180deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.055));
    border: 1px solid rgba(34, 197, 94, 0.28);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.08);
}

    .contact-result-success .contact-result-icon {
        color: #bbf7d0;
        background: rgba(34, 197, 94, 0.16);
        border: 1px solid rgba(34, 197, 94, 0.28);
    }

    .contact-result-success p {
        color: #bbf7d0;
    }

.contact-result-error {
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.18), transparent 34%), linear-gradient(180deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.055));
    border: 1px solid rgba(239, 68, 68, 0.28);
    box-shadow: 0 18px 44px rgba(239, 68, 68, 0.08);
}

    .contact-result-error .contact-result-icon {
        color: #fecaca;
        background: rgba(239, 68, 68, 0.16);
        border: 1px solid rgba(239, 68, 68, 0.28);
    }

    .contact-result-error p {
        color: #fecaca;
    }

@keyframes contactMessageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Light theme */
/*html[data-theme="light"] .contact-result strong {
    color: #0f172a;
}

html[data-theme="light"] .contact-result-success {
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.24);
}

    html[data-theme="light"] .contact-result-success p {
        color: #166534;
    }

html[data-theme="light"] .contact-result-error {
    background: rgba(239, 68, 68, 0.10);
    border-color: rgba(239, 68, 68, 0.24);
}

    html[data-theme="light"] .contact-result-error p {
        color: #991b1b;
    }*/

/* =========================================================
   CONTACT BUTTON LOADING STATE
   ========================================================= */

/*.contact-submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .submit-loading i {
        animation: spinIcon 0.9s linear infinite;
    }

body.form-submitting .contact-submit-btn .submit-text {
    display: none;
}

body.form-submitting .contact-submit-btn .submit-loading {
    display: inline-flex;
}

body.form-submitting .contact-submit-btn {
    pointer-events: none;
    opacity: 0.88;
}

@keyframes spinIcon {
    to {
        transform: rotate(360deg);
    }
}*/

/* =========================================================
   FULL PAGE LOGO LOADER
   ========================================================= */

/*.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.10), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.10), transparent 30%), linear-gradient(180deg, #050816, #020617);
}

body.form-submitting .site-loader {
    display: flex;
}

.site-loader-card {
    position: relative;
    width: min(360px, calc(100% - 40px));
    padding: 34px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.040));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.08);
}

.site-loader-logo {
    width: 150px;
    display: block;
    margin: 0 auto 22px;
}

.site-loader-ring {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--cyan);
    border-right-color: var(--pink);
    animation: loaderSpin 0.9s linear infinite;
}

.site-loader-card p {
    margin: 0;
    color: #b8c7da;
    font-weight: 800;
    letter-spacing: -0.01em;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

html[data-theme="light"] .site-loader {
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.08), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.08), transparent 30%), linear-gradient(180deg, #f8fafc, #eef4f8);
}

html[data-theme="light"] .site-loader-card {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

    html[data-theme="light"] .site-loader-card p {
        color: #64748b;
    }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 170px;
}

section[id] {
    scroll-margin-top: 170px;
}

.contact-section {
    scroll-margin-top: 190px;
}
@media (max-width: 991px) {
    html {
        scroll-padding-top: 130px;
    }

    section[id],
    .contact-section {
        scroll-margin-top: 130px;
    }
}
.newsletter-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin: 0 0 16px;
    border-radius: 18px;
    animation: contactMessageIn 0.35s ease both;
}

    .newsletter-result i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        font-size: 1rem;
    }

    .newsletter-result strong {
        display: block;
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 950;
        margin-bottom: 3px;
    }

    .newsletter-result p {
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.5;
    }

.newsletter-result-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

    .newsletter-result-success i {
        color: #bbf7d0;
        background: rgba(34, 197, 94, 0.16);
    }

    .newsletter-result-success p {
        color: #bbf7d0;
    }

.newsletter-result-info {
    background: rgba(0, 217, 255, 0.10);
    border: 1px solid rgba(0, 217, 255, 0.24);
}

    .newsletter-result-info i {
        color: var(--cyan);
        background: rgba(0, 217, 255, 0.12);
    }

    .newsletter-result-info p {
        color: #b8c7da;
    }

.newsletter-result-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

    .newsletter-result-error i {
        color: #fecaca;
        background: rgba(239, 68, 68, 0.16);
    }

    .newsletter-result-error p {
        color: #fecaca;
    }

html[data-theme="light"] .newsletter-result strong {
    color: #0f172a;
}

html[data-theme="light"] .newsletter-result-success p {
    color: #166534;
}

html[data-theme="light"] .newsletter-result-info p {
    color: #0369a1;
}

html[data-theme="light"] .newsletter-result-error p {
    color: #991b1b;
}
.newsletter-spin {
    animation: spinIcon 0.9s linear infinite;
}

@keyframes spinIcon {
    to {
        transform: rotate(360deg);
    }
}*/
/* =========================================================
   CONVERSION SECTIONS
   ========================================================= */

/*.solutions-section {
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card,
.why-benefit,
.process-step,
.faq-item,
.appointment-cta {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.solution-card {
    min-height: 260px;
    padding: 28px;
    border-radius: 24px;
    transition: 0.25s ease;
}

    .solution-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 217, 255, 0.38);
    }

.solution-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 22px;
    color: var(--cyan);
    background: rgba(0, 217, 255, 0.10);
    font-size: 1.45rem;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.08);
}

.solution-card h3,
.process-step h3,
.faq-item h3 {
    color: #ffffff;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.solution-card p,
.process-step p,
.faq-item p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}*/

/* Why choose */
/*.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.why-content h2 {
    max-width: 620px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

.why-content p {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.why-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.why-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-benefit {
    min-height: 170px;
    padding: 22px;
    border-radius: 22px;
    transition: 0.25s ease;
}

    .why-benefit:hover {
        transform: translateY(-6px);
        border-color: rgba(247, 37, 133, 0.34);
    }

    .why-benefit i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        margin-bottom: 18px;
        color: var(--orange);
        background: rgba(255, 138, 0, 0.12);
        font-size: 1.2rem;
    }

    .why-benefit strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 8px;
    }

    .why-benefit span {
        display: block;
        color: var(--muted);
        line-height: 1.6;
        font-size: 0.92rem;
    }*/

/* Process */
/*.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step {
    position: relative;
    min-height: 230px;
    padding: 28px;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.25s ease;
}

    .process-step::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%);
        opacity: 0;
        transition: 0.25s ease;
    }

    .process-step:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 217, 255, 0.35);
    }

        .process-step:hover::before {
            opacity: 1;
        }

    .process-step span {
        position: relative;
        z-index: 2;
        display: inline-flex;
        margin-bottom: 18px;
        font-size: 0.8rem;
        font-weight: 950;
        letter-spacing: 0.18em;
        color: var(--cyan);
    }

    .process-step h3,
    .process-step p {
        position: relative;
        z-index: 2;
    }*/

/* FAQ */
/*.faq-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.faq-item {
    padding: 26px;
    border-radius: 24px;
    transition: 0.25s ease;
}

    .faq-item:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 138, 0, 0.35);
    }*/

/* Appointment CTA */
/*.appointment-cta-section {
    padding-top: 40px;
}

.appointment-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.040));
}

    .appointment-cta h2 {
        color: #ffffff;
        font-size: clamp(1.8rem, 3vw, 3rem);
        font-weight: 950;
        letter-spacing: -0.05em;
        margin-bottom: 10px;
    }

    .appointment-cta p:not(.eyebrow) {
        color: var(--muted);
        max-width: 680px;
        margin: 0;
        line-height: 1.7;
    }*/

/* Light theme */
/*html[data-theme="light"] .solution-card,
html[data-theme="light"] .why-benefit,
html[data-theme="light"] .process-step,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .appointment-cta {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.88));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .solution-card h3,
    html[data-theme="light"] .why-content h2,
    html[data-theme="light"] .why-benefit strong,
    html[data-theme="light"] .process-step h3,
    html[data-theme="light"] .faq-item h3,
    html[data-theme="light"] .appointment-cta h2 {
        color: #0f172a;
    }

    html[data-theme="light"] .solution-card p,
    html[data-theme="light"] .why-content p,
    html[data-theme="light"] .why-benefit span,
    html[data-theme="light"] .process-step p,
    html[data-theme="light"] .faq-item p,
    html[data-theme="light"] .appointment-cta p:not(.eyebrow) {
        color: #64748b;
    }

html[data-theme="light"] .solution-icon {
    color: #0284c7;
    background: rgba(0, 217, 255, 0.08);
    box-shadow: none;
}*/

/* Responsive */
/*@media (max-width: 991px) {
    .solutions-grid,
    .why-grid,
    .process-timeline,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .why-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .appointment-cta {
        display: grid;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .why-benefits {
        grid-template-columns: 1fr;
    }

    .solution-card,
    .process-step,
    .faq-item,
    .appointment-cta {
        padding: 24px;
    }
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
    height: auto;
    object-fit: contain;
}*/

/* Default */
/*.footer-logo-light {
    display: none;
}*/

/* Dark theme */
/*html[data-theme="dark"] .footer-logo-dark {
    display: block;
}

html[data-theme="dark"] .footer-logo-light {
    display: none;
}*/

/* Light theme */
/*html[data-theme="light"] .footer-logo-dark {
    display: none;
}

html[data-theme="light"] .footer-logo-light {
    display: block;
}*/
/* =========================================================
   CONSULTATION MODAL
   ========================================================= */

/*.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .consultation-modal.is-open {
        display: flex;
    }

.consultation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.14), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.14), transparent 30%), rgba(3, 7, 18, 0.86);
    backdrop-filter: blur(16px);
}

.consultation-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.090), rgba(255,255,255,0.040));
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.consultation-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    background: rgba(255,255,255,0.055);
    transition: 0.25s ease;
}

    .consultation-close:hover {
        transform: rotate(90deg);
        border-color: rgba(0, 217, 255, 0.45);
    }

.consultation-modal-header {
    max-width: 720px;
    margin-bottom: 24px;
}

    .consultation-modal-header h2 {
        color: #ffffff;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 950;
        letter-spacing: -0.06em;
        margin-bottom: 12px;
    }

    .consultation-modal-header p:not(.eyebrow) {
        color: #b8c7da;
        line-height: 1.7;
        margin: 0;
    }

.consultation-form {
    display: grid;
    gap: 14px;
}

.consultation-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 7, 18, 0.42);
    color: #ffffff;
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
}

.consultation-form select {
    cursor: pointer;
}

.consultation-form option {
    color: #0f172a;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: rgba(0, 217, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
}

.consultation-submit-btn {
    width: 100%;
}

.consultation-submit-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

    .consultation-submit-loading i {
        animation: spinIcon 0.9s linear infinite;
    }

.consultation-submit-btn.is-loading .consultation-submit-text {
    display: none;
}

.consultation-submit-btn.is-loading .consultation-submit-loading {
    display: inline-flex;
}

.consultation-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 18px;
}

    .consultation-result i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: grid;
        place-items: center;
        border-radius: 999px;
    }

    .consultation-result strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 4px;
    }

    .consultation-result p {
        margin: 0;
        line-height: 1.5;
    }

.consultation-result-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

    .consultation-result-success i,
    .consultation-result-success p {
        color: #bbf7d0;
    }

.consultation-result-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

    .consultation-result-error i,
    .consultation-result-error p {
        color: #fecaca;
    }

body.consultation-modal-open {
    overflow: hidden;
}*/

/* Light theme */
/*html[data-theme="light"] .consultation-modal-backdrop {
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.10), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.10), transparent 30%), rgba(248, 250, 252, 0.86);
}

html[data-theme="light"] .consultation-modal-dialog {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .consultation-modal-header h2,
html[data-theme="light"] .consultation-result strong {
    color: #0f172a;
}

html[data-theme="light"] .consultation-modal-header p:not(.eyebrow) {
    color: #64748b;
}

html[data-theme="light"] .consultation-form input,
html[data-theme="light"] .consultation-form select,
html[data-theme="light"] .consultation-form textarea {
    background: rgba(255,255,255,0.86);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .consultation-form input::placeholder,
    html[data-theme="light"] .consultation-form textarea::placeholder {
        color: #94a3b8;
    }

html[data-theme="light"] .consultation-close {
    color: #0f172a;
    background: rgba(255,255,255,0.86);
    border-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .consultation-result-success p {
    color: #166534;
}

html[data-theme="light"] .consultation-result-error p {
    color: #991b1b;
}

@media (max-width: 768px) {
    .consultation-form-grid {
        grid-template-columns: 1fr;
    }

    .consultation-modal-dialog {
        padding: 24px;
        border-radius: 24px;
    }
}*/
:root {
    --bg: #030712;
    --bg-soft: #07111f;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.12);
    --text: #f8fafc;
    --muted: #9ca3af;
    --orange: #ff8a00;
    --pink: #f72585;
    --purple: #6d28d9;
    --blue: #2563eb;
    --cyan: #00d9ff;
    --gradient: linear-gradient(90deg, #ff8a00, #f72585, #6d28d9, #00d9ff);
}

html[data-theme="light"] {
    --bg: #f8fafc;
    --bg-soft: #eef4f8;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --border: rgba(15, 23, 42, 0.10);
    --text: #0f172a;
    --muted: #64748b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 20% 10%, rgba(255, 138, 0, 0.14), transparent 28%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.14), transparent 30%), radial-gradient(circle at 50% 90%, rgba(109, 40, 217, 0.14), transparent 28%), var(--bg);
}

html[data-theme="light"] body {
    background: radial-gradient(circle at 20% 10%, rgba(255, 138, 0, 0.10), transparent 28%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.10), transparent 30%), radial-gradient(circle at 50% 90%, rgba(109, 40, 217, 0.08), transparent 28%), #f8fafc;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0 18px;
    background: transparent;
    border-bottom: 0;
    transition: 0.3s ease;
}

    .site-header.scrolled {
        top: 10px;
    }

.ak-navbar {
    min-height: auto;
    padding: 0;
}

.nav-shell {
    min-height: 96px;
    border-radius: 30px;
    padding: 12px 22px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.site-header:not(.scrolled) .nav-shell {
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header.scrolled .nav-shell {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

    .site-header.scrolled .nav-shell::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 90deg, rgba(255, 138, 0, 0.38), rgba(247, 37, 133, 0.25), rgba(0, 217, 255, 0.38) );
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

html[data-theme="light"] .site-header:not(.scrolled) .nav-shell,
html[data-theme="light"] .site-header.scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.navbar-brand {
    position: relative;
    z-index: 3;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 230px;
    height: auto;
    max-height: none;
    object-fit: contain;
    transition: 0.25s ease;
}

.site-header.scrolled .brand-logo {
    width: 200px;
}

.brand-logo-light {
    display: none;
}

html[data-theme="dark"] .brand-logo-dark {
    display: block;
}

html[data-theme="dark"] .brand-logo-light {
    display: none;
}

html[data-theme="light"] .brand-logo-dark {
    display: none;
}

html[data-theme="light"] .brand-logo-light {
    display: block;
}

.main-nav-wrap {
    position: relative;
    z-index: 3;
}

@media (min-width: 992px) {
    .main-nav-wrap {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .main-nav-wrap {
        display: none !important;
        width: 100%;
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .main-nav-wrap.show {
            display: block !important;
        }

        .main-nav-wrap.collapsing {
            display: block !important;
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }

    .nav-menu {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
        border-radius: 22px;
        margin-bottom: 14px;
        padding: 12px;
    }

    .nav-link {
        display: block;
        text-align: center;
        padding: 0.85rem 1rem !important;
    }

    .nav-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-cta {
        min-width: 170px;
    }
}

.nav-menu {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header:not(.scrolled) .nav-menu {
    background: rgba(3, 7, 18, 0.32);
    backdrop-filter: blur(12px);
}

html[data-theme="light"] .nav-menu,
html[data-theme="light"] .site-header:not(.scrolled) .nav-menu {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}

.nav-link {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.75rem 1rem !important;
    border-radius: 999px;
    transition: 0.25s ease;
}

html[data-theme="light"] .nav-link {
    color: rgba(15, 23, 42, 0.72) !important;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.18), transparent 65%), linear-gradient(90deg, rgba(255, 138, 0, 0.12), rgba(247, 37, 133, 0.12), rgba(0, 217, 255, 0.12));
    opacity: 0;
    transform: scale(0.84);
    transition: 0.25s ease;
}

html[data-theme="light"] .nav-link::before {
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.16), transparent 65%), linear-gradient(90deg, rgba(255, 138, 0, 0.10), rgba(247, 37, 133, 0.10), rgba(0, 217, 255, 0.10));
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active {
    color: #0f172a !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-cta {
    min-width: 130px;
    text-align: center;
    box-shadow: 0 0 34px rgba(247, 37, 133, 0.22);
}

.theme-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.25s ease;
}

    .theme-toggle:hover {
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 24px rgba(0, 217, 255, 0.16);
        transform: translateY(-2px);
    }

    .theme-toggle i {
        font-size: 1.05rem;
    }

.theme-icon-light {
    display: none;
}

html[data-theme="light"] .theme-toggle {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .theme-icon-dark {
    display: none;
}

html[data-theme="light"] .theme-icon-light {
    display: inline-block;
}

.custom-toggler {
    position: relative;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
}

    .custom-toggler:focus {
        box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
    }

.btn-gradient {
    border: 0;
    color: white;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    background: var(--gradient);
    background-size: 180% 180%;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.25);
    transition: 0.25s ease;
}

    .btn-gradient:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 0 40px rgba(247, 37, 133, 0.36);
        background-position: 100% 50%;
    }

.btn-outline-glow {
    border: 1px solid var(--border);
    color: white;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
    transition: 0.25s ease;
}

    .btn-outline-glow:hover {
        color: white;
        transform: translateY(-2px);
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 0 24px rgba(0, 217, 255, 0.18);
    }

html[data-theme="light"] .btn-outline-glow {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

    html[data-theme="light"] .btn-outline-glow:hover {
        color: #0f172a;
        border-color: rgba(2, 132, 199, 0.35);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 14px 34px rgba(2, 132, 199, 0.12);
    }

.hero-section {
    position: relative;
    padding: 190px 0 64px;
    overflow: hidden;
}

.hero-full {
    padding: 170px 0 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -260px;
    right: -180px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.22), transparent 62%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    bottom: -240px;
    left: -160px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.18), transparent 62%);
    pointer-events: none;
}

.hero-card {
    position: relative;
    z-index: 2;
    min-height: 430px;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    /*    background: linear-gradient(90deg, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.52)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;*/
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.52)), url("/images/hero-office-desktop.webp");
    background-position: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.hero-card-full {
    width: 100%;
    min-height: 620px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    display: flex;
    align-items: center;
    /*    background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.54)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop");
    background-size: cover;*/
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.54)), url("/images/hero-office-desktop.webp");
    background-position: center;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 70px;
}

.hero-card-full .hero-content {
    padding: 110px 0;
}

.eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero-content h1 {
    max-width: 920px;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.92;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: -0.06em;
}

    .hero-content h1 span {
        display: block;
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-text {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.1rem;
    margin: 24px 0 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

html[data-theme="light"] .hero-card,
html[data-theme="light"] .hero-card-full {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
    /*    background: linear-gradient(90deg, rgba(248, 250, 252, 0.90), rgba(248, 250, 252, 0.60)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800&auto=format&fit=crop");
    background-size: cover;*/
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.90), rgba(248, 250, 252, 0.60)), url("/images/hero-office-desktop.webp");
    background-position: center;
}

    html[data-theme="light"] .hero-card::before {
        opacity: 0.10;
    }

html[data-theme="light"] .hero-content h1 {
    color: #0f172a;
}

html[data-theme="light"] .hero-text {
    color: #64748b;
}

.tech-stack-showcase {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

    .tech-stack-showcase::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 90deg, rgba(255, 138, 0, 0.45), rgba(247, 37, 133, 0.28), rgba(0, 217, 255, 0.45) );
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.tech-stack-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

    .tech-stack-header span {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 950;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .tech-stack-header p {
        margin: 0;
        color: var(--muted);
        font-size: 0.92rem;
    }

.tech-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: max-content;
    gap: 14px;
    animation: techScroll 34s linear infinite;
}

.tech-marquee:hover .tech-marquee-track {
    animation-play-state: paused;
}

.tech-pill {
    min-width: 185px;
    height: 76px;
    padding: 0 22px;
    border-radius: 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.13), transparent 35%), rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
    white-space: nowrap;
    transition: 0.25s ease;
}

    .tech-pill i {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: var(--cyan);
        background: rgba(0, 217, 255, 0.10);
        font-size: 1.15rem;
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.08);
    }

    .tech-pill span {
        display: inline-block !important;
        font-size: 0.95rem;
        letter-spacing: -0.02em;
    }

    .tech-pill:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.35);
        background: radial-gradient(circle at top left, rgba(255, 138, 0, 0.14), transparent 34%), radial-gradient(circle at bottom right, rgba(0, 217, 255, 0.15), transparent 34%), rgba(255, 255, 255, 0.075);
    }

html[data-theme="light"] .tech-stack-showcase {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .tech-stack-header span {
    color: #0f172a;
}

html[data-theme="light"] .tech-pill {
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 35%), rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

    html[data-theme="light"] .tech-pill i {
        background: rgba(0, 217, 255, 0.08);
        color: #0284c7;
        box-shadow: none;
    }

@keyframes techScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: 84px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

    .section-heading h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 950;
        letter-spacing: -0.04em;
        margin-bottom: 12px;
    }

    .section-heading p {
        color: var(--muted);
    }

html[data-theme="light"] .section-soft {
    background: linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .section-heading p {
    color: var(--text);
}

html[data-theme="light"] .section-heading p {
    color: var(--muted);
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .work-body span {
    color: #0284c7;
}

.technical-section {
    position: relative;
    padding: 105px 0;
    background: radial-gradient(circle at 12% 20%, rgba(255, 138, 0, 0.10), transparent 28%), radial-gradient(circle at 88% 35%, rgba(0, 217, 255, 0.12), transparent 30%), linear-gradient(180deg, #050816, #07111f);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

    .technical-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: 0.22;
        pointer-events: none;
    }

.technical-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.technical-content h2 {
    max-width: 650px;
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

    .technical-content h2 span {
        color: #ff7a18;
    }

.technical-content p {
    max-width: 640px;
    color: #b8c7da;
    line-height: 1.8;
    font-size: 1.04rem;
    margin-bottom: 30px;
}

.technical-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.code-card {
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 70px rgba(0, 217, 255, 0.08);
    overflow: hidden;
}

.code-card-header {
    min-height: 54px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-dots {
    display: flex;
    gap: 8px;
}

    .window-dots span {
        width: 10px;
        height: 10px;
        border-radius: 999px;
    }

        .window-dots span:nth-child(1) {
            background: #ff4d6d;
        }

        .window-dots span:nth-child(2) {
            background: #ff8a00;
        }

        .window-dots span:nth-child(3) {
            background: #00d9ff;
        }

.code-file {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
    font-weight: 800;
}

.code-card pre {
    margin: 0;
    padding: 30px 28px;
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.9;
    white-space: pre-wrap;
}

.code-card code {
    font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
}

.code-purple {
    color: #c084fc;
}

.code-cyan {
    color: #00d9ff;
}

.code-orange {
    color: #ff8a00;
}

.code-muted {
    color: rgba(255, 255, 255, 0.34);
}

.code-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .code-metrics div {
        padding: 24px 16px;
        text-align: center;
    }

    .code-metrics strong {
        display: block;
        color: #00d9ff;
        font-size: 1.45rem;
        font-weight: 950;
        line-height: 1;
    }

    .code-metrics span {
        display: block;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.42);
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.7rem;
        font-weight: 900;
    }

html[data-theme="light"] .technical-section {
    background: radial-gradient(circle at 12% 20%, rgba(255, 138, 0, 0.08), transparent 28%), radial-gradient(circle at 88% 35%, rgba(0, 217, 255, 0.10), transparent 30%), linear-gradient(180deg, #f8fafc, #edf5fa);
    border-color: rgba(15, 23, 42, 0.06);
}

    html[data-theme="light"] .technical-section::before {
        opacity: 0.13;
    }

html[data-theme="light"] .technical-content h2 {
    color: #0f172a;
}

html[data-theme="light"] .technical-content p {
    color: #64748b;
}

html[data-theme="light"] .code-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,245,249,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .code-card-header,
html[data-theme="light"] .code-metrics {
    border-color: rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .code-file,
    html[data-theme="light"] .code-metrics span {
        color: #64748b;
    }

html[data-theme="light"] .code-card pre {
    color: #0f172a;
}

html[data-theme="light"] .code-muted {
    color: #94a3b8;
}

html[data-theme="light"] .code-purple {
    color: #7c3aed;
}

html[data-theme="light"] .code-cyan,
html[data-theme="light"] .code-metrics strong {
    color: #0284c7;
}

html[data-theme="light"] .code-orange {
    color: #ea580c;
}

html[data-theme="light"] .code-metrics div {
    background: rgba(248, 250, 252, 0.65);
}

    html[data-theme="light"] .code-metrics div + div {
        border-left: 1px solid rgba(15, 23, 42, 0.06);
    }

.capabilities-section {
    background: #050505;
    padding-top: 95px;
    padding-bottom: 95px;
}

    .capabilities-section .section-heading {
        margin-bottom: 54px;
    }

        .capabilities-section .section-heading h2 {
            text-transform: uppercase;
            font-size: clamp(2rem, 3vw, 3rem);
            letter-spacing: -0.04em;
        }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.capability-card {
    min-height: 300px;
    padding: 38px 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .capability-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 34%);
        opacity: 0;
        transition: 0.25s ease;
    }

    .capability-card:hover {
        transform: translateY(-8px);
    }

        .capability-card:hover::before {
            opacity: 1;
        }

.border-orange {
    border-color: rgba(255, 138, 0, 0.45);
    box-shadow: 0 0 42px rgba(255, 90, 0, 0.12);
}

.border-blue {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 42px rgba(37, 99, 235, 0.12);
}

.border-purple {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 42px rgba(168, 85, 247, 0.12);
}

.capability-icon {
    font-size: 2.1rem;
    margin-bottom: 30px;
}

.icon-orange {
    color: #ff7a18;
}

.icon-blue {
    color: #3b82f6;
}

.icon-purple {
    color: #c084fc;
}

.capability-card h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.13;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.capability-card p {
    position: relative;
    z-index: 2;
    color: #b8c7da;
    line-height: 1.65;
    margin: 0;
}

html[data-theme="light"] .capabilities-section {
    background: linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .capability-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .capability-card h3 {
        color: #0f172a;
    }

    html[data-theme="light"] .capability-card p {
        color: #64748b;
    }

html[data-theme="light"] .border-orange {
    border-color: rgba(255, 138, 0, 0.35);
    box-shadow: 0 10px 32px rgba(255, 138, 0, 0.10);
}

html[data-theme="light"] .border-blue {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.08);
}

html[data-theme="light"] .border-purple {
    border-color: rgba(168, 85, 247, 0.28);
    box-shadow: 0 10px 32px rgba(168, 85, 247, 0.08);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work-card {
    overflow: hidden;
    transition: 0.25s ease;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

    .work-card:hover {
        transform: translateY(-8px);
        border-color: rgba(247, 37, 133, 0.4);
    }

.work-image {
    height: 230px;
    display: grid;
    place-items: center;
    font-size: 4rem;
    color: white;
}

.gradient-one {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 22%), linear-gradient(135deg, #ff8a00, #f72585);
}

.gradient-two {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 22%), linear-gradient(135deg, #6d28d9, #00d9ff);
}

.gradient-three {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 22%), linear-gradient(135deg, #111827, #ff8a00, #00d9ff);
}

.gradient-four {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 22%), linear-gradient(135deg, #00d9ff, #2563eb, #6d28d9);
}

.gradient-five {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 22%), linear-gradient(135deg, #22c55e, #14b8a6, #00d9ff);
}

.gradient-six {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 22%), linear-gradient(135deg, #7c3aed, #f72585, #ff8a00);
}

.work-body {
    padding: 22px;
}

    .work-body span {
        color: var(--cyan);
        font-size: 0.8rem;
        font-weight: 900;
        text-transform: uppercase;
    }

.work-card h3 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.work-card p {
    color: var(--muted);
}

html[data-theme="light"] .work-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .work-card h3 {
        color: #0f172a;
    }

    html[data-theme="light"] .work-card p {
        color: #64748b;
    }

.expert-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.expert-avatar {
    width: 160px;
    height: 160px;
    border-radius: 28px;
    background: var(--gradient);
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 950;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.22);
}

.expert-card h3 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.expert-card p {
    color: var(--muted);
}

.expert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

    .expert-tags span {
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 8px 12px;
        color: rgba(255, 255, 255, 0.78);
        background: rgba(255,255,255,0.045);
    }

html[data-theme="light"] .expert-card {
    background: radial-gradient(circle at 12% 20%, rgba(0, 217, 255, 0.08), transparent 28%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .expert-card h3 {
        color: #0f172a;
    }

    html[data-theme="light"] .expert-card p {
        color: #64748b;
    }

html[data-theme="light"] .expert-tags span {
    color: #334155;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .expert-avatar {
    color: #0f172a;
    box-shadow: 0 18px 46px rgba(0, 217, 255, 0.16);
}

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

    .contact-grid h2 {
        font-size: clamp(2rem, 4vw, 3.4rem);
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .contact-grid p {
        color: var(--muted);
        max-width: 520px;
    }

.contact-form {
    padding: 28px;
    display: grid;
    gap: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        border: 1px solid var(--border);
        background: rgba(255,255,255,0.055);
        color: white;
        border-radius: 16px;
        padding: 15px 16px;
        outline: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.42);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: rgba(0, 217, 255, 0.55);
            box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
        }

html[data-theme="light"] .contact-section {
    background: radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.08), transparent 26%), radial-gradient(circle at 85% 30%, rgba(0, 217, 255, 0.09), transparent 28%), #f8fafc;
}

html[data-theme="light"] .contact-grid h2 {
    color: #0f172a;
}

html[data-theme="light"] .contact-grid p {
    color: #64748b;
}

html[data-theme="light"] .contact-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .contact-form input,
    html[data-theme="light"] .contact-form textarea {
        background: rgba(255, 255, 255, 0.96);
        color: #0f172a;
        border: 1px solid rgba(15, 23, 42, 0.10);
    }

        html[data-theme="light"] .contact-form input::placeholder,
        html[data-theme="light"] .contact-form textarea::placeholder {
            color: #94a3b8;
        }

.premium-footer {
    position: relative;
    padding: 90px 0 34px;
    background: radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.12), transparent 26%), radial-gradient(circle at 82% 10%, rgba(0, 217, 255, 0.10), transparent 28%), linear-gradient(180deg, #050816, #020617);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

    .premium-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: 0.20;
        pointer-events: none;
    }

.footer-fluid {
    width: 100%;
    padding: 0;
}

.footer-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding: 34px 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 0;
    border-right: 0;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.08), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.030));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.footer-top,
.footer-main,
.footer-bottom {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-area {
    max-width: 560px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
}

.footer-brand-area p {
    max-width: 520px;
    margin: 0;
    color: #b8c7da;
    line-height: 1.75;
    font-size: 0.96rem;
}

.newsletter-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 32%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.090), rgba(255,255,255,0.040));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

.newsletter-text span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .newsletter-text span i {
        color: var(--cyan);
        font-size: 1rem;
    }

.newsletter-text p {
    max-width: 560px;
    margin: 0 0 18px;
    color: #b8c7da;
    font-size: 0.95rem;
    line-height: 1.65;
}

.newsletter-form {
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 7, 18, 0.55);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

    .newsletter-form input {
        flex: 1;
        min-width: 0;
        height: 48px;
        border: 0;
        outline: none;
        color: #ffffff;
        background: transparent;
        padding: 0 18px;
        font-size: 0.94rem;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.44);
        }

    .newsletter-form button {
        height: 48px;
        border: 0;
        border-radius: 999px;
        padding: 0 22px;
        color: #ffffff;
        font-weight: 950;
        background: var(--gradient);
        display: inline-flex;
        align-items: center;
        gap: 9px;
        white-space: nowrap;
        transition: 0.25s ease;
        box-shadow: 0 0 26px rgba(247, 37, 133, 0.26);
    }

        .newsletter-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 38px rgba(0, 217, 255, 0.30);
        }

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.footer-column,
.footer-contact-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.030);
}

    .footer-column h6,
    .footer-contact-card h6 {
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .footer-column a {
        display: flex;
        width: fit-content;
        color: #9ca3af;
        font-size: 0.94rem;
        margin-bottom: 12px;
        transition: 0.25s ease;
    }

        .footer-column a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

.footer-email {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #b8c7da !important;
    margin-bottom: 20px !important;
    word-break: break-word;
}

    .footer-email i {
        color: var(--cyan);
    }

.socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

    .socials a {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        color: #ffffff;
        background: rgba(255,255,255,0.04);
        transition: 0.25s ease;
    }

        .socials a:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 217, 255, 0.55);
            box-shadow: 0 0 26px rgba(0, 217, 255, 0.22);
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    font-size: 0.9rem;
}

    .footer-bottom span {
        opacity: 0.86;
    }

.back-to-top {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: 0.25s ease;
}

    .back-to-top::before {
        content: "";
        width: 11px;
        height: 11px;
        border-top: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
        transform: translateY(3px) rotate(45deg);
        border-radius: 1px;
    }

    .back-to-top:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 26px rgba(0, 217, 255, 0.22), 0 18px 45px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    }

html[data-theme="light"] .premium-footer {
    background: radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.08), transparent 26%), radial-gradient(circle at 82% 10%, rgba(0, 217, 255, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc, #eef4f8);
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .footer-panel {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .footer-top,
html[data-theme="light"] .footer-bottom {
    border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .footer-brand-area p,
html[data-theme="light"] .newsletter-text p,
html[data-theme="light"] .footer-email {
    color: #64748b !important;
}

html[data-theme="light"] .newsletter-card,
html[data-theme="light"] .footer-column,
html[data-theme="light"] .footer-contact-card {
    background: rgba(255,255,255,0.76);
    border-color: rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .newsletter-text span,
    html[data-theme="light"] .footer-column h6,
    html[data-theme="light"] .footer-contact-card h6 {
        color: #0f172a;
    }

html[data-theme="light"] .newsletter-form {
    background: rgba(255,255,255,0.86);
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .newsletter-form input {
        color: #0f172a;
    }

        html[data-theme="light"] .newsletter-form input::placeholder {
            color: #94a3b8;
        }

html[data-theme="light"] .footer-column a,
html[data-theme="light"] .footer-bottom {
    color: #64748b;
}

    html[data-theme="light"] .footer-column a:hover {
        color: #0f172a;
    }

html[data-theme="light"] .socials a {
    color: #0f172a;
    background: rgba(255,255,255,0.76);
    border-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .back-to-top {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

    html[data-theme="light"] .back-to-top::before {
        border-color: #0f172a;
    }

@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card-full {
        min-height: 560px;
    }
}

@media (max-width: 991px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-shell {
        min-height: 86px;
        padding: 12px 16px;
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 180px;
    }

    .nav-menu {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .nav-actions {
        justify-content: center;
    }

    .nav-cta {
        min-width: 170px;
    }

    .hero-section,
    .hero-full {
        padding-top: 120px;
    }

    .hero-content {
        padding: 42px;
    }

    .technical-grid,
    .contact-grid,
    .footer-top,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expert-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expert-avatar {
        margin: 0 auto;
    }

    .expert-tags {
        justify-content: center;
    }

    .footer-main {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .tech-stack-showcase {
        padding: 20px;
    }

    .tech-stack-header {
        display: block;
    }

        .tech-stack-header p {
            margin-top: 8px;
        }

    .tech-pill {
        min-width: 165px;
        height: 68px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 155px;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-card,
    .hero-card-full {
        min-height: auto;
    }

        .hero-card-full .hero-content {
            padding: 70px 0;
        }

    .hero-content {
        padding: 32px 24px;
    }

        .hero-content h1 {
            letter-spacing: -0.04em;
        }

    .section {
        padding: 62px 0;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: auto;
    }

    .technical-section {
        padding: 70px 0;
    }

    .code-card pre {
        font-size: 0.82rem;
        padding: 24px 18px;
    }

    .code-metrics {
        grid-template-columns: 1fr;
    }

    html[data-theme="light"] .code-metrics div + div {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .premium-footer {
        padding: 64px 0 28px;
    }

    .footer-panel {
        padding: 22px 0;
    }

    .footer-top,
    .footer-main,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-form {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

        .newsletter-form button {
            justify-content: center;
        }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-result {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 4px;
    animation: contactMessageIn 0.35s ease both;
}

.contact-result-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 1.15rem;
}

.contact-result strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 950;
    margin-bottom: 4px;
}

.contact-result p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-result-success {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 34%), linear-gradient(180deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.055));
    border: 1px solid rgba(34, 197, 94, 0.28);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.08);
}

    .contact-result-success .contact-result-icon {
        color: #bbf7d0;
        background: rgba(34, 197, 94, 0.16);
        border: 1px solid rgba(34, 197, 94, 0.28);
    }

    .contact-result-success p {
        color: #bbf7d0;
    }

.contact-result-error {
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.18), transparent 34%), linear-gradient(180deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.055));
    border: 1px solid rgba(239, 68, 68, 0.28);
    box-shadow: 0 18px 44px rgba(239, 68, 68, 0.08);
}

    .contact-result-error .contact-result-icon {
        color: #fecaca;
        background: rgba(239, 68, 68, 0.16);
        border: 1px solid rgba(239, 68, 68, 0.28);
    }

    .contact-result-error p {
        color: #fecaca;
    }

@keyframes contactMessageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html[data-theme="light"] .contact-result strong {
    color: #0f172a;
}

html[data-theme="light"] .contact-result-success {
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.24);
}

    html[data-theme="light"] .contact-result-success p {
        color: #166534;
    }

html[data-theme="light"] .contact-result-error {
    background: rgba(239, 68, 68, 0.10);
    border-color: rgba(239, 68, 68, 0.24);
}

    html[data-theme="light"] .contact-result-error p {
        color: #991b1b;
    }

.contact-submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .submit-loading i {
        animation: spinIcon 0.9s linear infinite;
    }

body.form-submitting .contact-submit-btn .submit-text {
    display: none;
}

body.form-submitting .contact-submit-btn .submit-loading {
    display: inline-flex;
}

body.form-submitting .contact-submit-btn {
    pointer-events: none;
    opacity: 0.88;
}

@keyframes spinIcon {
    to {
        transform: rotate(360deg);
    }
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.10), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.10), transparent 30%), linear-gradient(180deg, #050816, #020617);
}

body.form-submitting .site-loader {
    display: flex;
}

.site-loader-card {
    position: relative;
    width: min(360px, calc(100% - 40px));
    padding: 34px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.040));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.08);
}

.site-loader-logo {
    width: 150px;
    display: block;
    margin: 0 auto 22px;
}

.site-loader-ring {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--cyan);
    border-right-color: var(--pink);
    animation: loaderSpin 0.9s linear infinite;
}

.site-loader-card p {
    margin: 0;
    color: #b8c7da;
    font-weight: 800;
    letter-spacing: -0.01em;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

html[data-theme="light"] .site-loader {
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.08), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.08), transparent 30%), linear-gradient(180deg, #f8fafc, #eef4f8);
}

html[data-theme="light"] .site-loader-card {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

    html[data-theme="light"] .site-loader-card p {
        color: #64748b;
    }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 170px;
}

section[id] {
    scroll-margin-top: 170px;
}

.contact-section {
    scroll-margin-top: 190px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 130px;
    }

    section[id],
    .contact-section {
        scroll-margin-top: 130px;
    }
}

.newsletter-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin: 0 0 16px;
    border-radius: 18px;
    animation: contactMessageIn 0.35s ease both;
}

    .newsletter-result i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        font-size: 1rem;
    }

    .newsletter-result strong {
        display: block;
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 950;
        margin-bottom: 3px;
    }

    .newsletter-result p {
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.5;
    }

.newsletter-result-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

    .newsletter-result-success i {
        color: #bbf7d0;
        background: rgba(34, 197, 94, 0.16);
    }

    .newsletter-result-success p {
        color: #bbf7d0;
    }

.newsletter-result-info {
    background: rgba(0, 217, 255, 0.10);
    border: 1px solid rgba(0, 217, 255, 0.24);
}

    .newsletter-result-info i {
        color: var(--cyan);
        background: rgba(0, 217, 255, 0.12);
    }

    .newsletter-result-info p {
        color: #b8c7da;
    }

.newsletter-result-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

    .newsletter-result-error i {
        color: #fecaca;
        background: rgba(239, 68, 68, 0.16);
    }

    .newsletter-result-error p {
        color: #fecaca;
    }

html[data-theme="light"] .newsletter-result strong {
    color: #0f172a;
}

html[data-theme="light"] .newsletter-result-success p {
    color: #166534;
}

html[data-theme="light"] .newsletter-result-info p {
    color: #0369a1;
}

html[data-theme="light"] .newsletter-result-error p {
    color: #991b1b;
}

.newsletter-spin {
    animation: spinIcon 0.9s linear infinite;
}

@keyframes spinIcon {
    to {
        transform: rotate(360deg);
    }
}

.solutions-section {
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card,
.why-benefit,
.process-step,
.faq-item,
.appointment-cta {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.solution-card {
    min-height: 260px;
    padding: 28px;
    border-radius: 24px;
    transition: 0.25s ease;
}

    .solution-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 217, 255, 0.38);
    }

.solution-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 22px;
    color: var(--cyan);
    background: rgba(0, 217, 255, 0.10);
    font-size: 1.45rem;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.08);
}

.solution-card h3,
.process-step h3,
.faq-item h3 {
    color: #ffffff;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.solution-card p,
.process-step p,
.faq-item p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.why-content h2 {
    max-width: 620px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

.why-content p {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.why-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.why-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-benefit {
    min-height: 170px;
    padding: 22px;
    border-radius: 22px;
    transition: 0.25s ease;
}

    .why-benefit:hover {
        transform: translateY(-6px);
        border-color: rgba(247, 37, 133, 0.34);
    }

    .why-benefit i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        margin-bottom: 18px;
        color: var(--orange);
        background: rgba(255, 138, 0, 0.12);
        font-size: 1.2rem;
    }

    .why-benefit strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 8px;
    }

    .why-benefit span {
        display: block;
        color: var(--muted);
        line-height: 1.6;
        font-size: 0.92rem;
    }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step {
    position: relative;
    min-height: 230px;
    padding: 28px;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.25s ease;
}

    .process-step::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.10), transparent 34%);
        opacity: 0;
        transition: 0.25s ease;
    }

    .process-step:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 217, 255, 0.35);
    }

        .process-step:hover::before {
            opacity: 1;
        }

    .process-step span {
        position: relative;
        z-index: 2;
        display: inline-flex;
        margin-bottom: 18px;
        font-size: 0.8rem;
        font-weight: 950;
        letter-spacing: 0.18em;
        color: var(--cyan);
    }

    .process-step h3,
    .process-step p {
        position: relative;
        z-index: 2;
    }

.faq-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.faq-item {
    padding: 26px;
    border-radius: 24px;
    transition: 0.25s ease;
}

    .faq-item:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 138, 0, 0.35);
    }

.appointment-cta-section {
    padding-top: 40px;
}

.appointment-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.040));
}

    .appointment-cta h2 {
        color: #ffffff;
        font-size: clamp(1.8rem, 3vw, 3rem);
        font-weight: 950;
        letter-spacing: -0.05em;
        margin-bottom: 10px;
    }

    .appointment-cta p:not(.eyebrow) {
        color: var(--muted);
        max-width: 680px;
        margin: 0;
        line-height: 1.7;
    }

html[data-theme="light"] .solution-card,
html[data-theme="light"] .why-benefit,
html[data-theme="light"] .process-step,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .appointment-cta {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.88));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .solution-card h3,
    html[data-theme="light"] .why-content h2,
    html[data-theme="light"] .why-benefit strong,
    html[data-theme="light"] .process-step h3,
    html[data-theme="light"] .faq-item h3,
    html[data-theme="light"] .appointment-cta h2 {
        color: #0f172a;
    }

    html[data-theme="light"] .solution-card p,
    html[data-theme="light"] .why-content p,
    html[data-theme="light"] .why-benefit span,
    html[data-theme="light"] .process-step p,
    html[data-theme="light"] .faq-item p,
    html[data-theme="light"] .appointment-cta p:not(.eyebrow) {
        color: #64748b;
    }

html[data-theme="light"] .solution-icon {
    color: #0284c7;
    background: rgba(0, 217, 255, 0.08);
    box-shadow: none;
}

@media (max-width: 991px) {
    .solutions-grid,
    .why-grid,
    .process-timeline,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .why-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .appointment-cta {
        display: grid;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .why-benefits {
        grid-template-columns: 1fr;
    }

    .solution-card,
    .process-step,
    .faq-item,
    .appointment-cta {
        padding: 24px;
    }
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
    height: auto;
    object-fit: contain;
}

.footer-logo-light {
    display: none;
}

html[data-theme="dark"] .footer-logo-dark {
    display: block;
}

html[data-theme="dark"] .footer-logo-light {
    display: none;
}

html[data-theme="light"] .footer-logo-dark {
    display: none;
}

html[data-theme="light"] .footer-logo-light {
    display: block;
}

.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .consultation-modal.is-open {
        display: flex;
    }

.consultation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.14), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.14), transparent 30%), rgba(3, 7, 18, 0.86);
    backdrop-filter: blur(16px);
}

.consultation-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.090), rgba(255,255,255,0.040));
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.consultation-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    background: rgba(255,255,255,0.055);
    transition: 0.25s ease;
}

    .consultation-close:hover {
        transform: rotate(90deg);
        border-color: rgba(0, 217, 255, 0.45);
    }

.consultation-modal-header {
    max-width: 720px;
    margin-bottom: 24px;
}

    .consultation-modal-header h2 {
        color: #ffffff;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 950;
        letter-spacing: -0.06em;
        margin-bottom: 12px;
    }

    .consultation-modal-header p:not(.eyebrow) {
        color: #b8c7da;
        line-height: 1.7;
        margin: 0;
    }

.consultation-form {
    display: grid;
    gap: 14px;
}

.consultation-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3, 7, 18, 0.42);
    color: #ffffff;
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
}

.consultation-form select {
    cursor: pointer;
}

.consultation-form option {
    color: #0f172a;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: rgba(0, 217, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.08);
}

.consultation-submit-btn {
    width: 100%;
}

.consultation-submit-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

    .consultation-submit-loading i {
        animation: spinIcon 0.9s linear infinite;
    }

.consultation-submit-btn.is-loading .consultation-submit-text {
    display: none;
}

.consultation-submit-btn.is-loading .consultation-submit-loading {
    display: inline-flex;
}

.consultation-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 18px;
}

    .consultation-result i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: grid;
        place-items: center;
        border-radius: 999px;
    }

    .consultation-result strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 4px;
    }

    .consultation-result p {
        margin: 0;
        line-height: 1.5;
    }

.consultation-result-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

    .consultation-result-success i,
    .consultation-result-success p {
        color: #bbf7d0;
    }

.consultation-result-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

    .consultation-result-error i,
    .consultation-result-error p {
        color: #fecaca;
    }

body.consultation-modal-open {
    overflow: hidden;
}

html[data-theme="light"] .consultation-modal-backdrop {
    background: radial-gradient(circle at 20% 15%, rgba(255, 138, 0, 0.10), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.10), transparent 30%), rgba(248, 250, 252, 0.86);
}

html[data-theme="light"] .consultation-modal-dialog {
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.08), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.06), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .consultation-modal-header h2,
html[data-theme="light"] .consultation-result strong {
    color: #0f172a;
}

html[data-theme="light"] .consultation-modal-header p:not(.eyebrow) {
    color: #64748b;
}

html[data-theme="light"] .consultation-form input,
html[data-theme="light"] .consultation-form select,
html[data-theme="light"] .consultation-form textarea {
    background: rgba(255,255,255,0.86);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .consultation-form input::placeholder,
    html[data-theme="light"] .consultation-form textarea::placeholder {
        color: #94a3b8;
    }

html[data-theme="light"] .consultation-close {
    color: #0f172a;
    background: rgba(255,255,255,0.86);
    border-color: rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .consultation-result-success p {
    color: #166534;
}

html[data-theme="light"] .consultation-result-error p {
    color: #991b1b;
}

@media (max-width: 768px) {
    .consultation-form-grid {
        grid-template-columns: 1fr;
    }

    .consultation-modal-dialog {
        padding: 24px;
        border-radius: 24px;
    }
}

/* =========================================================
   FINAL MOBILE NAVBAR FIX
   Keeps Bootstrap collapse hidden on mobile until hamburger click.
   ========================================================= */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse.main-nav-wrap {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .navbar-expand-lg .navbar-toggler.custom-toggler {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-shell {
        min-height: 82px;
        padding: 10px 14px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
        border: 1px solid rgba(255,255,255,0.10);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 160px;
    }

    .custom-toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 0;
        margin-left: auto;
        border-radius: 16px;
        background: rgba(255,255,255,0.065);
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

        .custom-toggler .navbar-toggler-icon {
            width: 1.2em;
            height: 1.2em;
        }

    .navbar-collapse.main-nav-wrap {
        display: none !important;
        flex-basis: 100%;
        width: 100%;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

        .navbar-collapse.main-nav-wrap.show {
            display: block !important;
        }

        .navbar-collapse.main-nav-wrap.collapsing {
            display: block !important;
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }

    .nav-menu {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
        margin: 0 0 14px 0;
        border-radius: 22px;
        background: rgba(3, 7, 18, 0.42);
        border: 1px solid rgba(255,255,255,0.09);
        backdrop-filter: blur(14px);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem !important;
        border-radius: 16px;
        font-size: 0.94rem;
    }

    .nav-actions {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 48px;
        gap: 10px;
        align-items: center;
        justify-content: stretch;
    }

    .language-switch {
        grid-column: 1 / 2;
        justify-content: center;
        width: 100%;
        height: 48px;
    }

    .theme-toggle {
        grid-column: 2 / 3;
        width: 48px;
        height: 48px;
    }

    .nav-cta {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        display: inline-flex;
        justify-content: center;
    }

    html[data-theme="light"] .nav-shell {
        background: rgba(255, 255, 255, 0.84);
        border-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    }

    html[data-theme="light"] .nav-menu {
        background: rgba(15, 23, 42, 0.035);
        border-color: rgba(15, 23, 42, 0.08);
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 145px;
    }

    .nav-shell {
        border-radius: 22px;
    }

    .custom-toggler,
    .theme-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-actions {
        grid-template-columns: 1fr 44px;
    }
}

/* =========================================================
   FINAL NAVBAR FIX - DESKTOP + MOBILE
   ========================================================= */

/* Header container */
.site-header {
    top: 18px;
    padding: 0 18px;
}

/* Main glass navbar shell */
.nav-shell {
    min-height: 88px;
    padding: 10px 18px;
    border-radius: 28px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Keep navbar compact even before scroll */
.site-header:not(.scrolled) .nav-shell {
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Logo size */
.brand-logo {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.site-header.scrolled .brand-logo {
    width: 155px;
}

/* Desktop layout */
@media (min-width: 992px) {
    .main-nav-wrap {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .nav-menu {
        grid-column: 2;
        gap: 4px;
        padding: 7px;
    }

    .nav-link {
        white-space: nowrap;
        font-size: 0.84rem;
        padding: 0.72rem 0.82rem !important;
        line-height: 1;
    }

    .nav-actions {
        grid-column: 3;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .language-switch {
        height: 27px;
        min-width: 78px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .theme-toggle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .nav-cta {
        min-width: 118px;
        padding-left: 1.1rem;
        padding-right: 1.1rem;
        white-space: nowrap;
    }
}

/* Give hero enough space below fixed navbar */
.hero-full {
    padding-top: 145px;
}

.hero-section {
    padding-top: 165px;
}

/* Light theme navbar */
html[data-theme="light"] .nav-shell,
html[data-theme="light"] .site-header:not(.scrolled) .nav-shell,
html[data-theme="light"] .site-header.scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* Mobile */
@media (max-width: 991.98px) {
    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .nav-shell {
        min-height: 78px;
        padding: 10px 14px;
        border-radius: 24px;
    }

    .brand-logo,
    .site-header.scrolled .brand-logo {
        width: 145px;
    }

    .custom-toggler {
        margin-left: auto;
    }

    .main-nav-wrap {
        display: none !important;
        width: 100%;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

        .main-nav-wrap.show {
            display: block !important;
        }

        .main-nav-wrap.collapsing {
            display: block !important;
            height: 0;
            overflow: hidden;
            transition: height 0.35s ease;
        }

    .nav-menu {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
        border-radius: 22px;
        margin-bottom: 14px;
    }

    .nav-link {
        display: block;
        text-align: center;
        padding: 0.85rem 1rem !important;
    }

    .nav-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-full,
    .hero-section {
        padding-top: 115px;
    }
}
/* =========================================================
   DESKTOP NAVBAR SPACING FIX
   ========================================================= */

@media (min-width: 992px) {
    .main-nav-wrap {
        column-gap: 34px;
    }

    .nav-actions {
        padding-left: 22px;
        gap: 14px;
    }

    .language-switch {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .theme-toggle,
    .nav-cta {
        flex-shrink: 0;
    }
}
/* =========================================================
   SERVICE PAGES
   ========================================================= */

.service-page-hero {
    position: relative;
    padding: 185px 0 90px;
    overflow: hidden;
}

    .service-page-hero::before {
        content: "";
        position: absolute;
        width: 620px;
        height: 620px;
        top: -240px;
        right: -160px;
        background: radial-gradient(circle, rgba(0, 217, 255, 0.18), transparent 62%);
        pointer-events: none;
    }

.service-page-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.service-page-content h1 {
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.06em;
    margin-bottom: 22px;
}

.service-page-subtitle {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-page-description {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-page-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 2rem;
    background: var(--gradient);
    box-shadow: 0 0 38px rgba(0, 217, 255, 0.20);
}

.service-page-card,
.service-info-card,
.service-faq-item,
.related-service-card,
.service-cta-box {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.080), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-page-card {
    padding: 30px;
    border-radius: 28px;
}

    .service-page-card span {
        display: block;
        color: var(--cyan);
        font-size: 0.82rem;
        font-weight: 950;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .service-page-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 16px;
    }

    .service-page-card li {
        display: flex;
        gap: 12px;
        color: #dbeafe;
        line-height: 1.65;
    }

        .service-page-card li i {
            color: var(--cyan);
            font-size: 1.1rem;
            margin-top: 3px;
        }

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-info-card {
    padding: 30px;
    border-radius: 28px;
}

    .service-info-card h2 {
        color: #ffffff;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 950;
        letter-spacing: -0.04em;
        margin-bottom: 22px;
    }

.service-list-grid {
    display: grid;
    gap: 14px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #dbeafe;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

    .service-list-item i {
        color: var(--cyan);
    }

.service-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .service-tech-list span {
        padding: 10px 14px;
        border-radius: 999px;
        color: rgba(255,255,255,0.82);
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.10);
        font-weight: 800;
        font-size: 0.9rem;
    }

.service-faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.service-faq-item {
    padding: 24px;
    border-radius: 22px;
}

    .service-faq-item h3 {
        color: #ffffff;
        font-size: 1.15rem;
        font-weight: 950;
        margin-bottom: 10px;
    }

    .service-faq-item p {
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-service-card {
    padding: 24px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.25s ease;
}

    .related-service-card span {
        color: #ffffff;
        font-weight: 950;
    }

    .related-service-card i {
        color: var(--cyan);
    }

    .related-service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 217, 255, 0.45);
        box-shadow: 0 0 32px rgba(0, 217, 255, 0.16);
    }

.service-cta-section {
    padding: 40px 0 95px;
}

.service-cta-box {
    text-align: center;
    padding: 46px;
    border-radius: 32px;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 34%), radial-gradient(circle at bottom right, rgba(247, 37, 133, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.080), rgba(255,255,255,0.035));
}

    .service-cta-box h2 {
        color: #ffffff;
        font-size: clamp(2rem, 4vw, 3.6rem);
        font-weight: 950;
        letter-spacing: -0.05em;
        margin-bottom: 12px;
    }

    .service-cta-box p {
        max-width: 620px;
        margin: 0 auto 24px;
        color: var(--muted);
    }

/* Light theme */
html[data-theme="light"] .service-page-content h1,
html[data-theme="light"] .service-info-card h2,
html[data-theme="light"] .service-faq-item h3,
html[data-theme="light"] .related-service-card span,
html[data-theme="light"] .service-cta-box h2 {
    color: #0f172a;
}

html[data-theme="light"] .service-page-subtitle,
html[data-theme="light"] .service-page-card li,
html[data-theme="light"] .service-list-item,
html[data-theme="light"] .service-tech-list span {
    color: #334155;
}

html[data-theme="light"] .service-page-card,
html[data-theme="light"] .service-info-card,
html[data-theme="light"] .service-faq-item,
html[data-theme="light"] .related-service-card,
html[data-theme="light"] .service-cta-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .service-list-item,
html[data-theme="light"] .service-tech-list span {
    background: rgba(248,250,252,0.86);
    border-color: rgba(15, 23, 42, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
    .service-page-hero {
        padding: 135px 0 70px;
    }

    .service-page-shell,
    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }
}
a.capability-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

    a.capability-card:hover {
        color: inherit;
        text-decoration: none;
    }
/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.portfolio-hero {
    position: relative;
    padding: 185px 0 80px;
    overflow: hidden;
}

    .portfolio-hero::before {
        content: "";
        position: absolute;
        width: 680px;
        height: 680px;
        top: -260px;
        right: -180px;
        background: radial-gradient(circle, rgba(0, 217, 255, 0.16), transparent 62%);
        pointer-events: none;
    }

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
    margin: 0 auto;
}

    .portfolio-hero-content h1 {
        color: #ffffff;
        font-size: clamp(2.8rem, 6vw, 5.6rem);
        line-height: 0.95;
        font-weight: 950;
        letter-spacing: -0.065em;
        margin-bottom: 24px;
    }

    .portfolio-hero-content p:not(.eyebrow) {
        max-width: 790px;
        margin: 0 auto 30px;
        color: var(--muted);
        font-size: 1.12rem;
        line-height: 1.8;
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.portfolio-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: radial-gradient(circle at top right, rgba(247, 37, 133, 0.08), transparent 35%), linear-gradient(180deg, rgba(255,255,255,0.080), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transition: 0.25s ease;
}

    .portfolio-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 217, 255, 0.42);
        box-shadow: 0 0 36px rgba(0, 217, 255, 0.16);
    }

.portfolio-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.22), transparent 34%), linear-gradient(135deg, rgba(255,138,0,0.18), rgba(109,40,217,0.20));
}

    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.86;
        transition: 0.35s ease;
    }

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(14px);
}

.portfolio-content {
    padding: 28px;
}

    .portfolio-content h2 {
        color: #ffffff;
        font-size: 1.55rem;
        line-height: 1.2;
        font-weight: 950;
        letter-spacing: -0.035em;
        margin-bottom: 14px;
    }

    .portfolio-content p:not(.eyebrow) {
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 22px;
    }

.portfolio-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

    .portfolio-tech-list span {
        padding: 8px 12px;
        border-radius: 999px;
        color: rgba(255,255,255,0.82);
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.10);
        font-weight: 800;
        font-size: 0.82rem;
    }

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan);
    font-weight: 950;
    text-decoration: none;
}

    .portfolio-link i {
        transition: 0.25s ease;
    }

    .portfolio-link:hover {
        color: var(--cyan);
    }

        .portfolio-link:hover i {
            transform: translateX(5px);
        }

/* Light theme */
html[data-theme="light"] .portfolio-hero-content h1,
html[data-theme="light"] .portfolio-content h2 {
    color: #0f172a;
}

html[data-theme="light"] .portfolio-card {
    background: radial-gradient(circle at top right, rgba(0, 217, 255, 0.10), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.90));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .portfolio-tech-list span {
    color: #334155;
    background: rgba(248,250,252,0.86);
    border-color: rgba(15, 23, 42, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .portfolio-hero {
        padding: 135px 0 65px;
    }

    .portfolio-image {
        height: 220px;
    }
}

.services-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-index-card {
    display: block;
    min-height: 320px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transition: 0.25s ease;
}

    .service-index-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 217, 255, 0.38);
        color: inherit;
    }

    .service-index-card span {
        display: inline-block;
        margin-bottom: 10px;
        color: var(--cyan);
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .service-index-card h2 {
        color: var(--text);
        font-size: 1.45rem;
        font-weight: 950;
        letter-spacing: -0.04em;
        margin-bottom: 14px;
    }

    .service-index-card p {
        color: var(--muted);
        line-height: 1.7;
    }

.service-index-link {
    margin-top: 22px;
    color: #ffffff;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

html[data-theme="light"] .service-index-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.88));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    html[data-theme="light"] .service-index-card h2 {
        color: #0f172a;
    }

html[data-theme="light"] .service-index-link {
    color: #0f172a;
}

@media (max-width: 991px) {
    .services-index-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-index-grid {
        grid-template-columns: 1fr;
    }
}
.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 5000;
    display: none;
}

    .cookie-consent.show {
        display: block;
    }

.cookie-consent-card {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.055));
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cookie-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cookie-consent h3 {
    font-size: 1.45rem;
    font-weight: 950;
    margin-bottom: 8px;
}

.cookie-consent p {
    color: var(--muted);
    margin-bottom: 10px;
    max-width: 760px;
}

.cookie-policy-link {
    color: var(--cyan);
    font-weight: 800;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: none;
}

    .cookie-settings-modal.show {
        display: block;
    }

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
}

.cookie-settings-dialog {
    position: relative;
    max-width: 620px;
    margin: 8vh auto;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(3,7,18,0.98));
    box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}

.cookie-settings-x {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.06);
    color: var(--text);
}

.cookie-option {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

    .cookie-option strong {
        display: block;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .cookie-option p {
        color: var(--muted);
        margin: 0;
    }

    .cookie-option input[type="checkbox"] {
        width: 22px;
        height: 22px;
        accent-color: #00d9ff;
    }

html[data-theme="light"] .cookie-consent-card,
html[data-theme="light"] .cookie-settings-dialog {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.94));
    border-color: rgba(15,23,42,0.10);
    box-shadow: 0 24px 70px rgba(15,23,42,0.16);
}

html[data-theme="light"] .cookie-settings-backdrop {
    background: rgba(15, 23, 42, 0.32);
}

@media (max-width: 768px) {
    .cookie-consent-card {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

        .cookie-consent-actions .btn {
            width: 100%;
        }

    .cookie-settings-dialog {
        margin: 24px;
    }
}
.privacy-section {
    padding-top: 40px;
}

.privacy-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

    .privacy-card h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        color: var(--text);
        font-size: 1.45rem;
        font-weight: 950;
        letter-spacing: -0.03em;
    }

    .privacy-card h3 {
        margin-top: 24px;
        margin-bottom: 10px;
        color: var(--text);
        font-size: 1.1rem;
        font-weight: 900;
    }

    .privacy-card p,
    .privacy-card li {
        color: var(--muted);
        line-height: 1.8;
    }

    .privacy-card a {
        color: var(--cyan);
        font-weight: 800;
    }

    .privacy-card ul {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .privacy-card li {
        margin-bottom: 8px;
    }

html[data-theme="light"] .privacy-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .privacy-card {
        padding: 28px;
        border-radius: 22px;
    }
}
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .footer-legal-links a {
        color: var(--muted);
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .footer-legal-links a:hover {
            color: var(--cyan);
        }

@media (max-width: 768px) {
    .footer-bottom {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-links {
        gap: 12px;
    }
}
.error-page-section {
    min-height: 100vh;
    padding: 170px 0 90px;
    display: flex;
    align-items: center;
}

.error-page-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 64px 44px;
    border-radius: 34px;
    text-align: center;
    border: 1px solid var(--border);
    background: radial-gradient(circle at top left, rgba(247, 37, 133, 0.18), transparent 34%), radial-gradient(circle at bottom right, rgba(0, 217, 255, 0.18), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.error-code-glow {
    font-size: clamp(6rem, 17vw, 13rem);
    line-height: 0.85;
    font-weight: 1000;
    letter-spacing: -0.1em;
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 32px rgba(0, 217, 255, 0.18));
    margin-bottom: 26px;
}

.error-page-card h1 {
    max-width: 720px;
    margin: 0 auto 18px;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    font-weight: 1000;
    letter-spacing: -0.07em;
    color: var(--text);
}

.error-message {
    max-width: 680px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.error-quick-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

    .error-quick-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 16px;
        border-radius: 999px;
        border: 1px solid var(--border);
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 800;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .error-quick-links a:hover {
            color: var(--cyan);
            border-color: rgba(0, 217, 255, 0.35);
            transform: translateY(-2px);
        }

html[data-theme="light"] .error-page-card {
    background: radial-gradient(circle at top left, rgba(247, 37, 133, 0.10), transparent 34%), radial-gradient(circle at bottom right, rgba(0, 217, 255, 0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

    html[data-theme="light"] .error-page-card h1 {
        color: #0f172a;
    }

html[data-theme="light"] .error-quick-links a {
    color: rgba(15, 23, 42, 0.68);
    border-color: rgba(15, 23, 42, 0.10);
}

@media (max-width: 768px) {
    .error-page-section {
        padding: 140px 0 70px;
    }

    .error-page-card {
        padding: 46px 24px;
        border-radius: 26px;
    }

    .error-actions .btn {
        width: 100%;
    }
}
/* =========================================================
   GLOBAL RESPONSIVE POLISH - AK360 DIGITAL SERVICES
   Covers homepage, services, portfolio, privacy, errors,
   footer, forms, modals and cookie banner.
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

/* -------------------------------
   Tablets and small laptops
-------------------------------- */

@media (max-width: 1199.98px) {
    .container,
    .footer-fluid {
        max-width: 100%;
        padding-left: 28px;
        padding-right: 28px;
    }

    .section-padding,
    .services-section,
    .portfolio-section,
    .privacy-section,
    .error-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .hero-title,
    .section-title,
    .services-hero h1,
    .portfolio-hero h1,
    .privacy-hero h1,
    .error-title {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .services-grid,
    .portfolio-grid,
    .solutions-grid,
    .why-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

/* -------------------------------
   Main mobile layout
-------------------------------- */

@media (max-width: 991.98px) {
    body {
        font-size: 16px;
    }

    .container,
    .footer-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-padding,
    .services-section,
    .portfolio-section,
    .privacy-section,
    .error-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section-header,
    .services-header,
    .portfolio-header,
    .privacy-header {
        text-align: left;
        margin-bottom: 36px;
    }

    .section-eyebrow,
    .eyebrow {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
    }

    .section-title,
    .services-hero h1,
    .portfolio-hero h1,
    .privacy-hero h1 {
        font-size: clamp(2.2rem, 8vw, 4rem);
        line-height: 1;
        letter-spacing: -1px;
    }

    .section-description,
    .services-hero p,
    .portfolio-hero p,
    .privacy-hero p {
        font-size: 1rem;
        line-height: 1.75;
        max-width: 100%;
    }

    /* All grids become clean 1 column */
    .services-grid,
    .portfolio-grid,
    .solutions-grid,
    .why-grid,
    .process-grid,
    .stats-grid,
    .service-detail-grid,
    .service-overview-grid,
    .service-content-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    /* Cards */
    .service-card,
    .portfolio-card,
    .solution-card,
    .why-card,
    .process-card,
    .stat-card,
    .contact-card,
    .privacy-card,
    .service-detail-card,
    .faq-card {
        padding: 26px;
        border-radius: 28px;
    }

    /* Hero */
    .hero,
    .hero-section,
    .home-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content,
    .hero-text {
        max-width: 100%;
    }

    .hero-title,
    .hero h1 {
        font-size: clamp(3rem, 12vw, 5.5rem);
        line-height: 0.95;
        letter-spacing: -2px;
    }

    .hero-description,
    .hero p {
        font-size: 1.1rem;
        line-height: 1.75;
        max-width: 100%;
    }

    .hero-actions,
    .section-actions,
    .services-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
    }

        .hero-actions .btn,
        .hero-actions a,
        .section-actions .btn,
        .services-actions .btn {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

    /* Technologies section */
    .technology-strip,
    .technologies-grid,
    .tech-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .technology-item,
    .tech-item,
    .tech-pill {
        flex: 1 1 calc(50% - 12px);
        justify-content: center;
        text-align: center;
    }

    /* Portfolio */
    .portfolio-card img,
    .portfolio-image img,
    .portfolio-card-image {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
        border-radius: 22px;
    }

    .portfolio-tags,
    .service-tags,
    .tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Footer */
    .footer-panel {
        padding: 34px 24px;
        border-radius: 30px;
    }

    .footer-top,
    .footer-main,
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .footer-brand-area,
    .newsletter-card,
    .footer-contact-card {
        width: 100%;
    }

    .newsletter-card {
        padding: 24px;
        border-radius: 26px;
    }

    .newsletter-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

        .newsletter-form input,
        .newsletter-form button {
            width: 100%;
        }

    .footer-legal-links {
        justify-content: flex-start;
    }

    /* Cookie banner */
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }

    .cookie-consent-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        border-radius: 26px;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

        .cookie-consent-actions .btn {
            width: 100%;
        }

    .cookie-settings-dialog {
        width: calc(100% - 24px);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        padding: 26px;
        border-radius: 28px;
    }

    /* Consultation modal */
    .consultation-modal-dialog {
        width: calc(100% - 24px);
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        padding: 28px;
        border-radius: 30px;
    }

    .consultation-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .consultation-form input,
    .consultation-form select,
    .consultation-form textarea {
        width: 100%;
    }
}

/* -------------------------------
   Phones
-------------------------------- */

@media (max-width: 767.98px) {
    .container,
    .footer-fluid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-padding,
    .services-section,
    .portfolio-section,
    .privacy-section,
    .error-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .hero,
    .hero-section,
    .home-hero {
        padding-top: 110px;
        padding-bottom: 64px;
    }

        .hero-title,
        .hero h1 {
            font-size: clamp(2.65rem, 12vw, 4.4rem);
            line-height: 0.95;
        }

        .hero-description,
        .hero p {
            font-size: 1.02rem;
            line-height: 1.7;
        }

    .section-title,
    .services-hero h1,
    .portfolio-hero h1,
    .privacy-hero h1,
    .error-title {
        font-size: clamp(2rem, 9vw, 3.3rem);
        line-height: 1.05;
    }

    .service-card,
    .portfolio-card,
    .solution-card,
    .why-card,
    .process-card,
    .stat-card,
    .contact-card,
    .privacy-card,
    .service-detail-card,
    .faq-card {
        padding: 22px;
        border-radius: 24px;
    }

    .technology-item,
    .tech-item,
    .tech-pill {
        flex: 1 1 100%;
    }

    .btn,
    .btn-gradient,
    .btn-outline-glow {
        min-height: 52px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .footer-logo {
        max-width: 190px;
    }

    .footer-panel {
        padding: 28px 20px;
        border-radius: 26px;
    }

    .footer-column,
    .footer-contact-card {
        padding: 22px;
        border-radius: 22px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
    }

    /* Error pages */
    .error-code,
    .error-section h1 {
        font-size: clamp(5rem, 28vw, 9rem);
        line-height: 0.9;
    }

    .error-card {
        padding: 32px 22px;
        border-radius: 30px;
    }

    .error-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Privacy page */
    .privacy-content,
    .privacy-page-content {
        font-size: 1rem;
        line-height: 1.75;
    }

        .privacy-content ul,
        .privacy-page-content ul {
            padding-left: 20px;
        }
}

/* -------------------------------
   Small phones
-------------------------------- */

@media (max-width: 575.98px) {
    .container,
    .footer-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero,
    .hero-section,
    .home-hero {
        padding-top: 96px;
    }

        .hero-title,
        .hero h1 {
            font-size: clamp(2.35rem, 13vw, 3.6rem);
            letter-spacing: -1.2px;
        }

        .hero-description,
        .hero p {
            font-size: 0.98rem;
        }

    .section-title,
    .services-hero h1,
    .portfolio-hero h1,
    .privacy-hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.8rem);
    }

    .service-card,
    .portfolio-card,
    .solution-card,
    .why-card,
    .process-card,
    .stat-card,
    .contact-card,
    .privacy-card,
    .service-detail-card,
    .faq-card {
        padding: 20px;
    }

        .portfolio-card img,
        .portfolio-image img,
        .portfolio-card-image {
            max-height: 220px;
        }

    .cookie-consent-card {
        padding: 20px;
    }

    .cookie-consent-content h3 {
        font-size: 1.3rem;
    }

    .cookie-consent-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .consultation-modal-dialog,
    .cookie-settings-dialog {
        padding: 22px;
        border-radius: 24px;
    }

        .consultation-modal-header h2,
        .cookie-settings-dialog h2 {
            font-size: 1.7rem;
        }
}

/* -------------------------------
   Extra small phones
-------------------------------- */

@media (max-width: 380px) {
    .hero-title,
    .hero h1 {
        font-size: 2.15rem;
    }

    .section-title,
    .services-hero h1,
    .portfolio-hero h1,
    .privacy-hero h1 {
        font-size: 1.75rem;
    }

    .btn,
    .btn-gradient,
    .btn-outline-glow {
        font-size: 0.9rem;
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-card,
    .portfolio-card,
    .solution-card,
    .why-card,
    .process-card,
    .stat-card {
        padding: 18px;
    }
}
/* Mobile navbar height reduction */
@media (max-width: 991.98px) {
    .site-header {
        padding: 10px 10px;
    }

    .nav-shell {
        padding: 10px 14px;
        min-height: 0;
        border-radius: 24px;
    }

    .brand-logo {
        max-width: 125px;
    }

    .navbar-brand.brand {
        padding: 0;
        margin: 0;
        line-height: 1;
    }

    .custom-toggler,
    .navbar-toggler {
        width: 46px;
        height: 46px;
        padding: 8px;
        border-radius: 14px;
    }
}
@media (max-width: 575.98px) {
    .site-header {
        padding: 8px 8px;
    }

    .nav-shell {
        padding: 8px 12px;
        border-radius: 22px;
    }

    .brand-logo {
        max-width: 112px;
    }

    .custom-toggler,
    .navbar-toggler {
        width: 42px;
        height: 42px;
    }
}
/* Services + Portfolio mobile hero spacing */
@media (max-width: 991.98px) {
    .service-page-hero,
    .portfolio-page-hero,
    .portfolio-hero {
        padding-top: 210px !important;
    }

        .service-page-hero .section-heading,
        .portfolio-page-hero .section-heading,
        .portfolio-hero .section-heading {
            margin-top: 20px;
        }
}

@media (max-width: 575.98px) {
    .service-page-hero,
    .portfolio-page-hero,
    .portfolio-hero {
        padding-top: 150px !important;
    }
}
/* Homepage mobile hero title fix */
@media (max-width: 575.98px) {
    .hero-section,
    .hero-full {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-card,
    .hero-card-full {
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

        .hero-title,
        .hero-content h1,
        .hero h1 {
            font-size: clamp(2rem, 9.4vw, 2.75rem) !important;
            line-height: 1.02 !important;
            letter-spacing: -0.8px !important;
            max-width: 100% !important;
            word-break: normal;
            overflow-wrap: normal;
            text-wrap: balance;
        }

        .hero-text,
        .hero-description,
        .hero-content p {
            max-width: 100%;
            font-size: 0.98rem;
            line-height: 1.65;
        }
}

@media (max-width: 380px) {
    .hero-title,
    .hero-content h1,
    .hero h1 {
        font-size: 1.95rem !important;
        line-height: 1.04 !important;
    }
}
/* Technical stack mobile fix */
@media (max-width: 767.98px) {
    .tech-stack-card,
    .technical-stack-card,
    .tech-card {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .tech-stack,
    .technical-stack,
    .tech-grid,
    .technology-grid,
    .technologies-grid,
    .tech-list,
    .tech-pills {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        margin-top: 22px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

        .tech-stack *,
        .technical-stack *,
        .tech-grid *,
        .technology-grid *,
        .technologies-grid *,
        .tech-list *,
        .tech-pills * {
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
        }

    .tech-item,
    .technology-item,
    .tech-pill,
    .stack-item {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 16px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .tech-stack,
    .technical-stack,
    .tech-grid,
    .technology-grid,
    .technologies-grid,
    .tech-list,
    .tech-pills {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}
@media (max-width: 767.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
.footer-logo-picture {
    display: inline-flex;
    align-items: center;
}

[data-theme="dark"] .footer-logo-light-picture {
    display: none;
}

[data-theme="light"] .footer-logo-dark-picture {
    display: none;
}
@media (max-width: 767.98px) {
    .hero-card,
    .hero-card-full {
        background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.58)), url("/images/hero-office-mobile.webp");
        background-size: cover;
        background-position: center;
    }

    html[data-theme="light"] .hero-card,
    html[data-theme="light"] .hero-card-full {
        background: linear-gradient(90deg, rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.68)), url("/images/hero-office-mobile.webp");
        background-size: cover;
        background-position: center;
    }
}