/* =========================================================
   USS TEKNOLOJİ VE DANIŞMANLIK
   GLOBAL SITE.CSS
========================================================= */

:root {
    --navy-950: #020b16;
    --navy-900: #061321;
    --navy-850: #081a2c;
    --navy-800: #0b2034;
    --blue: #1389ff;
    --blue-light: #38c8ff;
    --cyan: #40e3ff;
    --white: #ffffff;
    --text: #eef5fb;
    --muted: #9eb0c2;
    --line: rgba(255, 255, 255, .10);
    --dark-line: rgba(8, 30, 50, .11);
    --container: 1440px;
    --header-height: 78px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background: var(--navy-950);
    font-family: "Manrope", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    body.mobile-menu-open {
        overflow: hidden;
    }

.site-main {
    display: block;
    width: 100%;
    min-height: 1px;
}

main,
section,
article,
aside,
header,
footer,
nav {
    display: block;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min( calc(100% - 80px), var(--container) );
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.button {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .035em;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    color: #ffffff;
    background: linear-gradient( 110deg, #087ed2, #0764aa );
    box-shadow: 0 15px 35px rgba(4, 114, 190, .13);
}

    .button-primary:hover {
        box-shadow: 0 20px 45px rgba(4, 114, 190, .22);
    }

.button-secondary {
    border-color: rgba(255, 255, 255, .13);
    color: #d7e5ef;
    background: rgba(255, 255, 255, .025);
}

    .button-secondary:hover {
        border-color: rgba(64, 227, 255, .26);
        background: rgba(255, 255, 255, .045);
    }


/* ESKİ ANASAYFA UYUMLULUĞU */

.primary-button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: white;
    background: linear-gradient( 110deg, #087ed2, #075991 );
    font-size: 10px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease;
}

    .primary-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 40px rgba(0, 125, 210, .18);
    }

.secondary-button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    color: white;
    background: rgba(255, 255, 255, .025);
    font-size: 10px;
}


/* =========================================================
   EYEBROW
========================================================= */

.section-eyebrow,
.section-label {
    display: block;
    margin-bottom: 16px;
    color: #0b80d9;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-eyebrow-light {
    color: #43d7ff;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(2, 12, 22, .80);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .main-header.scrolled {
        background: rgba(2, 12, 22, .96);
        border-color: rgba(255, 255, 255, .10);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
    }

.header-shell {
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 26px;
}


/* =========================================================
   BRAND
========================================================= */

.site-brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(64, 227, 255, .28);
    color: #46d7ff;
    background: linear-gradient( 145deg, rgba(19, 137, 255, .18), rgba(255, 255, 255, .02) );
    font-size: 17px;
    font-weight: 800;
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .site-brand-copy strong {
        color: white;
        font-size: 17px;
        font-weight: 800;
        letter-spacing: .04em;
    }

    .site-brand-copy small {
        margin-top: 5px;
        color: #72889a;
        font-size: 6px;
        font-weight: 700;
        letter-spacing: .12em;
    }


/* =========================================================
   NAV
========================================================= */

.main-nav {
    height: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
    height: 100%;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    outline: 0;
    cursor: pointer;
    color: #9cb0c0;
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .025em;
    transition: color .2s ease;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 13px;
        right: 13px;
        bottom: 0;
        height: 2px;
        transform: scaleX(0);
        background: #3bd3ff;
        transition: transform .22s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: white;
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

.nav-chevron {
    color: #43d5ff;
    font-size: 8px;
    transition: transform .2s ease;
}

.has-mega-menu.mega-open
.nav-chevron {
    transform: rotate(180deg);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    flex-shrink: 0;
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(64, 215, 255, .22);
    color: white;
    background: linear-gradient( 110deg, #087ccb, #07558e );
    font-size: 8px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .header-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(0, 125, 210, .15);
    }

    .header-cta span {
        color: #acebff;
        font-size: 14px;
    }


/* =========================================================
   MEGA MENU
========================================================= */

.has-mega-menu {
    position: static;
}

.mega-menu {
    position: fixed;
    z-index: 999;
    left: 0;
    top: var(--header-height);
    width: 100%;
    max-height: calc( 100vh - var(--header-height) );
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(3, 15, 26, .985);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-mega-menu.mega-open
.mega-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-inner {
    padding-top: 38px;
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, .9fr);
    gap: 34px;
}

.mega-menu-column {
    min-width: 0;
}

.mega-menu-title {
    display: block;
    margin-bottom: 16px;
    color: #43d5ff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
}

.mega-service-link {
    min-height: 60px;
    padding: 9px 7px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    transition: padding-left .2s ease, background .2s ease;
}

    .mega-service-link:hover {
        padding-left: 12px;
        background: rgba(255, 255, 255, .025);
    }

    .mega-service-link > span {
        color: #527085;
        font-size: 7px;
        font-weight: 800;
    }

    .mega-service-link strong {
        display: block;
        margin-bottom: 4px;
        color: #d7e3ea;
        font-size: 9px;
        font-weight: 700;
    }

    .mega-service-link small {
        display: block;
        color: #687f91;
        font-size: 7px;
        line-height: 1.5;
    }

.mega-menu-info {
    margin-top: 20px;
    padding: 18px;
    border-left: 2px solid #42d6ff;
    background: rgba(255, 255, 255, .02);
}

    .mega-menu-info > span {
        display: block;
        margin-bottom: 8px;
        color: #42d6ff;
        font-size: 6px;
        font-weight: 800;
    }

    .mega-menu-info strong {
        display: block;
        margin-bottom: 8px;
        color: #c9d7e0;
        font-size: 9px;
        line-height: 1.5;
    }

    .mega-menu-info p {
        margin: 0;
        color: #72899b;
        font-size: 7px;
        line-height: 1.7;
    }


/* =========================================================
   MEGA FEATURED
========================================================= */

.mega-menu-featured {
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(64, 211, 255, .14);
    background: linear-gradient( 145deg, rgba(8, 99, 162, .17), rgba(255, 255, 255, .018) );
}

.mega-featured-label {
    display: block;
    margin-bottom: 42px;
    color: #42d6ff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
}

.mega-menu-featured h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.mega-menu-featured p {
    margin-bottom: 27px;
    color: #8298aa;
    font-size: 9px;
    line-height: 1.8;
}

.mega-featured-button {
    min-height: 45px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: #0879c7;
    font-size: 8px;
    font-weight: 800;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .11);
    cursor: pointer;
    background: rgba(255, 255, 255, .025);
}

    .mobile-menu-button span {
        width: 17px;
        height: 1px;
        margin: 5px auto;
        display: block;
        background: white;
        transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-menu-button.active
    span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-button.active
    span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active
    span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

.mobile-nav-backdrop {
    display: none;
}

.mobile-nav-cta {
    display: none;
}


/* =========================================================
   REVEAL
   İçerik JS çalışmasa bile ASLA kaybolmaz.
========================================================= */

.reveal {
    opacity: 1;
    transform: none;
}

    .reveal.visible {
        animation: globalRevealUp .65s ease both;
    }

@keyframes globalRevealUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   HOMEPAGE - HERO UYUMLULUĞU
========================================================= */

.hero,
.home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient( circle at 78% 38%, rgba(19, 137, 255, .15), transparent 34% ), linear-gradient( 115deg, #020b16, #06192b 58%, #02101c );
}

.hero-container,
.home-hero-layout {
    width: min( calc(100% - 80px), var(--container) );
    min-height: 100vh;
    margin: auto;
    padding: 140px 0 80px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
}

.hero-badge,
.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    color: #43d6ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.hero h1,
.home-hero h1 {
    margin: 24px 0;
    max-width: 850px;
    color: white;
    font-size: clamp( 50px, 5.6vw, 84px );
    line-height: 1;
    letter-spacing: -.055em;
}

    .hero h1 span,
    .home-hero h1 span {
        color: #43d5ff;
    }

.hero-description,
.home-hero-description {
    max-width: 690px;
    color: #9db0c0;
    font-size: 15px;
    line-height: 1.9;
}

.hero-buttons,
.home-hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 13px;
}


/* =========================================================
   HOMEPAGE SECTION COMMON
========================================================= */

.services-preview,
.services-section,
.problem-section,
.process-section,
.stats-section,
.sectors-section,
.why-section,
.knowledge-section,
.blog-section,
.contact-section,
.home-contact-section {
    position: relative;
}

.services-preview,
.services-section,
.problem-section,
.sectors-section,
.knowledge-section,
.blog-section {
    padding: 110px 0;
}

.section-header,
.section-heading {
    margin-bottom: 50px;
}

    .section-header h2,
    .section-heading h2 {
        margin: 14px 0 0;
        max-width: 800px;
        color: #0b1c2d;
        font-size: clamp( 35px, 4vw, 55px );
        line-height: 1.08;
        letter-spacing: -.045em;
    }


/* =========================================================
   HOME SERVICES
========================================================= */

.services-preview,
.services-section {
    color: #102438;
    background: #f4f7fa;
}

.service-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d8e2e9;
    border-left: 1px solid #d8e2e9;
}

.service-card {
    position: relative;
    min-width: 0;
    min-height: 330px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d8e2e9;
    border-bottom: 1px solid #d8e2e9;
    background: rgba(255, 255, 255, .45);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .service-card:hover {
        z-index: 2;
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 20px 50px rgba(9, 41, 68, .08);
    }

.service-number {
    position: absolute;
    right: 24px;
    top: 20px;
    color: rgba(10, 44, 73, .10);
    font-size: 36px;
    font-weight: 800;
}

.service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #bedff5;
    color: #0877d1;
    background: #f5fbff;
    font-size: 9px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 13px;
    color: #173045;
    font-size: 17px;
    line-height: 1.4;
}

.service-card p {
    margin-bottom: 20px;
    color: #697c8d;
    font-size: 10px;
    line-height: 1.8;
}

.service-card-link,
.service-card > a {
    margin-top: auto;
    color: #0877d1;
    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   TRUST
========================================================= */

.trust-strip,
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-left: 1px solid rgba(255, 255, 255, .08);
}

    .trust-strip > *,
    .trust-bar > * {
        min-height: 85px;
        padding: 18px;
        display: flex;
        align-items: center;
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        color: #a8bac7;
        font-size: 9px;
    }


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 110px 0;
    background: #03101d;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.process-card,
.process-item {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

    .process-card h3,
    .process-item h3 {
        color: white;
    }

    .process-card p,
    .process-item p {
        color: #8298a9;
        font-size: 10px;
        line-height: 1.8;
    }


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 85px 0;
    background: #071b2e;
}

.stats-grid,
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.stat-card,
.stat-item {
    min-height: 150px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


/* =========================================================
   SECTORS
========================================================= */

.sectors-section {
    color: #102438;
    background: #eef3f7;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d8e2e9;
    border-left: 1px solid #d8e2e9;
}

.sector-card {
    min-height: 230px;
    padding: 25px;
    border-right: 1px solid #d8e2e9;
    border-bottom: 1px solid #d8e2e9;
}


/* =========================================================
   WHY
========================================================= */

.why-section {
    padding: 110px 0;
    background: #03101d;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.why-card,
.why-item {
    min-height: 250px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


/* =========================================================
   KNOWLEDGE / BLOG
========================================================= */

.knowledge-section,
.blog-section {
    color: #102438;
    background: #f7f9fb;
}

.knowledge-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.knowledge-card,
.blog-card {
    min-height: 320px;
    padding: 28px;
    border: 1px solid #d8e2e9;
    background: white;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 85px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: #020b14;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 65px;
}

.footer-brand-column {
    max-width: 420px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.footer-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(65, 212, 255, .25);
    color: #43d5ff;
    font-size: 18px;
    font-weight: 800;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
}

    .footer-brand-copy strong {
        color: white;
        font-size: 18px;
    }

    .footer-brand-copy small {
        margin-top: 4px;
        color: #6c8294;
        font-size: 6px;
        font-weight: 700;
        letter-spacing: .12em;
    }

.footer-brand-column > p {
    max-width: 380px;
    margin-bottom: 25px;
    color: #728899;
    font-size: 10px;
    line-height: 1.9;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #43d5ff;
    font-size: 9px;
    font-weight: 800;
}

    .footer-contact-link span {
        font-size: 14px;
    }

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-title {
    margin-bottom: 11px;
    color: #43d5ff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
}

.footer-column a {
    color: #8196a6;
    font-size: 9px;
    line-height: 1.5;
    transition: color .2s ease, transform .2s ease;
}

    .footer-column a:hover {
        color: white;
        transform: translateX(3px);
    }

.footer-system-bar {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-left: 1px solid rgba(255, 255, 255, .07);
}

    .footer-system-bar > div {
        min-height: 80px;
        padding: 17px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid rgba(255, 255, 255, .07);
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .footer-system-bar span {
        margin-bottom: 7px;
        color: #4f6a7d;
        font-size: 6px;
        font-weight: 800;
    }

    .footer-system-bar strong {
        color: #acbbc6;
        font-size: 9px;
    }

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .footer-bottom p,
    .footer-bottom span {
        margin: 0;
        color: #536c7e;
        font-size: 7px;
    }


/* =========================================================
   TABLET / MOBILE HEADER
========================================================= */

@media (max-width: 1150px) {

    .header-cta {
        display: none;
    }


    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }


    .main-nav {
        position: fixed;
        z-index: 1100;
        right: 0;
        top: var(--header-height);
        width: min( 430px, 92vw );
        height: calc( 100vh - var(--header-height) );
        margin: 0;
        padding: 14px 22px 35px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        border-left: 1px solid rgba(255, 255, 255, .08);
        background: #03101d;
        transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    }


        .main-nav.mobile-open {
            visibility: visible;
            opacity: 1;
            transform: translateX(0);
        }


    .nav-item {
        width: 100%;
        height: auto;
        display: block;
    }


    .nav-link {
        width: 100%;
        height: auto;
        min-height: 57px;
        padding: 0;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        font-size: 10px;
    }


        .nav-link::after {
            display: none;
        }


        .nav-link.active {
            color: #46d6ff;
        }


    /* MOBILE MEGA */

    .has-mega-menu {
        width: 100%;
    }


    .mega-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border: 0;
        background: transparent;
        box-shadow: none;
        transition: max-height .35s ease;
    }


    .has-mega-menu.mega-open
    .mega-menu {
        max-height: 2600px;
    }


    .mega-menu-inner {
        width: 100%;
        padding: 5px 0 25px;
        display: block;
    }


    .mega-menu-column {
        margin-bottom: 23px;
    }


    .mega-menu-title {
        margin: 14px 0 7px;
    }


    .mega-service-link {
        min-height: 53px;
        padding: 7px 5px;
    }


        .mega-service-link:hover {
            padding-left: 5px;
        }


    .mega-menu-info {
        display: none;
    }


    .mega-menu-featured {
        margin-top: 12px;
        min-height: auto;
        padding: 22px;
    }


    .mega-featured-label {
        margin-bottom: 20px;
    }


    .mobile-nav-cta {
        display: block;
        padding-top: 22px;
    }


        .mobile-nav-cta a {
            min-height: 50px;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            background: linear-gradient( 110deg, #087ccc, #07548c );
            font-size: 9px;
            font-weight: 800;
        }


    .mobile-nav-backdrop {
        position: fixed;
        z-index: 1050;
        inset: var(--header-height) 0 0;
        display: block;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        background: rgba(0, 0, 0, .62);
        backdrop-filter: blur(3px);
        transition: opacity .25s ease, visibility .25s ease;
    }


        .mobile-nav-backdrop.visible {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }


    /* HOMEPAGE */

    .hero-container,
    .home-hero-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .service-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .sectors-grid,
    .stats-grid,
    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .why-grid,
    .knowledge-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 700px) {

    :root {
        --header-height: 68px;
    }


    .container {
        width: min( calc(100% - 32px), var(--container) );
    }


    html {
        scroll-padding-top: 82px;
    }


    .site-brand-mark {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }


    .site-brand-copy strong {
        font-size: 15px;
    }


    .site-brand-copy small {
        font-size: 5px;
    }


    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }


    .main-nav {
        width: 100%;
        padding: 10px 20px 35px;
    }


    /* HOME */

    .hero-container,
    .home-hero-layout {
        width: min( calc(100% - 32px), var(--container) );
        min-height: auto;
        padding: 125px 0 70px;
    }


    .hero h1,
    .home-hero h1 {
        font-size: clamp( 40px, 12vw, 55px );
    }


    .hero-description,
    .home-hero-description {
        font-size: 14px;
    }


    .hero-buttons,
    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .service-grid,
    .services-grid,
    .process-grid,
    .stats-grid,
    .stats-container,
    .sectors-grid,
    .why-grid,
    .knowledge-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }


    .services-preview,
    .services-section,
    .problem-section,
    .process-section,
    .stats-section,
    .sectors-section,
    .why-section,
    .knowledge-section,
    .blog-section {
        padding: 80px 0;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 65px;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .footer-brand-column {
        max-width: 100%;
    }


    .footer-system-bar {
        grid-template-columns: repeat(2, 1fr);
    }


        .footer-system-bar > div:last-child {
            grid-column: 1 / -1;
        }


    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media ( prefers-reduced-motion: reduce ) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =====================================================
   USS HEADER LOGO
===================================================== */

.uss-brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.uss-header-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: 220px;
    object-fit: contain;
}

/* Tablet */

@media (max-width: 1200px) {
    .uss-header-logo {
        height: 48px;
        max-width: 190px;
    }
}

/* Telefon */

@media (max-width: 600px) {
    .uss-header-logo {
        height: 42px;
        max-width: 165px;
    }
}
/* =====================================================
   USS HEADER LOGO + YAZI
===================================================== */

.uss-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.uss-header-logo {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.uss-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

    .uss-brand-text strong {
        color: #ffffff;
        font-size: 24px;
        font-weight: 800;
        letter-spacing: .04em;
    }

    .uss-brand-text small {
        margin-top: 7px;
        color: #6f8496;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: .16em;
        white-space: nowrap;
    }


/* Tablet */

@media (max-width: 1200px) {

    .uss-header-logo {
        width: 50px;
        height: 50px;
    }

    .uss-brand-text strong {
        font-size: 21px;
    }
}


/* Telefon */

@media (max-width: 600px) {

    .uss-brand {
        gap: 11px;
    }

    .uss-header-logo {
        width: 43px;
        height: 43px;
    }

    .uss-brand-text strong {
        font-size: 18px;
    }

    .uss-brand-text small {
        margin-top: 5px;
        font-size: 6px;
        letter-spacing: .12em;
    }
}

/* =====================================================
   USS - FLOATING WHATSAPP
===================================================== */

.uss-whatsapp-float {
    position: fixed;
    z-index: 9999;
    right: 24px;
    bottom: 24px;
    min-height: 56px;
    padding: 7px 18px 7px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #ffffff;
    background: #1fbd61;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

    .uss-whatsapp-float:hover {
        transform: translateY(-4px);
        color: #ffffff;
        background: #18a953;
        box-shadow: 0 22px 55px rgba(0,0,0,.28);
    }

.uss-whatsapp-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0,0,0,.10);
}

    .uss-whatsapp-icon svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.uss-whatsapp-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

@media (max-width: 600px) {

    .uss-whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
        min-height: 55px;
        padding: 6px;
        justify-content: center;
    }

    .uss-whatsapp-icon {
        width: 42px;
        height: 42px;
    }

    .uss-whatsapp-label {
        display: none;
    }
}
/* =========================================================
   USS - MOBILE MENU BLUR / Z-INDEX KESİN DÜZELTME
========================================================= */

/*
   Menü açıldığında sayfanın kendisine filter uygulanmasın.
   Blur efekti bazı tarayıcılarda mobil menüyü de bulanıklaştırıyor.
*/
body.menu-open main,
body.menu-open footer,
body.menu-open .page-content,
body.menu-open .site-content {
    filter: none !important;
    -webkit-filter: none !important;
}


/*
   Header her zaman en üst katmanda.
*/
.site-header,
.uss-header,
.main-header {
    position: relative;
    z-index: 10000 !important;
}


/*
   Menü arka planı.
   Backdrop blur tamamen kaldırıldı.
*/
.mobile-menu-overlay,
.mobile-nav-overlay,
.menu-overlay,
.nav-overlay {
    z-index: 9000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: rgba(1, 12, 22, .94) !important;
}


/*
   Asıl menü paneli overlay'in üzerinde olacak.
*/
.mobile-menu,
.mobile-menu-panel,
.mobile-nav,
.mobile-navigation,
.mobile-nav-panel,
.main-nav.mobile-open {
    position: fixed;
    z-index: 9500 !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1;
    background: #031422 !important;
}


    /*
   Menü içerisindeki bütün yazı ve butonların
   hiçbir şekilde blur miras almamasını sağla.
*/
    .mobile-menu *,
    .mobile-menu-panel *,
    .mobile-nav *,
    .mobile-navigation *,
    .mobile-nav-panel * {
        filter: none !important;
        -webkit-filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }


/* =========================================================
   TABLET / ZOOM
========================================================= */

@media (max-width: 1200px) {

    .mobile-menu,
    .mobile-menu-panel,
    .mobile-nav,
    .mobile-navigation,
    .mobile-nav-panel {
        background: #031422 !important;
        filter: none !important;
        -webkit-filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 700px) {

    .mobile-menu-overlay,
    .mobile-nav-overlay,
    .menu-overlay,
    .nav-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(1, 12, 22, .98) !important;
    }


    .mobile-menu,
    .mobile-menu-panel,
    .mobile-nav,
    .mobile-navigation,
    .mobile-nav-panel {
        background: #031422 !important;
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-font-smoothing: antialiased;
    }
}