/* Websiteji: tek aktif CSS (genel + hizmet liste + hizmet detay) */
:root {
    --primary: #075cf6;
    --primary-dark: #0347b8;
    --cyan: #0aa7ee;
    --navy: #0b162b;
    --navy-soft: #14233e;
    --text: #172033;
    --muted: #667085;
    --border: #e4e7ec;
    --surface: #f4f7fb;
    --surface-2: #eaf1fa;
    --white: #ffffff;
    --success: #067647;
    --danger: #b42318;
    --container: 1220px;
    --header-height: 78px;
    --hero-height: calc(100dvh - var(--header-height));
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font-heading: var(--font-display);
    --radius-xs: 2px;
    --radius-sm: 4px;
    --shadow-sm: 0 8px 24px rgba(11, 22, 43, 0.08);
    --shadow-md: 0 18px 50px rgba(3, 15, 35, 0.16);
}.mega-service-link small {
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(7, 92, 246, .1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}.mobile-service-category {
    border-top: 1px solid rgba(226, 232, 240, .9);
}.mobile-service-category__trigger {
    width: 100%;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font: inherit;
    font-weight: 700;
    text-align: left;
}.mobile-service-category__trigger span {
        transition: transform .2s ease;
    }.mobile-service-category.is-open .mobile-service-category__trigger span {
    transform: rotate(45deg);
}.mobile-service-category__panel {
    display: grid;
    gap: 2px;
    padding: 0 0 8px 12px;
}.mobile-service-category__panel[hidden] {
        display: none;
    }.mobile-service-category__panel a {
        min-height: 44px;
    }*,
*::before,
*::after {
    box-sizing: border-box;
}html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
    overflow-x: clip;
}body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: clip;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }img {
    display: block;
    max-width: 100%;
}svg {
    display: block;
}a {
    color: inherit;
    text-decoration: none;
}button,
input,
select,
textarea {
    font: inherit;
}button {
    color: inherit;
}ul,
ol {
    margin: 0;
    padding: 0;
}ul {
    list-style: none;
}h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--navy);
}h1,
h2 {
    text-wrap: balance;
}p {
    text-wrap: pretty;
}:focus-visible {
    outline: 3px solid rgba(7, 92, 246, 0.32);
    outline-offset: 3px;
}::selection {
    background: var(--primary);
    color: var(--white);
}.skip-link {
    position: fixed;
    left: 14px;
    top: -80px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: top 180ms ease;
}.skip-link:focus {
        top: 14px;
    }.container,
.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}.section {
    position: relative;
    padding: 108px 0;
}.section--surface {
    background: var(--surface);
}.section--white {
    background: var(--white);
}.section--navy {
    background: var(--navy);
    color: var(--white);
}.section--navy h2,
    .section--navy h3 {
        color: var(--white);
    }.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}.section-kicker::before {
        content: "";
        width: 32px;
        height: 2px;
        background: currentColor;
    }.section-kicker--light {
    color: #73b5ff;
}.section-title {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}.section-intro {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}.section--navy .section-intro,
.contact .section-intro {
    color: rgba(255, 255, 255, 0.68);
}.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 46px;
}.section-head__copy {
    max-width: 790px;
}.btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}.btn:hover {
        transform: translateY(-2px);
    }.btn-primary {
    background: var(--primary);
    color: var(--white);
}.btn-primary:hover {
        background: var(--primary-dark);
    }.btn-light {
    background: var(--white);
    color: var(--navy);
}.btn-light:hover {
        background: #eaf1fa;
    }.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.48);
    color: var(--white);
    background: transparent;
}.btn-outline-light:hover {
        background: var(--white);
        color: var(--navy);
        border-color: var(--white);
    }.btn-outline {
    border-color: #c9d2df;
    color: var(--navy);
    background: var(--white);
}.btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
    }.btn svg {
    width: 18px;
    height: 18px;
}.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}.text-link svg {
        width: 17px;
        height: 17px;
        transition: transform 200ms ease;
    }.text-link:hover svg {
        transform: translateX(4px);
    }.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid rgba(214, 222, 233, 0.9);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}.header.is-scrolled {
        border-bottom-color: var(--border);
        box-shadow: 0 8px 22px rgba(11, 22, 43, 0.06);
    }.nav {
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}.brand-image {
    width: 184px;
    max-width: min(44vw, 184px);
    height: auto;
}.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}.nav-links > a,
.nav-dropdown__trigger {
    position: relative;
    padding: 28px 0 25px;
    border: 0;
    background: transparent;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}.nav-dropdown__chevron {
    color: var(--primary);
    font-size: 11px;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 180ms ease;
}.nav-links > a::after,
.nav-dropdown__trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--primary);
    transition: right 200ms ease;
}.nav-links > a:hover,
.nav-links > a[aria-current="page"],
.nav-dropdown__trigger:hover,
.nav-dropdown.is-current .nav-dropdown__trigger,
.nav-dropdown.is-open .nav-dropdown__trigger {
    color: var(--primary);
}.nav-links > a:hover::after,
    .nav-links > a[aria-current="page"]::after,
    .nav-dropdown__trigger:hover::after,
    .nav-dropdown.is-current .nav-dropdown__trigger::after,
    .nav-dropdown.is-open .nav-dropdown__trigger::after {
        right: 0;
    }.nav-dropdown.is-open .nav-dropdown__chevron {
    transform: translateY(-1px) rotate(180deg);
}.mega-menu {
    position: fixed;
    z-index: 1003;
    top: var(--header-height);
    left: 50%;
    width: min(calc(100vw - 48px), 1120px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}.nav-dropdown.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}.mega-menu__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.85fr;
    gap: 30px;
    min-height: 280px;
    max-height: 420px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(11, 22, 43, 0.12);
}.mega-menu a {
    position: static;
    padding: 0;
    color: inherit;
}.mega-menu a::after {
        display: none;
    }.mega-menu__column {
    display: grid;
    align-content: start;
    gap: 4px;
}.mega-menu__column h2,
    .mega-menu__cta-panel h2 {
        margin: 0 0 12px;
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 800;
        line-height: 1.25;
        text-transform: uppercase;
    }.mega-menu__eyebrow {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}.mega-service-link {
    display: block;
    margin-left: -12px;
    padding: 10px 12px !important;
    border-left: 2px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}.mega-service-link:hover,
    .mega-service-link:focus-visible {
        border-left-color: var(--primary);
        background: var(--surface);
        color: var(--primary) !important;
    }.mega-menu__cta-panel {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--surface);
}.mega-menu__cta-panel p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.5;
    }.mega-menu__button {
    width: max-content;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 16px !important;
    color: var(--white) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}.mega-menu__all-link {
    color: var(--primary) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}.nav-cta {
    flex: 0 0 auto;
}.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
}.menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
        content: "";
        width: 22px;
        height: 2px;
        grid-area: 1 / 1;
        background: var(--navy);
        transition: transform 200ms ease, opacity 200ms ease;
    }.menu-toggle::before {
        transform: translateY(-7px);
    }.menu-toggle::after {
        transform: translateY(7px);
    }.menu-toggle[aria-expanded="true"] span {
        opacity: 0;
    }.menu-toggle[aria-expanded="true"]::before {
        transform: rotate(45deg);
    }.menu-toggle[aria-expanded="true"]::after {
        transform: rotate(-45deg);
    }.mobile-nav {
    display: none;
}.menu-backdrop {
    display: none;
}.mobile-nav-meta {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
}.cookie-consent {
    position: fixed;
    z-index: 1500;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}.cookie-consent[hidden] {
        display: none;
    }.cookie-consent__body {
    min-width: 0;
}.cookie-consent__body strong {
        display: block;
        margin-bottom: 3px;
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 17px;
    }.cookie-consent__body p {
        max-width: 690px;
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.55;
    }.cookie-consent__actions,
.cookie-consent__prefs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}.cookie-consent__prefs {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}.cookie-consent__prefs[hidden] {
        display: none;
    }.cookie-consent__prefs label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 700;
    }.hero {
    position: relative;
    height: var(--hero-height);
    min-height: 0;
    background: var(--navy);
    overflow: hidden;
}.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    min-height: 0;
}.hero-swiper .swiper-slide {
        position: relative;
        display: none;
        align-items: center;
        overflow: hidden;
    }.hero-swiper .swiper-slide:first-child {
            display: flex;
        }.hero-swiper.swiper-initialized .swiper-slide {
        display: flex;
    }.hero-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 6.8s ease, object-position 6.8s ease;
    will-change: transform;
}.swiper-slide-active .hero-slide__image {
    transform: scale(1);
}.hero-slide:nth-child(2) .hero-slide__image {
    object-position: 52% center;
}.hero-slide:nth-child(3) .hero-slide__image {
    object-position: 45% center;
}.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(4, 13, 30, 0.71);
}.hero-slide::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 8vw;
    bottom: 6vh;
    width: 260px;
    height: 160px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.55;
    animation: hero-line 26s linear infinite alternate;
}@keyframes hero-line {
    to {
        transform: translate3d(-34px, -18px, 0);
        opacity: 0.28;
    }
}.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 64px;
    align-items: center;
    height: 100%;
    padding-top: clamp(38px, 6vh, 70px);
    padding-bottom: clamp(76px, 10vh, 104px);
}.hero-copy {
    max-width: 850px;
}.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: #a7cfff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-30px);
}.hero-eyebrow::before {
        content: "";
        width: 42px;
        height: 2px;
        background: var(--primary);
    }.hero-title {
    max-width: 930px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(46px, 6.7vw, 91px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    opacity: 0;
    transform: translateY(36px);
}h2.hero-title {
    font-family: var(--font-display);
}.hero-description {
    max-width: 660px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 2vw, 21px);
    opacity: 0;
    transform: translateY(26px);
}.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    transform: translateY(24px);
}.hero-proof {
    align-self: end;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 22px;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
}.hero-proof__label {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}.hero-proof__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 600;
}.hero-proof__item svg {
        width: 18px;
        height: 18px;
        color: #71b6ff;
    }.swiper-slide-active .hero-eyebrow {
    animation: reveal-left 720ms 120ms ease forwards;
}.swiper-slide-active .hero-title {
    animation: reveal-up 850ms 220ms ease forwards;
}.swiper-slide-active .hero-description {
    animation: reveal-up 780ms 360ms ease forwards;
}.swiper-slide-active .hero-actions {
    animation: reveal-up 760ms 480ms ease forwards;
}.swiper-slide-active .hero-proof {
    animation: reveal-up 760ms 620ms ease forwards;
}.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-eyebrow,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-title,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-description,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-actions,
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-proof {
    opacity: 1;
    transform: none;
}@keyframes reveal-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.hero-controls {
    position: absolute;
    z-index: 5;
    left: max(20px, calc((100vw - var(--container)) / 2));
    right: max(20px, calc((100vw - var(--container)) / 2));
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}.hero-progress {
    position: relative;
    width: 190px;
    height: 2px;
    background: rgba(255, 255, 255, 0.24);
    overflow: hidden;
}.hero-progress span {
        display: block;
        width: 100%;
        height: 100%;
        background: var(--white);
        transform: scaleX(0);
        transform-origin: left center;
        will-change: transform;
    }.hero-pagination {
    position: static !important;
    width: auto !important;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}.hero-nav {
    margin-left: auto;
    display: flex;
    gap: 8px;
    pointer-events: auto;
}.hero-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 0;
    background: rgba(11, 22, 43, 0.24);
    color: var(--white);
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease;
}.hero-arrow:hover {
        background: var(--primary);
        border-color: var(--primary);
    }.hero-arrow svg {
        width: 18px;
        height: 18px;
    }.marquee {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}.marquee__track {
    width: max-content;
    display: flex;
    animation: marquee 34s linear infinite;
    will-change: transform;
}.marquee__group {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 15px 11px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    white-space: nowrap;
}.marquee__group span {
        display: inline-flex;
        align-items: center;
        gap: 22px;
    }.marquee__group span::after {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.68);
        }@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}.trust-strip {
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}.trust-item {
    min-height: 126px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-right: 1px solid var(--border);
}.trust-item:last-child {
        border-right: 0;
    }.trust-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: var(--surface);
    color: var(--primary);
}.trust-icon svg {
        width: 23px;
        height: 23px;
    }.trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 15px;
}.trust-item small {
    color: var(--muted);
}.services::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 119.5H120M119.5 0V120' fill='none' stroke='%23C9D7E8' stroke-width='1'/%3E%3C/svg%3E");
}.services {
    padding-top: 88px;
    padding-bottom: 88px;
}.services .container,
    .services .site-container {
        position: relative;
        z-index: 1;
    }.services .section-head {
        margin-bottom: 34px;
    }.services-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}.services-slider-controls {
    display: flex;
    gap: 6px;
}.services-slider-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #bfd0e0;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}.services-slider-button:hover {
        color: var(--white);
        background: var(--primary);
        border-color: var(--primary);
    }.services-slider-button svg {
        width: 18px;
        height: 18px;
    }.services-swiper {
    width: 100%;
    overflow: hidden;
    padding: 1px 0 4px;
}.services-swiper .swiper-wrapper {
        align-items: stretch;
    }.services-swiper .swiper-slide {
        height: auto;
    }.services-swiper:not(.swiper-initialized) .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }.service-card {
    position: relative;
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #c8d4e3;
    border-radius: 0;
    overflow: hidden;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}.service-card::after {
        content: "";
        position: absolute;
        left: 0;
        right: 100%;
        bottom: 0;
        height: 3px;
        background: var(--primary);
        transition: right 320ms ease;
    }.service-card:hover {
        transform: translateY(-2px);
        border-color: #9eb2cb;
        box-shadow: var(--shadow-sm);
    }.service-card:hover::after {
            right: 0;
        }.service-image {
    position: relative;
    height: 136px;
    flex: 0 0 auto;
    overflow: hidden;
    background: #dce5f0;
    border-bottom: 1px solid #d5dfea;
}.service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 420ms ease;
    }.service-card:hover .service-image img {
    transform: scale(1.045);
}.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 51, 0.13);
    pointer-events: none;
}.service-number {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    min-width: 30px;
    height: 24px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 27, 51, 0.88);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}.service-icon {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: -20px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #bfcde0;
    color: var(--primary);
    background: var(--white);
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}.service-card:hover .service-icon {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}.service-icon svg {
    width: 21px;
    height: 21px;
}.service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 31px 18px 18px;
}.service-category {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}.service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}.service-card p {
    margin-bottom: 13px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.55;
}.service-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0 0 15px;
    color: #40506a;
    font-size: 10.5px;
    font-weight: 700;
}.service-scope li {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }.service-scope li::before {
            content: "";
            width: 4px;
            height: 4px;
            flex: 0 0 auto;
            background: var(--primary);
        }.service-card .text-link {
    margin-top: auto;
}.empty-card::after {
    display: none;
}.references {
    overflow: hidden;
}.references::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.16;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='120' viewBox='0 0 220 120'%3E%3Cpath d='M0 90H70V20H170V115H220' fill='none' stroke='%23FFFFFF' stroke-opacity='.28' stroke-width='1'/%3E%3Ccircle cx='70' cy='90' r='3' fill='%23075CF6'/%3E%3Ccircle cx='170' cy='20' r='3' fill='%230AA7EE'/%3E%3C/svg%3E");
        animation: background-drift 40s linear infinite alternate;
    }@keyframes background-drift {
    to {
        transform: translate3d(-80px, 22px, 0);
    }
}.references .container,
.references .site-container {
    position: relative;
    z-index: 1;
}.references-grid {
    display: grid;
    gap: 72px;
}.reference-card {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    align-items: center;
    gap: 58px;
}.reference-card:nth-child(even) .reference-visual {
        order: 2;
    }.reference-card:nth-child(even) .reference-content {
        order: 1;
    }.reference-visual {
    position: relative;
    min-height: 490px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #152844;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}.reference-visual::before {
        content: "";
        position: absolute;
        inset: 30px 30px auto auto;
        width: 120px;
        height: 120px;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }.mock-browser {
    position: absolute;
    left: 8%;
    top: 11%;
    width: 78%;
    height: 74%;
    background: #f8fafd;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    transition: transform 500ms ease;
}.reference-card:hover .mock-browser {
    transform: scale(1.035);
}.mock-toolbar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: #e8eef6;
    border-bottom: 1px solid #d4dde8;
}.mock-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #93a4b9;
}.mock-address {
    width: 48%;
    height: 12px;
    margin-left: 8px;
    background: #d7e0eb;
}.mock-site {
    height: calc(100% - 34px);
    overflow: hidden;
}.mock-site__nav {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: var(--white);
    border-bottom: 1px solid #e5eaf1;
}.mock-logo {
    width: 72px;
    height: 12px;
    background: var(--navy);
}.mock-menu {
    display: flex;
    gap: 8px;
}.mock-menu i {
        width: 22px;
        height: 5px;
        background: #c8d1de;
    }.mock-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 160px;
    background: #eaf1fa;
}.mock-hero__text {
    padding: 26px 22px;
}.mock-title {
    width: 85%;
    height: 15px;
    margin-bottom: 11px;
    background: var(--navy);
}.mock-title.short {
        width: 62%;
    }.mock-copy {
    width: 76%;
    height: 7px;
    margin-top: 8px;
    background: #9aa9bb;
}.mock-button {
    width: 72px;
    height: 20px;
    margin-top: 18px;
    background: var(--primary);
}.mock-picture {
    position: relative;
    overflow: hidden;
    background: #a9c7ec;
}.mock-picture::before,
    .mock-picture::after {
        content: "";
        position: absolute;
        background: #6d9fdc;
    }.mock-picture::before {
        width: 110px;
        height: 110px;
        left: 12px;
        bottom: -40px;
        transform: rotate(28deg);
    }.mock-picture::after {
        width: 70px;
        height: 70px;
        right: 18px;
        top: 18px;
    }.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px;
    background: var(--white);
}.mock-card {
    height: 76px;
    padding: 10px;
    border: 1px solid #dbe3ed;
}.mock-card i {
        display: block;
        width: 22px;
        height: 22px;
        margin-bottom: 10px;
        background: var(--primary);
    }.mock-card b {
        display: block;
        width: 70%;
        height: 6px;
        background: #77889d;
    }.mock-phone {
    position: absolute;
    z-index: 2;
    right: 6%;
    bottom: 6%;
    width: 126px;
    height: 255px;
    padding: 9px;
    background: #07142a;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38);
    transition: transform 450ms ease;
}.reference-card:hover .mock-phone {
    transform: translateY(-4px);
}.mock-phone__screen {
    height: 100%;
    overflow: hidden;
    background: #f8fafd;
}.mock-phone__top {
    height: 18px;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}.mock-phone__hero {
    height: 90px;
    padding: 18px 10px;
    background: var(--primary);
}.mock-phone__hero i {
        display: block;
        width: 75%;
        height: 7px;
        margin-bottom: 8px;
        background: var(--white);
    }.mock-phone__hero i:last-child {
            width: 52%;
            opacity: 0.65;
        }.mock-phone__cards {
    padding: 9px;
}.mock-phone__cards i {
        display: block;
        height: 38px;
        margin-bottom: 7px;
        background: var(--white);
        border: 1px solid #dde5ee;
    }.reference-badge {
    position: absolute;
    left: 4%;
    bottom: 5%;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}.reference-content {
    max-width: 470px;
}.reference-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}.tag {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #bfd8f8;
    font-size: 11px;
    font-weight: 700;
}.reference-content h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: clamp(29px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}.reference-content p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.66);
}.reference-content .text-link {
    color: #79b9ff;
}.why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 84px;
    align-items: start;
}.why-sticky {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}.why-list {
    border-top: 1px solid var(--border);
}.why-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}.why-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: var(--surface);
    color: var(--primary);
}.why-icon svg {
        width: 24px;
        height: 24px;
    }.why-item h3 {
    margin-bottom: 5px;
    font-size: 19px;
}.why-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}.why-number {
    color: #9ba8b9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}.about {
    overflow: hidden;
}.about-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
}.about-visual {
    position: relative;
    min-height: 610px;
}.about-image {
    width: calc(100% - 70px);
    height: 560px;
    object-fit: cover;
    object-position: center;
}.about-visual::after {
    content: "";
    position: absolute;
    left: 42px;
    top: 42px;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--primary);
}.about-note {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: 270px;
    padding: 24px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}.about-note strong {
        display: block;
        margin-bottom: 8px;
        font-family: var(--font-display);
        font-size: 20px;
    }.about-note p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.65);
        font-size: 13px;
    }.about-copy .section-intro {
    margin-bottom: 30px;
}.about-values {
    margin-top: 28px;
    border-top: 1px solid #c8d4e2;
}.about-value {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid #c8d4e2;
}.about-value svg {
        width: 22px;
        height: 22px;
        margin-top: 3px;
        color: var(--primary);
    }.about-value h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }.about-value p {
        margin-bottom: 0;
        color: var(--muted);
        font-size: 14px;
    }.process {
    overflow: hidden;
}.process::before {
        content: "";
        position: absolute;
        top: 0;
        right: 8%;
        width: 320px;
        height: 100%;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        transform: skewX(-12deg);
    }.process .container,
    .process .site-container {
        position: relative;
        z-index: 1;
    }.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 50px;
}.process-grid::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 31px;
        height: 1px;
        background: rgba(255, 255, 255, 0.22);
    }.process-item {
    position: relative;
    padding-right: 28px;
}.process-number {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 27px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: var(--navy);
    color: #7bb9ff;
    font-family: var(--font-display);
    font-weight: 800;
}.process-item h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 18px;
}.process-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}.testimonials {
    overflow: hidden;
}.testimonial-swiper .swiper-slide {
    height: auto;
    display: none;
}.testimonial-swiper .swiper-slide:first-child {
        display: block;
    }.testimonial-swiper.swiper-initialized .swiper-slide {
    display: block;
}.testimonial-card {
    height: 100%;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    background: var(--white);
    border: 1px solid #d8e0ea;
    border-radius: 0;
}.testimonial-label {
    align-self: flex-start;
    margin-bottom: 32px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}.testimonial-card blockquote {
    margin: 0 0 32px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(19px, 2.1vw, 26px);
    line-height: 1.45;
    letter-spacing: -0.02em;
}.testimonial-person {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 13px;
}.testimonial-avatar {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
}.testimonial-person strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}.testimonial-person small {
    color: var(--muted);
}.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 24px;
}.testimonial-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #c8d2df;
    background: var(--white);
    cursor: pointer;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}.testimonial-arrow:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }.testimonial-arrow svg {
        width: 18px;
        height: 18px;
    }.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}.blog-card {
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    overflow: hidden;
    transition: transform 280ms ease, box-shadow 280ms ease;
}.blog-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }.blog-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d9e1ea;
}.blog-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 450ms ease;
}.blog-card:hover .blog-image {
    transform: scale(1.045);
}.blog-category {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}.blog-content {
    padding: 25px;
}.blog-date {
    display: block;
    margin-bottom: 12px;
    color: #8491a4;
    font-size: 12px;
}.blog-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.025em;
}.blog-content p {
    margin-bottom: 21px;
    color: var(--muted);
    font-size: 14px;
}.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}.breadcrumb a:hover {
        color: var(--primary);
    }.blog-index-page {
    background: var(--white);
}.blog-page-body {
    padding: 56px 0 90px;
    background: var(--white);
}.blog-page-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    color: #6f7c90;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}.blog-page-breadcrumb a {
        color: inherit;
    }.blog-page-breadcrumb [aria-current="page"] {
        color: var(--navy);
    }.blog-page-breadcrumb span[aria-hidden="true"] {
        opacity: 0.55;
    }.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
    align-items: start;
}.blog-main,
.blog-sidebar {
    min-width: 0;
}.blog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}.blog-results-copy {
    display: grid;
    gap: 6px;
}.blog-results-copy p,
    .blog-results-copy span {
        margin: 0;
    }.blog-results-copy p {
        color: var(--text);
        font-size: 15px;
        font-weight: 700;
    }.blog-results-copy span {
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
    }.blog-sort-form {
    display: grid;
    gap: 8px;
}.blog-sort-form label {
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }.blog-sort-form select {
        min-height: 44px;
        min-width: 180px;
        padding: 0 14px;
        border: 1px solid var(--border);
        border-radius: 4px;
        background: var(--white);
        color: var(--text);
        appearance: none;
    }.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}.blog-index-card {
    display: flex;
    flex-direction: column;
    min-height: 440px;
}.blog-index-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 22px 24px 24px;
}.blog-index-card__title {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}.blog-index-card__title a {
        color: inherit;
    }.blog-index-card__body p {
    margin-bottom: 22px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}.blog-index-card__link {
    margin-top: auto;
}.blog-sidebar__inner {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: grid;
    gap: 18px;
}.sidebar-block {
    padding: 22px;
    border: 1px solid var(--border);
    background: var(--white);
}.sidebar-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}.sidebar-block__head h2,
    .blog-sidebar-cta h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.3;
    }.blog-search-form {
    display: grid;
    gap: 10px;
}.blog-search-form__label {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}.blog-search-form__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 10px;
}.blog-search-form input {
    min-width: 0;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    color: var(--text);
}.blog-search-form input::placeholder {
        color: #8491a4;
    }.blog-search-form__button,
.blog-mobile-filter-toggle,
.blog-mobile-category-panel__close,
.pager__icon-link {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
}.blog-search-form__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}.blog-search-form__button svg,
    .blog-mobile-category-panel__close svg,
    .pager__icon-link svg {
        width: 18px;
        height: 18px;
    }.blog-category-list,
.blog-mobile-category-list {
    display: grid;
    border-top: 1px solid var(--border);
}.blog-category-link,
.blog-mobile-category-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 46px;
    padding: 0 0 0 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}.blog-category-link span:last-child,
    .blog-mobile-category-link span:last-child {
        padding-right: 2px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }.blog-category-link.is-active,
    .blog-mobile-category-link.is-active {
        color: var(--primary);
        font-weight: 700;
        box-shadow: inset 3px 0 0 var(--primary);
    }.blog-category-link.is-active span:last-child,
        .blog-mobile-category-link.is-active span:last-child {
            color: var(--primary);
        }.blog-popular-list {
    display: grid;
    gap: 16px;
}.blog-popular-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}.blog-popular-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }.blog-popular-item__thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d9e1ea;
}.blog-popular-item__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }.blog-popular-item__content {
    min-width: 0;
}.blog-popular-item__content time {
        display: block;
        margin-bottom: 8px;
        color: #8491a4;
        font-size: 12px;
    }.blog-popular-item__content h3 {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
    }.blog-sidebar-cta {
    background: var(--navy);
    color: var(--white);
}.blog-sidebar-cta p {
        margin: 12px 0 18px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
    }.blog-sidebar-cta .btn {
        width: 100%;
    }.blog-empty-state .empty-state {
    display: grid;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--surface);
}.blog-empty-state h2,
.blog-empty-state p {
    margin: 0;
}.blog-empty-state h2 {
    font-size: 24px;
}.blog-pagination {
    margin-top: 42px;
}.blog-pagination-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}.blog-pagination-mobile {
    display: none;
}.pager__numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}.pager__number,
.pager__ellipsis,
.pager__icon-link {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6dee9;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
}.pager__number.is-active {
        border-color: var(--primary);
        background: var(--primary);
        color: var(--white);
    }.pager__ellipsis {
    min-width: auto;
    border: 0;
    background: transparent;
}.pager__link.is-disabled,
.pager__icon-link.is-disabled {
    pointer-events: none;
    opacity: 0.4;
}.blog-mobile-tools,
.blog-popular--mobile {
    display: none;
}.blog-mobile-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
}.blog-mobile-filter-toggle {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    text-align: left;
}.blog-mobile-filter-row > * {
    min-width: 0;
}.blog-mobile-filter-toggle span,
.blog-mobile-filter-toggle strong {
    display: block;
}.blog-mobile-filter-toggle strong {
    color: var(--muted);
    font-size: 13px;
}.blog-mobile-drawer-backdrop,
.blog-mobile-category-panel {
    position: fixed;
    z-index: 990;
}.blog-mobile-drawer-backdrop {
    inset: 0;
    background: rgba(11, 22, 43, 0.45);
}.blog-mobile-category-panel {
    left: 12px;
    right: 12px;
    bottom: 78px;
    z-index: 991;
    max-height: min(70vh, 540px);
    overflow: auto;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 24px 56px rgba(11, 22, 43, 0.22);
}.blog-mobile-category-panel__head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}.blog-mobile-category-panel__head h2 {
        margin: 0;
        font-size: 18px;
    }.blog-mobile-category-panel__close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}.blog-mobile-category-panel[hidden],
.blog-mobile-drawer-backdrop[hidden] {
    display: none !important;
}.blog-mobile-category-list {
    padding: 0 18px 18px;
    border-top: 0;
}.faq-grid {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 74px;
    align-items: start;
}.faq-list {
    border-top: 1px solid var(--border);
}.faq-item {
    border-bottom: 1px solid var(--border);
}.faq-question {
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 18px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}.faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        left: 2px;
        right: 2px;
        top: 9px;
        height: 2px;
        background: var(--primary);
        transition: transform 200ms ease;
    }.faq-icon::after {
        transform: rotate(90deg);
    }.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: rotate(0);
}.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms ease;
}.faq-answer > div {
        overflow: hidden;
    }.faq-answer p {
        margin: 0;
        padding: 0 44px 24px 0;
        color: var(--muted);
        font-size: 14px;
    }.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}.contact {
    position: relative;
    padding: 112px 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}.contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.17;
}.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 33, 0.76);
}.contact::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34%;
    height: 6px;
    background: var(--primary);
}.contact .container,
.contact .site-container {
    position: relative;
    z-index: 1;
}.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 76px;
    align-items: start;
}.contact .section-title {
    color: var(--white);
}.contact-list {
    margin-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}.contact-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}.contact-item svg {
        width: 21px;
        height: 21px;
        margin-top: 2px;
        color: #79b9ff;
    }.contact-item small {
        display: block;
        margin-bottom: 3px;
        color: rgba(255, 255, 255, 0.46);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }.contact-item span,
    .contact-item a {
        color: var(--white);
        font-weight: 600;
    }.contact-form {
    padding: 36px;
    background: var(--white);
    color: var(--text);
    border-radius: 0;
    box-shadow: var(--shadow-md);
}.contact-form h3 {
        margin-bottom: 8px;
        font-size: 25px;
    }.contact-form > p {
        margin-bottom: 26px;
        color: var(--muted);
        font-size: 14px;
    }.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}.field {
    display: grid;
    gap: 7px;
}.field--full {
    grid-column: 1 / -1;
}.field label {
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 13px;
    border: 1px solid #c9d2de;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}.field textarea {
    min-height: 130px;
    resize: vertical;
}.field input:focus,
    .field select:focus,
    .field textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(7, 92, 246, 0.1);
    }.field [aria-invalid="true"] {
    border-color: var(--danger);
}.field-error {
    min-height: 17px;
    color: var(--danger);
    font-size: 11px;
}.consent {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: #475467;
    font-size: 12px;
}.consent input {
        width: 18px;
        height: 18px;
        margin: 1px 0 0;
        accent-color: var(--primary);
    }.form-submit {
    grid-column: 1 / -1;
    width: 100%;
}.form-status {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 22px;
    font-size: 13px;
    font-weight: 600;
}.form-status.is-success {
        color: var(--success);
    }.form-status.is-error {
        color: var(--danger);
    }.validation-summary {
    color: var(--danger);
    font-size: 12px;
}.validation-summary ul {
        margin: 0 0 18px 18px;
        padding: 0;
    }.contact--page {
    min-height: calc(100vh - var(--header-height));
}.footer {
    box-shadow: #00000075 0px 0px 1px 0px;
    padding: 62px 0 24px;
    background: #ffffff;
    color: rgb(0 0 0 / 62%);
}.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.65fr 0.8fr;
    gap: 42px;
    padding-bottom: 42px;
}.footer-description {
    max-width: 390px;
    margin: 20px 0 0;
    font-size: 13px;
}.footer-title {
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
}.footer-links {
    display: grid;
    gap: 10px;
    font-size: 13px;
}.footer-links a:hover {
        color: var(--white);
    }.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}.back-to-top {
    position: fixed;
    z-index: 990;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #d2dbe7;
    background: var(--white);
    color: var(--navy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease, background-color 200ms ease, color 200ms ease;
}.back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }.back-to-top:hover {
        background: var(--primary);
        color: var(--white);
    }.back-to-top svg {
        width: 18px;
        height: 18px;
    }.cursor-point,
.cursor-halo {
    position: fixed;
    z-index: 1600;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    border-radius: 999px;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: opacity 180ms ease;
    will-change: transform;
}.cursor-point {
    width: 7px;
    height: 7px;
    background: var(--primary);
}.cursor-halo {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(7, 92, 246, 0.58);
    background: rgba(255, 255, 255, 0.025);
}.cursor-point.is-visible,
    .cursor-halo.is-visible {
        opacity: 1;
    }.cursor-point.is-hover {
    --cursor-scale: 0.65;
}.cursor-halo.is-hover {
    --cursor-scale: 1.55;
    border-color: rgba(7, 92, 246, 0.82);
    background: rgba(7, 92, 246, 0.08);
}.listing-hero,
.detail-hero,
.detail-article,
.detail-sidecard,
.pager {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}.listing-hero {
    padding: 34px;
}.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}.listing-card {
    padding: 25px;
    border: 1px solid var(--border);
    background: var(--white);
}.listing-card h2,
    .listing-card h3 {
        margin: 16px 0 12px;
        font-size: 20px;
    }.listing-card p {
        margin-bottom: 16px;
        color: var(--muted);
    }.empty-state {
    padding: 28px;
    border: 1px solid var(--border);
    background: var(--white);
}.pager {
    margin-top: 24px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}.pager__link {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d6dee9;
    background: var(--white);
    font-weight: 700;
}.pager__link.is-disabled {
        opacity: 0.5;
        pointer-events: none;
    }.pager__status {
    color: var(--muted);
    font-size: 14px;
}.detail-shell {
    display: grid;
    gap: 28px;
}.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 24px;
    padding: 32px;
}.detail-hero__image {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
}.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
}.detail-article,
.detail-sidecard {
    padding: 28px;
}.detail-sidebar {
    display: grid;
    gap: 18px;
}.detail-list,
.detail-steps {
    margin-left: 18px;
    display: grid;
    gap: 10px;
}.detail-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}.detail-tags span,
    .tag-cloud span {
        padding: 6px 10px;
        background: var(--surface);
        font-size: 12px;
        font-weight: 700;
    }.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}.breadcrumb-link::before {
        content: "<";
    }.prose p + p,
.prose p + ul,
.prose p + ol,
.prose ul + p,
.prose ol + p,
.prose h2 + p,
.prose h3 + p {
    margin-top: 16px;
}.prose h2,
.prose h3 {
    margin: 24px 0 12px;
    font-size: 24px;
}.prose ul,
.prose ol {
    margin-left: 18px;
}.related-block {
    display: grid;
    gap: 28px;
}@media (max-width: 1080px) {
    :root {
        --header-height: 72px;
    }

    .nav-links {
        gap: 18px;
    }

        .nav-links > a,
        .nav-dropdown__trigger {
            font-size: 13px;
        }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 34px;
    }

    .reference-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

        .reference-card:nth-child(even) .reference-visual,
        .reference-card:nth-child(even) .reference-content {
            order: initial;
        }

    .reference-content {
        max-width: 720px;
    }

    .why-grid {
        gap: 48px;
    }

    .about-grid {
        gap: 46px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px 0;
    }

        .process-grid::before {
            display: none;
        }

    .contact-grid {
        gap: 44px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

        .footer-grid > :last-child {
            grid-column: 2 / -1;
        }
}@media (max-width: 960px) {
    .section {
        padding: 86px 0;
    }

    .container,
    .site-container {
        width: min(calc(100% - 32px), var(--container));
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        z-index: 1002;
        top: var(--header-height);
        right: 0;
        width: min(86vw, 390px);
        height: calc(100svh - var(--header-height));
        padding: 26px;
        background: var(--white);
        transform: translateX(100%);
        transition: transform 260ms ease;
        box-shadow: -18px 0 44px rgba(11, 22, 43, 0.16);
    }

        .mobile-nav.is-open {
            transform: translateX(0);
        }

        .mobile-nav ul {
            display: grid;
        }

        .mobile-nav li {
            display: grid;
        }

        .mobile-nav a,
        .mobile-accordion__trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 56px;
            width: 100%;
            padding: 0;
            border: 0;
            border-bottom: 1px solid var(--border);
            background: transparent;
            color: var(--navy);
            font-family: inherit;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
        }

            .mobile-nav a::after {
                content: "->";
                color: var(--primary);
            }

            .mobile-accordion__trigger span {
                color: var(--primary);
                font-size: 20px;
                line-height: 1;
            }

    .mobile-accordion.is-open .mobile-accordion__trigger span {
        transform: rotate(45deg);
    }

    .mobile-accordion__panel {
        display: grid;
        gap: 0;
        padding: 0 0 8px 16px;
    }

        .mobile-accordion__panel[hidden] {
            display: none;
        }

    .mobile-nav .mobile-accordion__panel a {
        min-height: 48px;
        color: #344054;
        font-size: 13px;
        font-weight: 650;
    }

    .mobile-nav .btn {
        width: 100%;
        margin-top: 24px;
        color: var(--white);
    }

        .mobile-nav .btn::after {
            display: none;
        }

    .menu-backdrop {
        position: fixed;
        z-index: 1001;
        inset: var(--header-height) 0 0;
        display: block;
        background: rgba(4, 13, 30, 0.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity 220ms ease, visibility 220ms ease;
    }

        .menu-backdrop.is-open {
            opacity: 1;
            visibility: visible;
        }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: center;
        height: 100%;
        padding-top: 54px;
        padding-bottom: 92px;
    }

    .hero-proof {
        max-width: 460px;
    }

    .hero-title {
        font-size: clamp(43px, 9vw, 72px);
    }

    .hero-controls {
        bottom: 25px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .services-head-actions {
        width: 100%;
        justify-content: space-between;
    }

    .services-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid,
    .about-grid,
    .faq-grid,
    .contact-grid,
    .detail-grid,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .why-sticky {
        position: static;
    }

    .blog-grid,
    .listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .blog-page-body {
        padding: 44px 0 104px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-sort-form--desktop,
    .blog-sidebar {
        display: none;
    }

    .blog-mobile-tools {
        display: grid;
        gap: 10px;
        margin-bottom: 20px;
    }

    .blog-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-popular--mobile {
        display: block;
        margin-top: 34px;
        padding: 22px;
        border: 1px solid var(--border);
        background: var(--white);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .footer-grid > :last-child {
            grid-column: auto;
        }
}@media (max-width: 640px) {
    :root {
        --header-height: 68px;
    }

    html {
        scroll-padding-top: 84px;
    }

    .container,
    .site-container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: clamp(31px, 10vw, 44px);
    }

    .section-intro {
        font-size: 15px;
    }

    .brand-image {
        width: 154px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero-grid {
        padding-top: 36px;
        padding-bottom: 78px;
        gap: 18px;
    }

    .hero-slide:nth-child(1) .hero-slide__image {
        object-position: 61% center;
    }

    .hero-slide:nth-child(2) .hero-slide__image {
        object-position: 62% center;
    }

    .hero-slide:nth-child(3) .hero-slide__image {
        object-position: 58% center;
    }

    .hero-title {
        margin-bottom: 18px;
        font-size: clamp(34px, 10.5vw, 48px);
        line-height: 1.01;
    }

    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .hero-description {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-proof {
        display: none;
    }

    .marquee__group {
        padding-block: 12px;
    }

    .hero,
    .marquee,
    .services,
    .references,
    .testimonials,
    .section--white,
    .section--surface,
    .contact {
        max-width: 100%;
        overflow-x: clip;
    }

    .hero-grid,
    .marquee__track,
    .services-swiper,
    .services-swiper .swiper-wrapper,
    .testimonial-swiper,
    .testimonial-swiper .swiper-wrapper,
    .why-grid,
    .about-grid,
    .faq-grid,
    .contact-grid,
    .process-grid {
        min-width: 0;
        max-width: 100%;
    }

    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translate3d(0, 24px, 0);
    }

        [data-aos="fade-left"].aos-animate,
        [data-aos="fade-right"].aos-animate {
            transform: translate3d(0, 0, 0);
        }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .cookie-consent__actions,
    .cookie-consent__prefs {
        justify-content: stretch;
    }

        .cookie-consent__actions .btn,
        .cookie-consent__prefs .btn {
            width: 100%;
        }

    .hero-progress {
        width: 120px;
    }

    .hero-nav {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

        .trust-item:last-child {
            border-bottom: 0;
        }

    .trust-item {
        min-height: 104px;
        padding: 20px 14px;
    }

    .services {
        padding-top: 70px;
        padding-bottom: 70px;
    }

        .services .section-head {
            margin-bottom: 28px;
        }

    .services-head-actions {
        align-items: center;
    }

        .services-head-actions .btn {
            min-height: 42px;
            padding: 0 15px;
        }

    .services-slider-button {
        width: 40px;
        height: 40px;
    }

    .services-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 342px;
    }

    .service-image {
        height: 126px;
    }

    .service-content {
        padding: 30px 16px 16px;
    }

    .reference-visual {
        min-height: 360px;
    }

    .mock-browser {
        left: 4%;
        top: 9%;
        width: 86%;
        height: 70%;
    }

    .mock-phone {
        right: 3%;
        width: 92px;
        height: 194px;
        padding: 6px;
    }

    .mock-hero {
        min-height: 130px;
    }

    .mock-cards {
        gap: 5px;
        padding: 8px;
    }

    .mock-card {
        height: 58px;
        padding: 7px;
    }

    .references-grid {
        gap: 58px;
    }

    .why-item {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .why-number {
        display: none;
    }

    .about-visual {
        min-height: 460px;
    }

    .about-image {
        width: calc(100% - 26px);
        height: 410px;
    }

    .about-visual::after {
        left: 26px;
        top: 26px;
    }

    .about-note {
        width: 85%;
        right: 0;
        bottom: 0;
        padding: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-item {
        display: grid;
        grid-template-columns: 58px 1fr;
        gap: 17px;
        padding-right: 0;
    }

    .process-number {
        width: 58px;
        height: 58px;
        margin-bottom: 0;
    }

    .blog-grid,
    .listing-grid {
        grid-template-columns: 1fr;
    }

    .blog-card:last-child {
        grid-column: auto;
        display: block;
    }

        .blog-card:last-child .blog-image-wrap {
            aspect-ratio: 16 / 10;
        }

    .faq-question {
        min-height: 72px;
        font-size: 15px;
    }

    .contact {
        padding: 76px 0;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .back-to-top {
        right: 12px;
        bottom: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field--full,
    .consent,
    .form-submit,
    .form-status {
        grid-column: auto;
    }

    .footer {
        padding-top: 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom,
    .pager {
        flex-direction: column;
        align-items: start;
    }

    .blog-page-body {
        padding: 28px 0 116px;
    }

    .blog-page-breadcrumb {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .blog-index-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-index-card__body,
    .sidebar-block,
    .blog-popular--mobile {
        padding: 18px;
    }

    .blog-search-form__controls {
        grid-template-columns: minmax(0, 1fr) 48px;
        gap: 8px;
    }

    .blog-mobile-tools {
        gap: 10px;
        margin-bottom: 18px;
    }

    .blog-mobile-filter-row {
        gap: 8px;
    }

    .blog-mobile-filter-toggle {
        min-height: 48px;
        gap: 10px;
        padding: 11px 12px;
    }

        .blog-mobile-filter-toggle span {
            font-size: 13px;
            font-weight: 700;
        }

        .blog-mobile-filter-toggle strong {
            font-size: 12px;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .blog-sort-form--mobile {
        min-width: 0;
    }

        .blog-sort-form--mobile label {
            font-size: 13px;
            margin-bottom: 6px;
        }

        .blog-sort-form--mobile select {
            min-width: 0;
            width: 100%;
            min-height: 48px;
            padding: 0 36px 0 12px;
            font-size: 14px;
        }

    .blog-mobile-category-panel {
        left: 12px;
        right: 12px;
        bottom: 82px;
        max-height: min(64vh, 480px);
    }

    .blog-results-copy {
        gap: 6px;
    }

    .blog-toolbar {
        gap: 14px;
        margin-bottom: 20px;
    }

    .blog-index-grid {
        margin-bottom: 6px;
    }

    .blog-pagination-desktop {
        display: none;
    }

    .blog-pagination-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 26px;
        margin-bottom: 18px;
    }
}@media (max-width: 700px) {
    .blog-index-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}@media (hover: none), (pointer: coarse) {
    .cursor-point,
    .cursor-halo {
        display: none;
    }
}@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cursor-point,
    .cursor-halo {
        display: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slide__image {
        transform: none !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}.blog-detail-page {
    position: relative;
    padding: 30px 0 120px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--white) 28%);
}.blog-reading-progress {
    position: sticky;
    top: var(--header-height);
    z-index: 24;
    height: 3px;
    margin-bottom: 18px;
    background: rgba(7, 92, 246, 0.06);
}.blog-reading-progress span {
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: left center;
        background: linear-gradient(90deg, var(--primary), var(--cyan));
        transition: transform 0.15s ease-out;
    }.article-head {
    padding: 12px 0 30px;
}.article-head__inner {
    display: grid;
    gap: 18px;
}.article-breadcrumb {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--muted);
}.article-breadcrumb a {
        transition: color 0.2s ease;
    }.article-breadcrumb a:hover {
            color: var(--primary);
        }.article-head__body {
    max-width: 860px;
}.article-head__panel {
    display: grid;
    gap: 16px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(11, 22, 43, 0.04);
}.article-category {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 0;
    border-radius: 999px;
    background: rgba(7, 92, 246, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease;
}.article-category:hover {
        background: rgba(7, 92, 246, 0.14);
    }.article-head h1 {
    margin-bottom: 0;
    font-size: 52px;
    line-height: 1.06;
}.article-summary {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 18px;
    color: #475467;
}.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 14px;
}.article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }.article-meta span::before {
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(7, 92, 246, 0.36);
        }.article-meta span:first-child::before {
            display: none;
        }.article-cover {
    margin-bottom: 40px;
}.article-cover img {
        width: 100%;
        aspect-ratio: 16 / 8.5;
        object-fit: cover;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(11, 22, 43, 0.06);
    }.article-layout-shell {
    padding-bottom: 28px;
}.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
}.article-main {
    min-width: 0;
    display: grid;
}.article-sidebar {
    min-width: 0;
}.article-sidebar__inner {
    position: sticky;
    top: calc(var(--header-height) + 34px);
    display: grid;
    gap: 18px;
}.article-toc-mobile {
    display: none;
}.article-toc-mobile summary {
        cursor: pointer;
        list-style: none;
    }.article-toc-mobile summary::-webkit-details-marker {
            display: none;
        }.article-toc {
    display: grid;
    gap: 10px;
}.article-toc a {
        color: #344054;
        font-size: 14px;
        line-height: 1.45;
        transition: color 0.2s ease, transform 0.2s ease;
    }.article-toc a.is-child {
            padding-left: 14px;
            color: #667085;
        }.article-toc a.is-active,
        .article-toc a:hover {
            color: var(--primary);
        }.article-content {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(11, 22, 43, 0.04);
}.article-content h2,
    .article-content h3 {
        scroll-margin-top: calc(var(--header-height) + 28px);
    }.article-content > *:last-child {
        margin-bottom: 0;
    }.article-tags,
.article-share,
.author-box,
.comments-section,
.article-sidebar-cta,
.article-cta__inner {
    margin-top: 26px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(11, 22, 43, 0.04);
}.article-tags h2,
    .article-share h2,
    .comments-head h2,
    .article-sidebar-cta h2 {
        margin-bottom: 14px;
        font-size: 1.15rem;
    }.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}.detail-tags a {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        background: var(--surface);
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }.detail-tags a:hover {
            background: rgba(7, 92, 246, 0.1);
            color: var(--primary);
            transform: translateY(-1px);
        }.article-share__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}.article-share__copy {
    border: 0;
    border-radius: 8px;
    background: rgba(7, 92, 246, 0.08);
    color: var(--primary);
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}.article-share__copy:hover {
        background: rgba(7, 92, 246, 0.14);
        transform: translateY(-1px);
    }.article-share__copy:active {
        transform: translateY(0);
    }.article-share__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}.article-share__grid a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 8px;
        border: 1px solid rgba(7, 92, 246, 0.14);
        color: var(--navy);
        font-size: 14px;
        font-weight: 600;
        transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }.article-share__grid a:hover {
            border-color: var(--primary);
            background: rgba(7, 92, 246, 0.06);
            color: var(--primary);
            transform: translateY(-1px);
        }.article-share__status {
    min-height: 20px;
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}.author-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
}.author-box__avatar {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--primary));
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 800;
    flex-shrink: 0;
}.author-box__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
    }.author-box__body strong {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
}.author-box__body p:last-child {
    margin-bottom: 0;
}.comments-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}.comments-head h2 span {
        color: var(--muted);
        font-weight: 600;
    }.comments-head p {
        margin-bottom: 0;
        color: var(--muted);
        font-size: 13px;
    }.comment-sort {
    display: inline-flex;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}.comment-sort a {
        min-width: 58px;
        padding: 9px 12px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
    }.comment-sort a + a {
            border-left: 1px solid var(--border);
        }.comment-sort a.is-active,
        .comment-sort a:hover {
            background: rgba(7, 92, 246, 0.08);
            color: var(--primary);
        }.comment-feedback {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(7, 92, 246, 0.08);
    color: var(--navy);
}.comment-feedback--success {
    background: rgba(6, 118, 71, 0.12);
    color: var(--success);
}.comment-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}.comment-form__reply-state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(7, 92, 246, 0.08);
    color: var(--navy);
    font-size: 14px;
}.comment-form__reply-state button,
    .comment-reply-button {
        border: 0;
        background: none;
        color: var(--primary);
        font-weight: 700;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }.comment-reply-button:hover {
            opacity: 0.75;
        }.comment-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}.comment-form__grid label {
        display: grid;
        gap: 8px;
        color: var(--navy);
        font-size: 14px;
        font-weight: 600;
    }.comment-form__grid input,
    .comment-form__grid textarea {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
        color: var(--text);
        padding: 14px 16px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }.comment-form__grid input:focus,
        .comment-form__grid textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(7, 92, 246, 0.1);
        }.comment-form__grid textarea {
        min-height: 160px;
        resize: vertical;
    }.comment-field--full {
    grid-column: 1 / -1;
}.validation-message {
    color: var(--danger);
    font-size: 13px;
    font-weight: 500;
}.summary-errors {
    margin-bottom: 16px;
    color: var(--danger);
}.comment-form .check-row {
    margin-top: 16px;
    margin-bottom: 12px;
}.comment-form__privacy {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}.comment-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 22px;
}.comment-form__actions span {
        color: var(--muted);
        font-size: 13px;
    }.comments-empty {
    padding: 22px;
    margin-top: 18px;
    border-radius: 10px;
    background: var(--surface);
}.comments-empty h3 {
        margin-bottom: 8px;
    }.comments-empty p {
        margin-bottom: 0;
        color: var(--muted);
    }.comments-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}.comment-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 22px;
    border-radius: 10px;
    background: #f8fbff;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}.comment-item:hover {
        box-shadow: 0 2px 8px rgba(11, 22, 43, 0.04);
    }.comment-item--reply {
    background: #fff;
}.comment-avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(7, 92, 246, 0.16), rgba(10, 167, 238, 0.24));
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}.comment-body {
    min-width: 0;
}.comment-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}.comment-head strong,
    .comment-head a {
        font-weight: 700;
    }.comment-head time {
        color: var(--muted);
        font-size: 13px;
        white-space: nowrap;
    }.comment-body p {
    margin-bottom: 10px;
    white-space: pre-line;
}.comment-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    margin-left: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(7, 92, 246, 0.12), rgba(10, 167, 238, 0.14));
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}.comment-replies {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}.comments-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 22px;
}.comments-pagination span {
        color: var(--muted);
        font-size: 13px;
    }.blog-detail-mobile-extras {
    display: none;
}.article-sidebar-cta {
    background: var(--surface);
}.article-sidebar-cta p {
        color: #475467;
    }.article-sidebar-cta .btn {
        margin-top: 8px;
    }.article-related {
    padding: 18px 0 0;
}.article-related-grid {
    align-items: stretch;
}.article-related-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(11, 22, 43, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}.article-related-card:hover {
        box-shadow: 0 8px 28px rgba(11, 22, 43, 0.1);
        transform: translateY(-3px);
    }.article-related-card__image {
    display: block;
}.article-related-card__body {
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px;
}.article-related-card__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: 0;
}.article-related-card__title a {
        color: inherit;
    }.article-related-card__title a:hover {
            color: var(--primary);
        }.article-related-card__summary {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}.article-related-card__link {
    margin-top: auto;
}.article-related-grid .article-related-card:last-child {
    grid-column: auto;
    display: grid;
}.article-related-grid .article-related-card:last-child .article-related-card__image {
        aspect-ratio: 16 / 10;
    }.article-cta {
    padding-top: 18px;
}.article-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%), var(--navy);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(11, 22, 43, 0.12);
}.article-cta__inner h2,
    .article-cta__inner p,
    .article-cta__inner .section-kicker {
        color: var(--white);
    }.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}.article-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}@media (max-width: 1100px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 28px;
    }
}@media (max-width: 900px) {
    .blog-detail-page {
        padding-top: 20px;
    }

    .article-cover {
        margin-bottom: 28px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .article-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-sidebar {
        display: none;
    }

    .article-toc-mobile {
        display: block;
        margin-bottom: 18px;
        padding: 18px 20px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(11, 22, 43, 0.04);
    }

        .article-toc-mobile summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--navy);
            font-family: var(--font-display);
            font-weight: 800;
        }

        .article-toc-mobile .article-toc {
            margin-top: 14px;
        }

    .blog-detail-mobile-extras {
        display: block;
        margin-top: 24px;
    }

    .article-related-card__body {
        padding: 24px;
    }

    .article-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}@media (max-width: 700px) {
    .blog-detail-page {
        padding-bottom: 100px;
    }

    .article-head {
        padding-bottom: 20px;
    }

        .article-head h1 {
            font-size: 32px;
            line-height: 1.15;
        }

    .article-head__panel {
        padding: 22px;
        border-radius: 10px;
    }

    .article-summary {
        margin-bottom: 14px;
        font-size: 0.95rem;
    }

    .article-cover img {
        aspect-ratio: 16 / 10.6;
        border-radius: 10px;
    }

    .article-content,
    .article-tags,
    .article-share,
    .author-box,
    .comments-section,
    .article-sidebar-cta,
    .article-cta__inner,
    .article-related-card__body {
        padding: 20px;
        border-radius: 10px;
    }

    .author-box {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }

    .author-box__avatar {
        width: 64px;
        height: 64px;
        border-radius: 10px;
        font-size: 1.15rem;
    }

    .comment-form__grid {
        grid-template-columns: 1fr;
    }

    .comment-item {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 18px;
        border-radius: 10px;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        font-size: 12px;
    }

    .comment-head {
        flex-direction: column;
        gap: 4px;
    }

        .comment-head time {
            white-space: normal;
        }

    .article-share__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
    }

    .article-related-card {
        border-radius: 10px;
    }
}@media (max-width: 480px) {
    .blog-reading-progress {
        top: calc(var(--header-height) - 1px);
        margin-bottom: 12px;
    }

    .article-head h1 {
        font-size: 26px;
    }

    .article-breadcrumb {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .article-meta {
        gap: 6px 12px;
        font-size: 12px;
    }

    .article-content,
    .article-tags,
    .article-share,
    .author-box,
    .comments-section,
    .article-toc-mobile,
    .article-cta__inner,
    .article-head__panel,
    .article-related-card__body {
        padding: 16px;
        border-radius: 8px;
    }

    .article-cover img {
        border-radius: 8px;
    }

    .article-share__grid a,
    .detail-tags a {
        width: 100%;
        justify-content: center;
    }

    .comment-form__actions {
        align-items: stretch;
    }

    .comments-head,
    .comments-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .comment-form__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .article-related-card__title {
        font-size: 17px;
    }

    .article-related-card {
        border-radius: 8px;
    }

    .author-box {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }

    .author-box__avatar {
        width: 52px;
        height: 52px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .comment-item {
        gap: 10px;
        padding: 14px;
        border-radius: 8px;
    }

    .comment-avatar {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        font-size: 11px;
    }
}.blog-detail-page {
    --detail-line: #dfe5ee;
    --detail-soft: #f3f6fa;
    --detail-soft-blue: #eef4ff;
    --detail-muted: #657189;
    padding: 0;
    background: var(--white);
}.blog-detail-page .blog-reading-progress {
        position: fixed;
        top: var(--header-height);
        left: 0;
        z-index: 1100;
        width: 100%;
        height: 3px;
        margin: 0;
        pointer-events: none;
        background: transparent;
    }.blog-detail-page .blog-reading-progress span {
            background: var(--primary);
            transition: none;
        }.blog-detail-page .article-head {
        padding: 18px 0 14px;
        border-bottom: 1px solid #e7ebf2;
        background: var(--detail-soft);
    }.blog-detail-page .article-head__inner {
        display: block;
    }.blog-detail-page .article-breadcrumb {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0;
        color: #6e788b;
        font-size: 11px;
    }.blog-detail-page .article-breadcrumb a:hover {
            color: var(--primary);
        }.blog-detail-page .cover-wrap {
        padding-top: 18px;
        margin-bottom: 0;
    }.blog-detail-page .cover-wrap > img {
            width: 100%;
            height: clamp(260px, 32vw, 390px);
            object-fit: cover;
            object-position: center;
            border: 1px solid #cfd6e1;
            border-radius: 0;
            box-shadow: none;
        }.blog-detail-page .title-panel {
        display: block;
        width: calc(100% - 322px);
        margin: 26px 0 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }.blog-detail-page .article-category {
        display: inline-flex;
        align-items: center;
        min-height: 0;
        margin-bottom: 10px;
        padding: 5px 9px;
        border-radius: 0;
        color: var(--primary);
        background: #e9f1ff;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }.blog-detail-page .article-category:hover {
            background: #dfeaff;
        }.blog-detail-page .title-panel h1 {
        max-width: 760px;
        margin: 0;
        font-size: clamp(34px, 4vw, 50px);
        line-height: 1.06;
        letter-spacing: -0.045em;
    }.blog-detail-page .article-summary {
        max-width: 720px;
        margin: 13px 0;
        color: var(--detail-muted);
        font-size: 15px;
        line-height: 1.58;
    }.blog-detail-page .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 16px;
        color: #7a8497;
        font-size: 10px;
    }.blog-detail-page .article-meta span {
            display: inline;
            gap: 0;
        }.blog-detail-page .article-meta span::before {
                display: none;
            }.blog-detail-page .article-meta span + span::before {
                content: ".";
                display: inline;
                width: auto;
                height: auto;
                margin-right: 16px;
                border-radius: 0;
                color: #a8b0be;
                background: transparent;
            }.blog-detail-page .article-shell {
        padding: 38px 0 20px;
    }.blog-detail-page .article-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 32px;
        align-items: start;
    }.blog-detail-page .article-main {
        min-width: 0;
        display: block;
    }.blog-detail-page .article-sidebar {
        min-width: 0;
        display: block;
    }.blog-detail-page .article-content {
        padding: 34px 34px 18px;
        border: 1px solid var(--detail-line);
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        font-size: 15px;
    }.blog-detail-page .article-content p {
            margin: 0 0 18px;
        }.blog-detail-page .article-content h2 {
            margin: 34px 0 12px;
            font-size: 27px;
            line-height: 1.2;
            letter-spacing: -0.025em;
        }.blog-detail-page .article-content h3 {
            margin: 28px 0 10px;
            font-size: 21px;
            line-height: 1.25;
            letter-spacing: -0.015em;
        }.blog-detail-page .article-content ul,
        .blog-detail-page .article-content ol {
            margin: 0 0 18px;
            padding-left: 20px;
            list-style: revert;
        }.blog-detail-page .article-content li {
            margin-bottom: 10px;
        }.blog-detail-page .article-content table {
            display: block;
            width: 100%;
            max-width: 100%;
            margin: 24px 0;
            overflow-x: auto;
            border-collapse: collapse;
            font-size: 13px;
            line-height: 1.45;
        }.blog-detail-page .article-content thead,
        .blog-detail-page .article-content tbody,
        .blog-detail-page .article-content tr {
            width: 100%;
        }.blog-detail-page .article-content th,
        .blog-detail-page .article-content td {
            min-width: 170px;
            padding: 12px 13px;
            border: 1px solid var(--detail-line);
            text-align: left;
            vertical-align: top;
        }.blog-detail-page .article-content th {
            background: var(--detail-soft);
            color: var(--navy);
            font-weight: 800;
        }.blog-detail-page .article-content td {
            color: var(--text);
            background: #fff;
        }.blog-detail-page .article-content blockquote,
        .blog-detail-page .article-content .callout {
            margin: 24px 0;
            padding: 20px 22px;
            border: 0;
            border-left: 3px solid var(--primary);
            background: var(--detail-soft-blue);
        }.blog-detail-page .article-tags,
    .blog-detail-page .article-toc-mobile,
    .blog-detail-page .blog-detail-mobile-extras {
        display: none !important;
    }.blog-detail-page .article-share,
    .blog-detail-page .author-box,
    .blog-detail-page .comments-section {
        margin-top: 24px;
        border: 1px solid var(--detail-line);
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }.blog-detail-page .article-share {
        padding: 22px 24px;
    }.blog-detail-page .article-share__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 18px;
    }.blog-detail-page .article-share h2 {
        margin: 0;
        font-size: 15px;
    }.blog-detail-page .article-share__copy {
        padding: 9px 12px;
        border: 0;
        border-radius: 0;
        color: var(--primary);
        background: var(--detail-soft-blue);
        font-size: 12px;
        font-weight: 700;
    }.blog-detail-page .article-share__copy:hover {
            background: #e2ecff;
            transform: none;
        }.blog-detail-page .article-share__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }.blog-detail-page .article-share__grid a {
            min-height: 0;
            padding: 8px 12px;
            border: 1px solid var(--detail-line);
            border-radius: 0;
            color: var(--text);
            background: #fff;
            font-size: 11px;
            font-weight: 700;
        }.blog-detail-page .article-share__grid a:hover {
                border-color: var(--primary);
                color: var(--primary);
                background: #fff;
                transform: none;
            }.blog-detail-page .article-share__status {
        min-height: 20px;
        margin: 10px 0 0;
        color: var(--primary);
        font-size: 12px;
    }.blog-detail-page .author-box {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 18px;
        align-items: start;
        padding: 24px;
    }.blog-detail-page .author-box__avatar {
        width: 64px;
        height: 64px;
        border-radius: 0;
        background: linear-gradient(135deg, var(--navy), var(--primary));
        color: #fff;
        font-size: 19px;
        font-weight: 800;
    }.blog-detail-page .author-box__avatar img {
            border-radius: 0;
        }.blog-detail-page .eyebrow {
        margin: 0 0 4px;
        color: var(--detail-muted);
        font-size: 10px;
        text-transform: uppercase;
    }.blog-detail-page .author-box h2 {
        margin: 0 0 3px;
        font-size: 19px;
    }.blog-detail-page .author-box__body strong {
        margin: 0;
        color: var(--primary);
        font-size: 12px;
    }.blog-detail-page .author-box__body p:last-child {
        margin: 8px 0 0;
        color: var(--detail-muted);
        font-size: 13px;
    }.blog-detail-page .comments-section {
        padding: 25px;
    }.blog-detail-page .comments-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 18px;
    }.blog-detail-page .comments-head h2 {
            margin: 0;
            font-size: 17px;
        }.blog-detail-page .comments-head p {
            margin: 4px 0 0;
            color: var(--detail-muted);
            font-size: 12px;
        }.blog-detail-page .comment-sort {
        border: 1px solid var(--detail-line);
        border-radius: 0;
    }.blog-detail-page .comment-sort a {
            min-width: 54px;
            padding: 8px 10px;
            font-size: 11px;
        }.blog-detail-page .comment-feedback {
        margin-bottom: 17px;
        padding: 13px 15px;
        border-radius: 0;
        background: var(--detail-soft);
        color: var(--text);
        font-size: 12px;
    }.blog-detail-page .comment-feedback--success {
        background: rgba(6, 118, 71, 0.1);
        color: var(--success);
    }.blog-detail-page .comment-form__reply-state {
        margin-bottom: 15px;
        padding: 12px;
        border-radius: 0;
        background: var(--detail-soft-blue);
        font-size: 12px;
    }.blog-detail-page .comment-form__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }.blog-detail-page .comment-form__grid label {
            display: grid;
            gap: 7px;
            color: var(--text);
            font-size: 11px;
            font-weight: 600;
        }.blog-detail-page .comment-form__grid input,
        .blog-detail-page .comment-form__grid textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--detail-line);
            border-radius: 0;
            background: #fff;
        }.blog-detail-page .comment-form__grid input:focus,
            .blog-detail-page .comment-form__grid textarea:focus {
                border-color: var(--primary);
                box-shadow: 0 0 0 3px rgba(7, 93, 245, 0.08);
            }.blog-detail-page .comment-form__grid textarea {
            min-height: 150px;
        }.blog-detail-page .comment-field--full {
        grid-column: 1 / -1;
    }.blog-detail-page .validation-message,
    .blog-detail-page .summary-errors {
        color: var(--danger);
        font-size: 11px;
    }.blog-detail-page .comment-form .check-row {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        margin: 15px 0 5px;
        font-size: 11px;
    }.blog-detail-page .comment-form__privacy {
        margin: 0 0 15px;
        color: #7d8799;
        font-size: 10px;
    }.blog-detail-page .comment-form__actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 0;
    }.blog-detail-page .comment-form__actions span {
            color: #8a93a3;
            font-size: 10px;
        }.blog-detail-page .comments-empty {
        margin-top: 18px;
        padding: 17px;
        border-radius: 0;
        background: var(--detail-soft);
    }.blog-detail-page .comments-empty h3 {
            margin: 0;
            font-size: 13px;
        }.blog-detail-page .comments-empty p {
            margin: 4px 0 0;
            color: var(--detail-muted);
            font-size: 12px;
        }.blog-detail-page .comments-list {
        display: grid;
        gap: 14px;
        margin-top: 20px;
    }.blog-detail-page .comment-item {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 16px;
        border: 1px solid var(--detail-line);
        border-radius: 0;
        background: #fff;
    }.blog-detail-page .comment-item:hover {
            box-shadow: none;
        }.blog-detail-page .comment-item--reply {
        background: var(--detail-soft);
    }.blog-detail-page .comment-avatar {
        width: 42px;
        height: 42px;
        border-radius: 0;
        background: var(--detail-soft-blue);
        color: var(--primary);
        font-size: 12px;
    }.blog-detail-page .comment-head {
        gap: 10px;
        margin-bottom: 8px;
    }.blog-detail-page .comment-head time {
            color: #929bab;
            font-size: 10px;
        }.blog-detail-page .comment-body p {
        margin-bottom: 8px;
        font-size: 13px;
    }.blog-detail-page .comment-badge {
        min-height: 0;
        padding: 3px 7px;
        border-radius: 0;
        background: var(--detail-soft-blue);
        font-size: 10px;
    }.blog-detail-page .comments-pagination {
        margin-top: 18px;
    }.blog-detail-page .comments-pagination span {
            color: var(--detail-muted);
            font-size: 11px;
        }.blog-detail-page .article-sidebar__inner {
        position: sticky;
        top: calc(var(--header-height) + 18px);
        display: grid;
        gap: 18px;
    }.blog-detail-page .sidebar-block {
        padding: 20px;
        border: 1px solid var(--detail-line);
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }.blog-detail-page .sidebar-block__head {
        display: block;
    }.blog-detail-page .sidebar-block h2,
        .blog-detail-page .sidebar-block__head h2 {
            margin: 0 0 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--detail-line);
            font-size: 14px;
        }.blog-detail-page .blog-search-form__label {
        display: block;
        margin-bottom: 7px;
        color: var(--text);
        font-size: 11px;
        font-weight: 600;
    }.blog-detail-page .blog-search-form__controls {
        display: grid;
        grid-template-columns: 1fr 42px;
    }.blog-detail-page .blog-search-form input {
        min-width: 0;
        padding: 10px;
        border: 1px solid var(--detail-line);
        border-right: 0;
        border-radius: 0;
        font-size: 12px;
    }.blog-detail-page .blog-search-form__button {
        width: 42px;
        min-height: 42px;
        border: 0;
        border-radius: 0;
        background: var(--primary);
        color: #fff;
    }.blog-detail-page .blog-category-list {
        display: grid;
        gap: 0;
    }.blog-detail-page .blog-category-link {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        min-height: 0;
        padding: 10px 8px;
        border: 0;
        border-bottom: 1px solid #edf0f5;
        border-radius: 0;
        background: transparent;
        color: var(--text);
        font-size: 12px;
    }.blog-detail-page .blog-category-link.is-active {
            border-left: 3px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-weight: 700;
            box-shadow: none;
        }.blog-detail-page .blog-category-link span:last-child,
            .blog-detail-page .blog-category-link.is-active span:last-child {
                color: inherit;
            }.blog-detail-page .blog-popular-list {
        display: grid;
        gap: 14px;
    }.blog-detail-page .blog-popular-item {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 10px;
        align-items: start;
        padding: 0;
        border: 0;
    }.blog-detail-page .blog-popular-item__thumb,
    .blog-detail-page .blog-popular-item__thumb img {
        width: 72px;
        height: 54px;
        border-radius: 0;
    }.blog-detail-page .blog-popular-item__thumb img {
            object-fit: cover;
        }.blog-detail-page .blog-popular-item__content time {
        color: #929bab;
        font-size: 9px;
    }.blog-detail-page .blog-popular-item__content h3 {
        margin: 3px 0 0;
        font-size: 11px;
        line-height: 1.35;
    }.blog-detail-page .article-sidebar-cta {
        margin-top: 0;
        background: var(--detail-soft);
    }.blog-detail-page .article-sidebar-cta h2 {
            margin: 0 0 6px;
            padding: 0;
            border: 0;
            font-size: 16px;
        }.blog-detail-page .article-sidebar-cta p {
            color: var(--detail-muted);
            font-size: 12px;
        }.blog-detail-page .article-sidebar-cta .btn {
            min-height: 42px;
            margin-top: 0;
            padding: 0 18px;
            border-radius: 2px;
            font-size: 13px;
        }.blog-detail-page .article-related {
        padding: 28px 0 35px;
    }.blog-detail-page .section-heading {
        margin-bottom: 0;
    }.blog-detail-page .article-related .section-kicker,
    .blog-detail-page .article-cta .section-kicker {
        display: flex;
        align-items: center;
        gap: 9px;
        margin: 0 0 6px;
        color: var(--primary);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }.blog-detail-page .article-related .section-kicker::before,
        .blog-detail-page .article-cta .section-kicker::before {
            width: 24px;
        }.blog-detail-page .section-heading h2 {
        margin: 0 0 22px;
        font-size: 25px;
    }.blog-detail-page .article-related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }.blog-detail-page .article-related-card,
        .blog-detail-page .article-related-grid .article-related-card:last-child {
            display: block;
            border: 1px solid var(--detail-line);
            border-radius: 0;
            background: #fff;
            box-shadow: none;
            overflow: hidden;
            transition: none;
        }.blog-detail-page .article-related-card:hover {
                box-shadow: none;
                transform: none;
            }.blog-detail-page .article-related-card__image {
        position: relative;
        display: block;
        overflow: hidden;
        aspect-ratio: auto;
    }.blog-detail-page .article-related-card__image img,
        .blog-detail-page .article-related-grid .article-related-card:last-child .article-related-card__image {
            height: 205px;
            object-fit: cover;
        }.blog-detail-page .article-related-card:hover .article-related-card__image img {
        transform: scale(1.035);
    }.blog-detail-page .article-related-card .blog-category {
        left: 14px;
        bottom: 13px;
        padding: 6px 8px;
        border-radius: 0;
        color: #fff;
        background: var(--primary);
        font-size: 9px;
        font-weight: 800;
    }.blog-detail-page .article-related-card__body {
        display: block;
        padding: 18px;
        border-radius: 0;
    }.blog-detail-page .article-related-card__body time {
            color: #8b95a6;
            font-size: 10px;
        }.blog-detail-page .article-related-card__title {
        margin: 9px 0 10px;
        font-size: 16px;
        line-height: 1.35;
    }.blog-detail-page .article-related-card__summary {
        margin: 0 0 13px;
        color: var(--detail-muted);
        font-size: 12px;
    }.blog-detail-page .article-related-card__link {
        color: var(--primary);
        font-size: 11px;
        font-weight: 800;
    }.blog-detail-page .article-cta {
        padding: 0 0 68px;
    }.blog-detail-page .article-cta__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-top: 0;
        padding: 32px 26px;
        border: 0;
        border-radius: 0;
        background: var(--navy);
        color: #fff;
        box-shadow: none;
    }.blog-detail-page .article-cta__inner h2 {
            margin: 5px 0;
            color: #fff;
            font-size: 23px;
        }.blog-detail-page .article-cta__inner p {
            margin: 0;
            color: #c7cfdb;
            font-size: 12px;
        }.blog-detail-page .article-cta__actions {
        display: flex;
        gap: 10px;
    }.blog-detail-page .article-cta .btn {
        min-height: 42px;
        padding: 0 18px;
        border-radius: 2px;
        font-size: 13px;
    }.blog-detail-page .article-cta .btn-outline {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.55);
    }@media (max-width: 980px) {
    .blog-detail-page .article-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-page .title-panel {
        width: 100%;
    }

    .blog-detail-page .article-sidebar__inner {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-page .blog-popular {
        grid-column: 1 / -1;
    }

    .blog-detail-page .article-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}@media (max-width: 720px) {
    .blog-detail-page .article-head {
        padding: 12px 0;
    }

    .blog-detail-page .article-breadcrumb {
        font-size: 10px;
    }

    .blog-detail-page .cover-wrap {
        width: 100%;
        padding-top: 0;
    }

        .blog-detail-page .cover-wrap > img {
            height: 220px;
            min-height: 0;
            border-left: 0;
            border-right: 0;
        }

    .blog-detail-page .title-panel {
        width: min(calc(100% - 24px), var(--container));
        margin: 18px auto 0;
    }

    .blog-detail-page .article-category {
        margin-bottom: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .blog-detail-page .title-panel h1 {
        font-size: clamp(27px, 8.5vw, 32px);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .blog-detail-page .article-summary {
        margin: 9px 0 10px;
        font-size: 13px;
        line-height: 1.5;
    }

    .blog-detail-page .article-meta {
        gap: 4px 10px;
        font-size: 9px;
    }

        .blog-detail-page .article-meta span + span::before {
            margin-right: 10px;
        }

    .blog-detail-page .article-shell {
        padding-top: 20px;
    }

    .blog-detail-page .article-content {
        padding: 23px 18px 10px;
        font-size: 14px;
    }

    .blog-detail-page .article-share,
    .blog-detail-page .author-box,
    .blog-detail-page .comments-section {
        padding: 19px 16px;
    }

    .blog-detail-page .article-share__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .blog-detail-page .author-box {
        grid-template-columns: 52px 1fr;
    }

    .blog-detail-page .author-box__avatar {
        width: 52px;
        height: 52px;
    }

    .blog-detail-page .comment-form__grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-page .comment-field--full {
        grid-column: auto;
    }

    .blog-detail-page .article-sidebar__inner {
        grid-template-columns: 1fr;
    }

    .blog-detail-page .blog-popular {
        grid-column: auto;
    }

    .blog-detail-page .article-related-grid {
        grid-template-columns: 1fr;
    }

        .blog-detail-page .article-related-card__image img,
        .blog-detail-page .article-related-grid .article-related-card:last-child .article-related-card__image {
            height: 220px;
        }

    .blog-detail-page .article-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-detail-page .article-cta__actions {
        width: 100%;
    }

        .blog-detail-page .article-cta__actions .btn {
            flex: 1;
        }
}@media (max-width: 480px) {
    .blog-detail-page .cover-wrap > img {
        height: 195px;
    }

    .blog-detail-page .comments-head,
    .blog-detail-page .comments-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-detail-page .comment-item {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        padding: 14px;
    }

    .blog-detail-page .comment-avatar {
        width: 36px;
        height: 36px;
    }
}.references-index-page {
    background: #fff;
}.references-index-page .page-head {
        border-bottom: 1px solid var(--border);
        background: var(--surface);
    }.references-index-page .page-head .container {
            padding-top: 40px;
            padding-bottom: 44px;
        }.references-index-page .page-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 13px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
    }.references-index-page .page-breadcrumb a {
            color: var(--primary);
        }.references-index-page .page-head h1 {
        max-width: 760px;
        margin: 0;
        color: var(--navy);
        font-family: var(--font-heading);
        font-size: clamp(40px, 5vw, 50px);
        line-height: 1.02;
        letter-spacing: 0;
    }.references-index-page .page-head p {
        max-width: 680px;
        margin: 15px 0 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.65;
    }.references-index-page .references-page {
        padding: 0 0 92px;
    }.references-index-page .filters-wrap {
        padding: 34px 0 38px;
    }.references-index-page .reference-filters {
        display: flex;
        gap: 9px;
        overflow-x: auto;
        scrollbar-width: none;
    }.references-index-page .reference-filters::-webkit-scrollbar {
            display: none;
        }.references-index-page .filter-button {
        min-height: 42px;
        padding: 0 16px;
        border: 1px solid var(--border);
        border-radius: 0;
        background: #fff;
        color: #4b5565;
        cursor: pointer;
        flex: 0 0 auto;
        font: inherit;
        font-size: 13px;
        font-weight: 800;
        transition: border-color .2s ease, color .2s ease, background .2s ease;
    }.references-index-page .filter-button:hover {
            border-color: #bfd1f9;
            color: var(--primary);
        }.references-index-page .filter-button[aria-pressed="true"] {
            border-color: var(--primary);
            background: var(--primary);
            color: #fff;
        }.references-index-page .featured-reference {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        min-height: 438px;
        overflow: hidden;
        border: 1px solid rgba(11, 22, 43, .18);
        border-radius: 0;
        background: var(--navy);
        color: #fff;
    }.references-index-page .featured-reference__media {
        display: block;
        min-height: 438px;
        overflow: hidden;
        background: #101c33;
    }.references-index-page .featured-reference__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }.references-index-page .featured-reference__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 46px;
    }.references-index-page .eyebrow,
    .references-index-page .section-kicker {
        margin: 0 0 11px;
        color: var(--primary);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }.references-index-page .featured-reference h2 {
        margin: 0;
        color: #fff;
        font-family: var(--font-heading);
        font-size: clamp(32px, 3.4vw, 44px);
        line-height: 1.05;
        letter-spacing: 0;
    }.references-index-page .featured-reference__content > p:not(.eyebrow) {
        margin: 18px 0 0;
        color: #c7cfdb;
        font-size: 15px;
        line-height: 1.75;
    }.references-index-page .featured-reference__meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 28px;
    }.references-index-page .featured-reference__meta div {
            border-top: 1px solid rgba(255, 255, 255, .16);
            padding-top: 12px;
        }.references-index-page .featured-reference__meta span {
            display: block;
            margin-bottom: 5px;
            color: #8ea0bd;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }.references-index-page .featured-reference__meta strong {
            display: block;
            color: #fff;
            font-size: 13px;
            line-height: 1.35;
        }.references-index-page .reference-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 22px;
    }.references-index-page .reference-tags span {
            border: 1px solid rgba(255, 255, 255, .24);
            padding: 7px 9px;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
        }.references-index-page .featured-reference .text-link {
        align-self: flex-start;
        margin-top: 30px;
        color: #fff;
    }.references-index-page .references-section {
        padding-top: 72px;
    }.references-index-page .section-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 26px;
    }.references-index-page .section-heading h2 {
            margin: 0;
            color: var(--navy);
            font-family: var(--font-heading);
            font-size: clamp(30px, 3vw, 38px);
            line-height: 1.12;
            letter-spacing: 0;
        }.references-index-page .results-count {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
    }.references-index-page .references-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }.references-index-page .reference-card {
        display: flex;
        min-height: 100%;
        overflow: hidden;
        flex-direction: column;
        border: 1px solid var(--border);
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }.references-index-page .reference-card:hover {
            border-color: #cad2df;
            box-shadow: 0 18px 42px rgba(11, 22, 43, .08);
            transform: translateY(-3px);
        }.references-index-page .reference-card[hidden] {
            display: none !important;
        }.references-index-page .reference-card__visual {
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: var(--surface);
    }.references-index-page .reference-card__visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .24s ease;
        }.references-index-page .reference-card:hover .reference-card__visual img {
        transform: scale(1.018);
    }.references-index-page .reference-card__body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 24px;
    }.references-index-page .reference-card__category {
        margin: 0 0 11px;
        color: var(--primary);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }.references-index-page .reference-card h3 {
        margin: 0;
        color: var(--navy);
        font-family: var(--font-heading);
        font-size: 25px;
        line-height: 1.18;
        letter-spacing: 0;
    }.references-index-page .reference-card h3 a {
            color: inherit;
        }.references-index-page .reference-card h3 a:hover {
                color: var(--primary);
            }.references-index-page .reference-card__description {
        margin: 14px 0 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }.references-index-page .reference-card .reference-tags {
        margin-top: 20px;
    }.references-index-page .reference-card .reference-tags span {
            border-color: var(--border);
            color: #475467;
        }.references-index-page .reference-card .text-link {
        margin-top: auto;
        padding-top: 24px;
    }.references-index-page .text-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary);
        font-size: 13px;
        font-weight: 900;
    }.references-index-page .text-link svg {
            width: 16px;
            height: 16px;
        }.references-index-page .empty-state {
        border: 1px solid var(--border);
        border-radius: 0;
        padding: 34px;
        background: #fff;
        text-align: center;
    }.references-index-page .empty-state h2 {
            margin: 0;
            color: var(--navy);
            font-family: var(--font-heading);
            font-size: 24px;
        }.references-index-page .empty-state p {
            max-width: 520px;
            margin: 10px auto 20px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }.references-index-page .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 34px;
    }.references-index-page .pagination[hidden] {
            display: none !important;
        }.references-index-page .pagination button {
            min-width: 46px;
            min-height: 42px;
            border: 1px solid var(--border);
            border-radius: 0;
            background: #fff;
            color: var(--navy);
            cursor: pointer;
            font: inherit;
            font-size: 13px;
            font-weight: 800;
        }.references-index-page .pagination button:hover:not(:disabled) {
                border-color: #bfd1f9;
                color: var(--primary);
            }.references-index-page .pagination button[aria-current="page"] {
                border-color: var(--primary);
                background: var(--primary);
                color: #fff;
            }.references-index-page .pagination button:disabled {
                cursor: not-allowed;
                opacity: .42;
            }.references-index-page .pagination__pages {
        display: flex;
        gap: 8px;
    }.references-index-page .pagination__mobile {
        display: none;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
    }.references-index-page .references-cta {
        padding-top: 76px;
    }.references-index-page .references-cta__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        padding: 46px 50px;
        border-radius: 0;
        background: var(--navy);
        color: #fff;
    }.references-index-page .references-cta .section-kicker {
        color: #8fb2ff;
    }.references-index-page .references-cta h2 {
        max-width: 610px;
        margin: 0;
        color: #fff;
        font-family: var(--font-heading);
        font-size: clamp(30px, 3vw, 40px);
        line-height: 1.12;
        letter-spacing: 0;
    }.references-index-page .references-cta p {
        max-width: 620px;
        margin: 14px 0 0;
        color: #c7cfdb;
        font-size: 14px;
        line-height: 1.7;
    }.references-index-page .references-cta__actions {
        display: flex;
        flex: 0 0 auto;
        gap: 10px;
    }.references-index-page .references-cta .btn {
        min-height: 44px;
        border-radius: 0;
    }@media (max-width: 980px) {
    .references-index-page .featured-reference {
        grid-template-columns: 1fr;
    }

    .references-index-page .featured-reference__media {
        min-height: 0;
        height: 390px;
    }

    .references-index-page .featured-reference__content {
        padding: 36px;
    }

    .references-index-page .references-grid {
        gap: 20px;
    }

    .references-index-page .references-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}@media (max-width: 700px) {
    .references-index-page .page-head .container {
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .references-index-page .page-head h1 {
        font-size: 36px;
    }

    .references-index-page .page-head p {
        font-size: 15px;
    }

    .references-index-page .filter-button {
        min-height: 44px;
    }

    .references-index-page .featured-reference__media {
        height: 240px;
    }

    .references-index-page .featured-reference__content {
        padding: 24px 20px 27px;
    }

    .references-index-page .featured-reference h2 {
        font-size: 28px;
    }

    .references-index-page .featured-reference__content > p:not(.eyebrow) {
        font-size: 14px;
        line-height: 1.68;
    }

    .references-index-page .featured-reference__meta {
        gap: 12px;
    }

    .references-index-page .references-section {
        padding-top: 52px;
    }

    .references-index-page .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .references-index-page .references-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .references-index-page .reference-card__body {
        padding: 20px;
    }

    .references-index-page .reference-card h3 {
        font-size: 23px;
    }

    .references-index-page .reference-card__description {
        font-size: 14px;
    }

    .references-index-page .pagination {
        justify-content: space-between;
    }

    .references-index-page .pagination__pages {
        display: none;
    }

    .references-index-page .pagination__mobile {
        display: block;
    }

    .references-index-page .pagination button {
        min-width: 48px;
    }

    .references-index-page .references-cta {
        padding-top: 58px;
    }

    .references-index-page .references-cta__inner {
        padding: 30px 22px;
    }

    .references-index-page .references-cta h2 {
        font-size: 29px;
    }

    .references-index-page .references-cta__actions {
        width: 100%;
        flex-direction: column;
    }

        .references-index-page .references-cta__actions .btn {
            width: 100%;
        }
}@media (max-width: 480px) {
    .references-index-page .page-head h1 {
        font-size: 32px;
    }

    .references-index-page .featured-reference__meta {
        grid-template-columns: 1fr;
    }

    .references-index-page .pagination-label {
        display: none;
    }
}.services-index-page {
    background: var(--white);
}.services-index-page .page-heading {
        border-bottom: 1px solid var(--border);
        background: var(--surface);
    }.services-index-page .page-heading .container {
            padding-top: 34px;
            padding-bottom: 36px;
        }.services-index-page .page-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 13px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
    }.services-index-page .page-breadcrumb a {
            color: var(--primary);
        }.services-index-page .page-heading h1 {
        max-width: 760px;
        margin: 0;
        color: var(--navy);
        font-family: var(--font-heading);
        font-size: clamp(34px, 5vw, 46px);
        line-height: 1.04;
        letter-spacing: 0;
    }.services-index-page .page-heading p {
        max-width: 700px;
        margin: 12px 0 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.64;
    }.services-index-page .filters-shell {
        max-width: 100%;
        overflow: hidden;
        padding: 28px 0 0;
    }.services-index-page .filters {
        display: flex;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scrollbar-color: #b8c3d3 transparent;
        scrollbar-width: thin;
        touch-action: pan-x;
    }.services-index-page .filters::-webkit-scrollbar {
            height: 5px;
        }.services-index-page .filters::-webkit-scrollbar-track {
            background: transparent;
        }.services-index-page .filters::-webkit-scrollbar-thumb {
            border-radius: 20px;
            background: #b8c3d3;
        }.services-index-page .filters::-webkit-scrollbar-thumb:hover {
                background: #8f9caf;
            }.services-index-page .filter-btn {
        min-height: 40px;
        flex: 0 0 auto;
        padding: 8px 14px;
        border: 1px solid var(--border);
        border-radius: 4px;
        background: var(--white);
        color: #4d596a;
        cursor: pointer;
        font: inherit;
        font-size: 13px;
        font-weight: 800;
        scroll-snap-align: start;
        white-space: nowrap;
        transition: border-color .18s ease, color .18s ease, background .18s ease;
    }.services-index-page .filter-btn:hover {
            border-color: #bfd1f9;
            color: var(--primary);
        }.services-index-page .filter-btn[aria-pressed="true"] {
            border-color: var(--primary);
            background: var(--primary);
            color: var(--white);
        }.services-index-page .services-list-section {
        padding: 34px 0 78px;
    }.services-index-page .section-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 24px;
    }.services-index-page .section-kicker {
        display: block;
        margin: 0 0 10px;
        color: var(--primary);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }.services-index-page .section-heading h2,
    .services-index-page .services-cta h2,
    .services-index-page .empty-state h2 {
        margin: 0;
        color: var(--navy);
        font-family: var(--font-heading);
        letter-spacing: 0;
    }.services-index-page .section-heading h2 {
        font-size: clamp(28px, 3vw, 38px);
        line-height: 1.12;
    }.services-index-page .results-count {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
    }.services-index-page .service-list {
        display: grid;
        gap: 24px;
    }.services-index-page .service-item {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        min-height: 430px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--white);
    }.services-index-page .service-item[hidden] {
            display: none !important;
        }.services-index-page .service-item:nth-child(even) .service-visual {
            order: 2;
        }.services-index-page .service-item:nth-child(even) .service-content {
            order: 1;
        }.services-index-page .service-visual {
        position: relative;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 38px;
        background: linear-gradient(135deg, rgba(7, 92, 246, .08), transparent 50%), var(--surface);
    }.services-index-page .service-visual::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -90px;
            width: 270px;
            height: 270px;
            border: 46px solid rgba(7, 92, 246, .08);
            border-radius: 50%;
        }.services-index-page .service-visual::after {
            content: "";
            position: absolute;
            bottom: -70px;
            left: -65px;
            width: 150px;
            height: 150px;
            background: rgba(11, 22, 43, .05);
            transform: rotate(18deg);
        }.services-index-page .device-stage {
        position: relative;
        z-index: 2;
        width: min(100%, 570px);
        padding-right: 44px;
        padding-bottom: 35px;
    }.services-index-page .desktop-device {
        position: relative;
        width: 100%;
        padding: 10px 10px 15px;
        border: 1px solid #24344e;
        background: #0f1c31;
        box-shadow: 0 22px 45px rgba(11, 22, 43, .18);
    }.services-index-page .desktop-camera {
        display: block;
        width: 5px;
        height: 5px;
        margin: 0 auto 8px;
        border-radius: 50%;
        background: #66758c;
    }.services-index-page .desktop-screen {
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: var(--white);
    }.services-index-page .desktop-base {
        position: absolute;
        bottom: -27px;
        left: 50%;
        width: 28%;
        height: 28px;
        background: #0f1c31;
        clip-path: polygon(38% 0, 62% 0, 70% 70%, 100% 82%, 100% 100%, 0 100%, 0 82%, 30% 70%);
        transform: translateX(-50%);
    }.services-index-page .phone-device {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 31%;
        padding: 8px 6px;
        border: 1px solid #2b3a51;
        border-radius: 18px;
        background: #101c30;
        box-shadow: 0 18px 36px rgba(11, 22, 43, .23);
    }.services-index-page .phone-notch {
        display: block;
        width: 38%;
        height: 5px;
        margin: 0 auto 6px;
        border-radius: 0 0 5px 5px;
        background: #3b4960;
    }.services-index-page .phone-screen {
        aspect-ratio: 9 / 18;
        overflow: hidden;
        border-radius: 11px;
        background: var(--white);
    }.services-index-page .mock {
        height: 100%;
        overflow: hidden;
        color: #172033;
        font-size: 8px;
    }.services-index-page .mock-top {
        height: 12%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        border-bottom: 1px solid #e8ecf2;
        background: var(--white);
    }.services-index-page .mock-logo {
        color: var(--navy);
        font-weight: 800;
    }.services-index-page .mock-nav {
        color: #687386;
    }.services-index-page .mock-button {
        padding: 3px 7px;
        border-radius: 2px;
        background: var(--mock-accent, var(--primary));
        color: var(--white);
        font-weight: 800;
    }.services-index-page .mock-hero {
        height: 48%;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 8%;
        padding: 7%;
        background: var(--mock-bg, #eef4ff);
    }.services-index-page .mock-kicker {
        width: 35%;
        height: 4px;
        margin-bottom: 7px;
        background: var(--mock-accent, var(--primary));
    }.services-index-page .mock-title {
        height: 7px;
        margin-bottom: 5px;
        background: var(--navy);
        box-shadow: 0 12px 0 var(--navy), 0 24px 0 #cbd3df;
    }.services-index-page .mock-hero-card {
        height: 100%;
        border: 4px solid var(--white);
        background: linear-gradient(135deg, var(--mock-accent, var(--primary)), var(--navy));
        box-shadow: 0 7px 15px rgba(11, 22, 43, .12);
    }.services-index-page .mock-content {
        height: 40%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4%;
        padding: 6%;
        background: var(--white);
    }.services-index-page .mock-card {
        border: 1px solid var(--border);
        background: var(--white);
    }.services-index-page .mock-card::before {
            content: "";
            display: block;
            height: 46%;
            border-bottom: 1px solid var(--border);
            background: var(--mock-soft, #edf3ff);
        }.services-index-page .mock-card::after {
            content: "";
            display: block;
            width: 65%;
            height: 4px;
            margin: 12% 10%;
            background: #adb7c5;
            box-shadow: 0 9px 0 #d6dce5;
        }.services-index-page .phone-screen .mock-top {
        height: 9%;
        padding: 0 8%;
    }.services-index-page .phone-screen .mock-nav {
        display: none;
    }.services-index-page .phone-screen .mock-button {
        padding: 2px 4px;
        font-size: 5px;
    }.services-index-page .phone-screen .mock-hero {
        height: 49%;
        display: block;
        padding: 14% 10%;
    }.services-index-page .phone-screen .mock-hero-card {
        height: 48%;
        margin-top: 22%;
    }.services-index-page .phone-screen .mock-content {
        height: 42%;
        grid-template-columns: 1fr;
        gap: 7%;
        padding: 10%;
    }.services-index-page .phone-screen .mock-card:nth-child(n/**/+3) {
        display: none;
    }.services-index-page .theme-web {
        --mock-accent: #075cf6;
        --mock-bg: #edf3ff;
        --mock-soft: #e9f1ff;
    }.services-index-page .theme-software {
        --mock-accent: #6d42d8;
        --mock-bg: #f3efff;
        --mock-soft: #eee8ff;
    }.services-index-page .theme-commerce {
        --mock-accent: #0f8b6d;
        --mock-bg: #eaf8f4;
        --mock-soft: #e3f5ef;
    }.services-index-page .theme-seo {
        --mock-accent: #e26a16;
        --mock-bg: #fff2e8;
        --mock-soft: #ffeadb;
    }.services-index-page .theme-support {
        --mock-accent: #c13f64;
        --mock-bg: #fff0f4;
        --mock-soft: #ffe6ee;
    }.services-index-page .service-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        padding: 42px 46px;
    }.services-index-page .service-number {
        position: static;
        z-index: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        min-width: 0;
        height: auto;
        margin-bottom: 16px;
        padding: 0;
        background: transparent;
        color: var(--primary);
        font-size: 12px;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
    }.services-index-page .service-number::after {
            content: "";
            width: 48px;
            height: 1px;
            background: #bfd0f3;
        }.services-index-page .service-content h3 {
        margin: 0;
        color: var(--navy);
        font-family: var(--font-heading);
        font-size: clamp(28px, 3.4vw, 38px);
        line-height: 1.1;
        letter-spacing: 0;
    }.services-index-page .service-content > p {
        margin: 16px 0 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.7;
    }.services-index-page .service-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 18px;
        margin: 23px 0 26px;
        padding: 20px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }.services-index-page .feature {
        display: flex;
        align-items: flex-start;
        min-width: 0;
        gap: 9px;
        color: #243145;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.45;
    }.services-index-page .feature svg {
            width: 17px;
            height: 17px;
            flex: 0 0 auto;
            margin-top: 2px;
            color: var(--primary);
        }.services-index-page .service-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }.services-index-page .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 32px;
    }.services-index-page .pagination[hidden] {
            display: none !important;
        }.services-index-page .pagination button {
            min-width: 42px;
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 0 13px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: var(--white);
            color: var(--text);
            cursor: pointer;
            font: inherit;
            font-size: 13px;
            font-weight: 800;
        }.services-index-page .pagination button:hover:not(:disabled) {
                border-color: var(--primary);
                color: var(--primary);
            }.services-index-page .pagination button[aria-current="page"] {
                border-color: var(--primary);
                background: var(--primary);
                color: var(--white);
            }.services-index-page .pagination button:disabled {
                cursor: not-allowed;
                opacity: .42;
            }.services-index-page .pagination__pages {
        display: flex;
        gap: 7px;
    }.services-index-page .pagination__mobile {
        display: none;
        color: var(--muted);
        font-size: 13px;
        font-weight: 800;
    }.services-index-page .empty-state {
        border: 1px solid var(--border);
        padding: 34px;
        background: var(--white);
        text-align: center;
    }.services-index-page .empty-state h2 {
            font-size: 24px;
        }.services-index-page .empty-state p {
            max-width: 520px;
            margin: 10px auto 20px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }.services-index-page .services-cta {
        padding: 0 0 78px;
    }.services-index-page .services-cta__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 36px;
        padding: 38px 42px;
        background: var(--navy);
        color: var(--white);
    }.services-index-page .services-cta .section-kicker {
        color: #8fb2ff;
    }.services-index-page .services-cta h2 {
        max-width: 690px;
        color: var(--white);
        font-size: clamp(27px, 4vw, 39px);
        line-height: 1.12;
    }.services-index-page .services-cta p {
        max-width: 650px;
        margin: 11px 0 0;
        color: #b7c2d3;
    }.services-index-page .services-cta__actions {
        display: flex;
        gap: 9px;
    }.services-index-page .services-cta .btn {
        min-height: 44px;
        border-radius: 4px;
    }@media (max-width: 1020px) {
    .services-index-page .service-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

        .services-index-page .service-item:nth-child(even) .service-visual,
        .services-index-page .service-item:nth-child(even) .service-content {
            order: initial;
        }

    .services-index-page .service-visual {
        min-height: 390px;
    }
}@media (max-width: 720px) {
    .services-index-page .page-heading .container {
        padding-top: 24px;
        padding-bottom: 27px;
    }

    .services-index-page .page-heading h1 {
        font-size: 30px;
    }

    .services-index-page .page-heading p {
        margin-top: 7px;
        font-size: 14px;
    }

    .services-index-page .filters-shell {
        padding-top: 14px;
    }

        .services-index-page .filters-shell .container {
            width: 100%;
            padding-right: 14px;
            padding-left: 14px;
        }

    .services-index-page .filters {
        padding-right: 14px;
        padding-bottom: 9px;
    }

    .services-index-page .filter-btn {
        min-height: 42px;
    }

    .services-index-page .services-list-section {
        padding: 25px 0 58px;
    }

    .services-index-page .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

        .services-index-page .section-heading h2 {
            font-size: 27px;
        }

    .services-index-page .service-list {
        gap: 16px;
    }

    .services-index-page .service-visual {
        min-height: 285px;
        padding: 24px;
    }

    .services-index-page .device-stage {
        padding-right: 36px;
        padding-bottom: 29px;
    }

    .services-index-page .service-content {
        padding: 27px 21px 29px;
    }

        .services-index-page .service-content h3 {
            font-size: 28px;
        }

    .services-index-page .service-features {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .services-index-page .service-actions .btn {
        width: 100%;
    }

    .services-index-page .pagination {
        justify-content: space-between;
    }

    .services-index-page .pagination__pages {
        display: none;
    }

    .services-index-page .pagination__mobile {
        display: block;
    }

    .services-index-page .services-cta {
        padding-bottom: 58px;
    }

    .services-index-page .services-cta__inner {
        grid-template-columns: 1fr;
        padding: 28px 21px;
    }

    .services-index-page .services-cta h2 {
        font-size: 29px;
    }

    .services-index-page .services-cta__actions {
        flex-direction: column;
    }

        .services-index-page .services-cta__actions .btn {
            width: 100%;
        }
}@media (max-width: 440px) {
    .services-index-page .page-heading h1 {
        font-size: 31px;
    }

    .services-index-page .service-visual {
        min-height: 250px;
        padding: 18px;
    }

    .services-index-page .device-stage {
        padding-right: 31px;
    }

    .services-index-page .pagination-label {
        display: none;
    }
}.service-detail-page {
    color: var(--text);
    background: var(--white);
}.service-detail-hero {
    position: relative;
    padding: 52px 0 72px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(234, 241, 250, .94), rgba(255, 255, 255, .98) 56%), var(--white);
}.service-detail-hero::before {
        content: "";
        position: absolute;
        top: -190px;
        right: -130px;
        width: 530px;
        height: 530px;
        border: 1px solid rgba(7, 92, 246, .12);
        transform: rotate(24deg);
        pointer-events: none;
    }.service-detail-hero::after {
        content: "";
        position: absolute;
        right: 8%;
        bottom: -100px;
        width: 230px;
        height: 230px;
        background: var(--primary);
        opacity: .05;
        transform: rotate(24deg);
        pointer-events: none;
    }.service-detail-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}.service-detail-breadcrumb a {
        transition: color 180ms ease;
    }.service-detail-breadcrumb a:hover {
            color: var(--primary);
        }.service-detail-breadcrumb span[aria-hidden="true"] {
        opacity: .55;
    }.service-detail-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
    gap: 64px;
    align-items: center;
}.service-detail-hero__content h1 {
    max-width: 790px;
    margin: 0 0 22px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -.052em;
    text-wrap: balance;
}.service-detail-hero__summary {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
}.service-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}.service-detail-hero__visual {
    position: relative;
    min-height: 480px;
}.service-detail-hero__image-wrap {
    position: absolute;
    inset: 0 42px 38px 0;
    overflow: hidden;
    border: 1px solid #ccd8e7;
    background: #dfe8f3;
    box-shadow: 0 28px 70px rgba(11, 22, 43, .16);
}.service-detail-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}.service-detail-hero__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(11, 22, 43, .3));
    pointer-events: none;
}.service-detail-hero__note {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 230px;
    padding: 24px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 20px 48px rgba(11, 22, 43, .22);
}.service-detail-hero__note strong {
        display: block;
        margin-bottom: 7px;
        font-family: var(--font-display);
        font-size: 18px;
    }.service-detail-hero__note span {
        color: rgba(255, 255, 255, .68);
        font-size: 13px;
        line-height: 1.55;
    }.service-detail-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 42px;
    background: linear-gradient(135deg, rgba(7, 92, 246, .08), rgba(11, 22, 43, .04)), var(--surface);
}.service-detail-placeholder__browser {
    width: 100%;
    max-width: 420px;
    border: 1px solid #c7d4e5;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(11, 22, 43, .12);
}.service-detail-placeholder__toolbar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid #d4dde8;
    background: #e8eef6;
}.service-detail-placeholder__toolbar i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #93a4b9;
    }.service-detail-placeholder__body {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 250px;
}.service-detail-placeholder__copy {
    padding: 34px 24px;
}.service-detail-placeholder__copy span {
        display: block;
        height: 12px;
        margin-bottom: 12px;
        background: var(--navy);
    }.service-detail-placeholder__copy span:nth-child(2) {
            width: 68%;
        }.service-detail-placeholder__copy small {
        display: block;
        width: 80%;
        height: 7px;
        margin-top: 22px;
        background: #9aa9bb;
    }.service-detail-placeholder__copy b {
        display: block;
        width: 94px;
        height: 30px;
        margin-top: 28px;
        background: var(--primary);
    }.service-detail-placeholder__visual {
    position: relative;
    overflow: hidden;
    background: #a9c7ec;
}.service-detail-placeholder__visual::before,
    .service-detail-placeholder__visual::after {
        content: "";
        position: absolute;
        background: #6d9fdc;
    }.service-detail-placeholder__visual::before {
        left: -20px;
        bottom: -80px;
        width: 170px;
        height: 170px;
        transform: rotate(28deg);
    }.service-detail-placeholder__visual::after {
        top: 28px;
        right: 20px;
        width: 90px;
        height: 90px;
    }.service-detail-highlights {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}.service-detail-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}.service-detail-highlight {
    min-height: 132px;
    padding: 26px 28px;
    border-right: 1px solid var(--border);
}.service-detail-highlight:last-child {
        border-right: 0;
    }.service-detail-highlight > span {
        display: block;
        margin-bottom: 8px;
        color: var(--primary);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .12em;
    }.service-detail-highlight strong {
        display: block;
        margin-bottom: 5px;
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 17px;
    }.service-detail-highlight p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
    }.service-detail-content {
    padding: 92px 0;
    background: var(--white);
}.service-detail-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 70px;
    align-items: start;
}.service-detail-article {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}.service-detail-article > :first-child {
        margin-top: 0;
    }.service-detail-article h2 {
        margin: 52px 0 18px;
        color: var(--navy);
        font-family: var(--font-display);
        font-size: clamp(28px, 3.4vw, 40px);
        line-height: 1.15;
        letter-spacing: -.035em;
    }.service-detail-article h3 {
        margin: 34px 0 14px;
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 22px;
        line-height: 1.3;
    }.service-detail-article p,
    .service-detail-article li {
        color: #475467;
        font-size: 17px;
        line-height: 1.82;
    }.service-detail-article p {
        margin-bottom: 22px;
    }.service-detail-article ul,
    .service-detail-article ol {
        display: grid;
        gap: 10px;
        margin: 0 0 26px 22px;
        padding: 0;
    }.service-detail-article img {
        width: 100%;
        margin: 34px 0;
    }.service-detail-article blockquote {
        margin: 38px 0;
        padding: 8px 0 8px 24px;
        border-left: 3px solid var(--primary);
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 21px;
        line-height: 1.55;
    }.service-detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: grid;
    gap: 18px;
}.service-detail-sidecard {
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--white);
}.service-detail-sidecard--dark {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}.service-detail-sidecard__label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}.service-detail-sidecard--dark .service-detail-sidecard__label {
    color: #7bb9ff;
}.service-detail-sidecard h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.3;
}.service-detail-sidecard--dark h2 {
    color: var(--white);
}.service-detail-sidecard p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}.service-detail-sidecard--dark p {
    color: rgba(255, 255, 255, .68);
}.service-detail-sidecard .btn {
    width: 100%;
}.service-detail-benefit-list {
    display: grid;
    list-style: none;
}.service-detail-benefit-list li {
        position: relative;
        padding: 13px 0 13px 24px;
        border-bottom: 1px solid var(--border);
        color: var(--text);
        font-size: 14px;
        font-weight: 700;
    }.service-detail-benefit-list li:last-child {
            border-bottom: 0;
        }.service-detail-benefit-list li::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 2px;
            width: 8px;
            height: 8px;
            background: var(--primary);
        }.service-detail-process {
    padding: 90px 0;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}.service-detail-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}.service-detail-section-head > div {
        max-width: 760px;
    }.service-detail-section-head h2 {
        margin: 0 0 14px;
        color: var(--white);
        font-family: var(--font-display);
        font-size: clamp(34px, 4.2vw, 54px);
        line-height: 1.08;
        letter-spacing: -.045em;
    }.service-detail-section-head p {
        margin: 0;
        color: rgba(255, 255, 255, .65);
        font-size: 16px;
    }.service-detail-section-head--light h2 {
    color: var(--navy);
}.service-detail-section-head--light p {
    color: var(--muted);
}.service-detail-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}.service-detail-process__item {
    min-height: 230px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}.service-detail-process__item > span {
        display: block;
        margin-bottom: 44px;
        color: #7bb9ff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .13em;
    }.service-detail-process__item h3 {
        margin: 0 0 10px;
        color: var(--white);
        font-family: var(--font-display);
        font-size: 19px;
        line-height: 1.3;
    }.service-detail-process__item p {
        margin: 0;
        color: rgba(255, 255, 255, .58);
        font-size: 13px;
    }.service-detail-references {
    padding: 96px 0;
    background: var(--surface);
}.service-detail-references__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}.service-detail-reference-card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #ced9e6;
    background: var(--white);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}.service-detail-reference-card:hover {
        transform: translateY(-3px);
        border-color: #9db2ca;
        box-shadow: 0 18px 40px rgba(11, 22, 43, .09);
    }.service-detail-reference-card__number {
    display: block;
    margin-bottom: 42px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
}.service-detail-reference-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -.025em;
}.service-detail-reference-card h3 a {
        color: inherit;
    }.service-detail-reference-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 14px;
}.service-detail-reference-card .text-link {
    margin-top: auto;
}.service-detail-cta {
    padding: 74px 0;
    background: var(--primary);
    color: var(--white);
}.service-detail-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: center;
}.service-detail-cta h2 {
    max-width: 820px;
    margin: 0 0 12px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}.service-detail-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
}@media (max-width: 1050px) {
    .service-detail-hero__grid {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 40px;
    }

    .service-detail-content__grid {
        gap: 40px;
    }
}@media (max-width: 900px) {
    .service-detail-hero {
        padding-bottom: 56px;
    }

    .service-detail-hero__grid,
    .service-detail-content__grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero__visual {
        min-height: 430px;
    }

    .service-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-sidecard--dark {
        grid-column: 1 / -1;
    }

    .service-detail-references__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-cta__grid {
        grid-template-columns: 1fr;
    }
}@media (max-width: 640px) {
    .service-detail-hero {
        padding: 30px 0 46px;
    }

    .service-detail-breadcrumb {
        margin-bottom: 24px;
    }

    .service-detail-hero__content h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .service-detail-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

        .service-detail-hero__actions .btn {
            width: 100%;
        }

    .service-detail-hero__visual {
        min-height: 340px;
    }

    .service-detail-hero__image-wrap {
        inset: 0 22px 28px 0;
    }

    .service-detail-hero__note {
        width: 210px;
        padding: 18px;
    }

    .service-detail-highlights__grid {
        grid-template-columns: 1fr;
    }

    .service-detail-highlight {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

        .service-detail-highlight:last-child {
            border-bottom: 0;
        }

    .service-detail-content {
        padding: 64px 0;
    }

    .service-detail-article p,
    .service-detail-article li {
        font-size: 16px;
    }

    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .service-detail-sidecard--dark {
        grid-column: auto;
    }

    .service-detail-section-head {
        display: grid;
        align-items: start;
    }

    .service-detail-process,
    .service-detail-references {
        padding: 68px 0;
    }

    .service-detail-process__grid,
    .service-detail-references__grid {
        grid-template-columns: 1fr;
    }

    .service-detail-process__item {
        min-height: auto;
    }

        .service-detail-process__item > span {
            margin-bottom: 24px;
        }

    .service-detail-cta {
        padding: 58px 0;
    }

        .service-detail-cta .btn {
            width: 100%;
        }
}@media (prefers-reduced-motion: reduce) {
    .service-detail-page *,
    .service-detail-page *::before,
    .service-detail-page *::after {
        transition-duration: .01ms !important;
    }
}.services-index-page .service-real-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}.service-template-page{
  --navy: #0b162b;
  --text: #16223a;
  --muted: #69768d;
  --line: #dfe6f0;
  --soft: #f5f7fb;
  --white: #fff;
  --blue: #246bfe;
  --blue-dark: #1556da;
  --cyan: #42d6f5;
  --green: #16a16f;
  --purple: #7455e9;
  --danger: #b3bdcb;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(11, 22, 43, 0.1);
  --shadow-hover: 0 28px 70px rgba(11, 22, 43, 0.16);
  color: var(--text);
}.service-template-page .container{
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}.service-template-page .service-template-breadcrumb{
  display: flex;
  gap: 8px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
}.service-template-page .service-template-breadcrumb a:hover{
  color: var(--blue);
}.service-template-page .service-template-hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 55%, #fff 100%);
  border-bottom: 1px solid #e7edf6;
}.service-template-page .service-template-hero::before{
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -270px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 214, 245, 0.24), rgba(36, 107, 254, 0.08) 55%, transparent 70%);
}.service-template-page .service-template-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(36, 107, 254, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 107, 254, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, #000 55%, #000);
}.service-template-page .hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  grid-template-areas:
    "copy media"
    "facts media";
  align-items: center;
  gap: 72px;
  padding: 52px 0 88px;
}.service-template-page .hero-copy{
  grid-area: copy;
}.service-template-page .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}.service-template-page .eyebrow::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue);
}.service-template-page h1{
  max-width: 690px;
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 5.1vw, 67px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}.service-template-page h1 span{
  color: var(--blue);
}.service-template-page .hero-copy > p{
  max-width: 635px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}.service-template-page .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}.service-template-page .hero-facts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid rgba(11, 22, 43, 0.11);
}.service-template-page .hero-facts--standalone{
  grid-area: facts;
  margin-top: 0;
  align-self: start;
}.service-template-page .hero-fact{
  padding: 18px 18px 0 0;
}.service-template-page .hero-fact + .hero-fact{
  padding-left: 18px;
  border-left: 1px solid rgba(11, 22, 43, 0.11);
}.service-template-page .hero-fact strong{
  display: block;
  color: var(--navy);
  font-size: 20px;
}.service-template-page .hero-fact span{
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}.service-template-page .hero-media-slot{
  grid-area: media;
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(36, 107, 254, 0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 241, 255, 0.76));
  box-shadow: 0 26px 70px rgba(11, 22, 43, 0.13);
  overflow: hidden;
}.service-template-page .hero-media-slot::before,.service-template-page .hero-media-slot::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}.service-template-page .hero-media-slot::before{
  width: 320px;
  height: 320px;
  right: -130px;
  top: -150px;
  background: rgba(66, 214, 245, 0.18);
}.service-template-page .hero-media-slot::after{
  width: 260px;
  height: 260px;
  left: -140px;
  bottom: -150px;
  background: rgba(36, 107, 254, 0.12);
}.service-template-page .hero-media-image{
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 440px;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  background: #eef3fb;
}.service-template-page .hero-media-placeholder{
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 440px;
  aspect-ratio: 4 / 3;
  display: none;
  place-items: center;
  padding: 40px;
  border: 2px dashed rgba(36, 107, 254, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}.service-template-page .hero-media-placeholder.is-visible{
  display: grid;
}.service-template-page .hero-media-placeholder__icon{
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 14px;
  color: var(--blue);
  background: #eaf1ff;
  font-size: 24px;
  font-weight: 800;
}.service-template-page .hero-media-placeholder strong{
  display: block;
  color: var(--navy);
  font-size: 17px;
}.service-template-page .hero-media-placeholder span{
  display: block;
  max-width: 330px;
  margin: 7px auto 0;
  color: var(--muted);
  font-size: 13px;
}.service-template-page .hero-media-placeholder code{
  display: inline-block;
  margin-top: 12px;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--blue-dark);
  background: #eef4ff;
  font-size: 12px;
}.service-template-page .section{
  padding: 84px 0;
}.service-template-page .section-soft{
  background: var(--soft);
}.service-template-page .section-dark{
  color: #fff;
  background: var(--navy);
}.service-template-page .section-heading{
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}.service-template-page .section-kicker{
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}.service-template-page .section-heading h2{
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}.service-template-page .section-heading p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}.service-template-page .section-dark .section-kicker{
  color: var(--cyan);
}.service-template-page .section-dark .section-heading h2,.service-template-page .section-dark .section-heading p{
  color: #fff;
}.service-template-page .pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}.service-template-page .pricing-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(11, 22, 43, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}.service-template-page .pricing-card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--card-gradient);
}.service-template-page .pricing-card:hover,.service-template-page .pricing-card.is-selected{
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 42%, #fff);
  box-shadow: var(--shadow-hover);
}.service-template-page .pricing-card.is-selected{
  outline: 3px solid color-mix(in srgb, var(--accent) 16%, transparent);
  outline-offset: 2px;
}.service-template-page .plan-head{
  min-height: 170px;
  padding: 30px 28px 24px;
  background: linear-gradient(140deg, var(--accent-soft), #fff 75%);
}.service-template-page .plan-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}.service-template-page .plan-label::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 12%, transparent);
}.service-template-page .pricing-card h3{
  margin: 14px 0 4px;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: -0.025em;
}.service-template-page .plan-description{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}.service-template-page .price{
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 19px;
}.service-template-page .price strong{
  color: var(--navy);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
}.service-template-page .price span{
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}.service-template-page .price-quote strong{
  font-size: 31px;
}.service-template-page .plan-body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 28px 28px;
}.service-template-page .plan-metrics{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 21px;
}.service-template-page .plan-metric{
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfe;
  text-align: center;
}.service-template-page .plan-metric strong{
  display: block;
  color: var(--navy);
  font-size: 13px;
}.service-template-page .plan-metric span{
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
}.service-template-page .plan-features{
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}.service-template-page .plan-features li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #45526a;
  font-size: 13px;
}.service-template-page .feature-check{
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 900;
}.service-template-page .feature-check--info{
  color: #8a5a00;
  background: #fff0cb;
}.service-template-page .feature-check--optional{
  color: #667085;
  background: #eef2f6;
}.service-template-page .plan-actions{
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 23px;
}.service-template-page .pricing-card .btn{
  width: 100%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 22%, transparent);
}.service-template-page .comparison-shell{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}.service-template-page .comparison-desktop{
  overflow: auto;
}.service-template-page .comparison-table{
  width: 100%;
  min-width: 830px;
  border-collapse: separate;
  border-spacing: 0;
}.service-template-page .comparison-table th,.service-template-page .comparison-table td{
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #e8edf4;
  transition: background 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}.service-template-page .comparison-table thead th{
  position: sticky;
  top: 0;
  z-index: 3;
  color: var(--navy);
  background: #f3f6fb;
  font-size: 14px;
}.service-template-page .comparison-table thead th[data-plan]{
  box-shadow: inset 0 4px 0 var(--plan-color);
}.service-template-page .comparison-table thead th:first-child,.service-template-page .comparison-table tbody td:first-child{
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  color: var(--navy);
  font-weight: 800;
  background: #fff;
}.service-template-page .comparison-table thead th:first-child{
  z-index: 4;
  background: #f3f6fb;
}.service-template-page .comparison-table [data-plan].is-column-muted{
  opacity: 0.32;
}.service-template-page .comparison-table [data-plan].is-column-active{
  background: color-mix(in srgb, var(--plan-color) 10%, #fff) !important;
  box-shadow: inset 1px 0 0 color-mix(in srgb, var(--plan-color) 22%, #fff), inset -1px 0 0 color-mix(in srgb, var(--plan-color) 22%, #fff);
}.service-template-page .comparison-row-description{
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}.service-template-page .table-check{
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}.service-template-page .table-cross{
  color: var(--danger);
  font-size: 18px;
}.service-template-page .table-pill{
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: #8a5a00;
  background: #fff0cb;
  font-size: 11px;
  font-weight: 800;
}.service-template-page .mobile-comparison{
  display: none;
  padding: 14px;
}.service-template-page .mobile-package-list{
  display: grid;
  gap: 14px;
}.service-template-page .mobile-package{
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}.service-template-page .mobile-package__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--mobile-plan-start), var(--mobile-plan-end));
}.service-template-page .mobile-package__head strong{
  font-size: 14px;
}.service-template-page .mobile-package__head span{
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}.service-template-page .mobile-feature-row{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}.service-template-page .mobile-feature-row:last-child{
  border-bottom: 0;
}.service-template-page .mobile-feature-row strong{
  font-size: 12px;
  color: var(--navy);
}.service-template-page .mobile-feature-value{
  text-align: right;
  color: #445169;
  font-size: 12px;
  font-weight: 700;
}.service-template-page .comparison-note{
  padding: 13px 18px;
  color: var(--muted);
  background: #fafbfd;
  border-top: 1px solid var(--line);
  font-size: 11px;
}.service-template-page .references-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}.service-template-page .reference-card{
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border-radius: 17px;
  background: #172642;
}.service-template-page .reference-preview{
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}.service-template-page .reference-preview img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}.service-template-page .reference-card:hover .reference-preview{
  transform: scale(1.04);
}.service-template-page .reference-preview::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 14, 30, 0.93), rgba(7, 14, 30, 0.04) 68%);
}.service-template-page .reference-preview--clinic{ background: linear-gradient(135deg, #eaf8ff, #8fd5eb 42%, #2b6b8d); }.service-template-page .reference-preview--rent{ background: linear-gradient(135deg, #222a35, #566273 48%, #d08a38); }.service-template-page .reference-preview--menu{ background: linear-gradient(135deg, #fff1e7, #d8a176 45%, #442a22); }.service-template-page .reference-preview--commerce{ background: linear-gradient(135deg, #eeefff, #8f92ff 46%, #342d82); }.service-template-page .browser-window{
  position: absolute;
  z-index: 1;
  width: 78%;
  height: 66%;
  top: 12%;
  left: 11%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.22);
  transform: rotate(-2deg);
}.service-template-page .reference-card:nth-child(even) .browser-window{
  transform: rotate(2deg);
}.service-template-page .browser-top{
  height: 24px;
  background: #eff2f6;
}.service-template-page .browser-top::before{
  content: "●  ●  ●";
  padding-left: 10px;
  color: #9aa5b5;
  font-size: 9px;
  letter-spacing: 2px;
}.service-template-page .browser-hero{
  height: 88px;
  padding: 21px;
  background: linear-gradient(135deg, #f4f7fc, #fff);
}.service-template-page .browser-line{
  height: 7px;
  margin-bottom: 8px;
  border-radius: 7px;
  background: var(--navy);
}.service-template-page .browser-line:nth-child(1){ width: 37%; height: 5px; background: var(--blue); }.service-template-page .browser-line:nth-child(2){ width: 61%; }.service-template-page .browser-line:nth-child(3){ width: 48%; }.service-template-page .browser-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 11px;
}.service-template-page .browser-box{
  height: 62px;
  border-radius: 8px;
  background: #eff2f7;
}.service-template-page .reference-info{
  position: absolute;
  z-index: 3;
  left: 25px;
  right: 25px;
  bottom: 22px;
  color: #fff;
}.service-template-page .reference-info span{
  display: block;
  margin-bottom: 4px;
  color: #c8d6f2;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}.service-template-page .reference-info h3{
  margin: 0 0 8px;
  font-size: 21px;
}.service-template-page .reference-info p{
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}.service-template-page .reference-link{
  position: absolute;
  z-index: 4;
  right: 22px;
  top: 22px;
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  color: #fff;
  background: rgba(11, 22, 43, 0.55);
  backdrop-filter: blur(5px);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-7px);
  transition: 0.25s ease;
}.service-template-page .reference-card:hover .reference-link,.service-template-page .reference-card:focus-within .reference-link{
  opacity: 1;
  transform: none;
}.service-template-page .faq-list{
  display: grid;
  gap: 14px;
}.service-template-page .faq-item{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(11, 22, 43, 0.05);
}.service-template-page .faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}.service-template-page .faq-icon{
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eef4ff;
  font-size: 20px;
  line-height: 1;
}.service-template-page .faq-question[aria-expanded="true"] .faq-icon{
  transform: rotate(45deg);
}.service-template-page .faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}.service-template-page .faq-answer-inner{
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
}.service-template-page .faq-answer-inner p:first-child{
  margin-top: 0;
}.service-template-page .cta-section{
  padding: 40px 0 90px;
}.service-template-page .cta-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--cta-start, #246bfe), var(--cta-end, #42d6f5));
  box-shadow: var(--shadow);
}.service-template-page .cta-copy span{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}.service-template-page .cta-copy h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}.service-template-page .cta-copy p{
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}.service-template-page .reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}.service-template-page .reveal.is-visible{
  opacity: 1;
  transform: none;
}@media (max-width: 1100px) {.service-template-page .hero-grid,.service-template-page .pricing-grid,.service-template-page .references-grid{
    grid-template-columns: 1fr;
  }.service-template-page .hero-grid{
    grid-template-areas:
      "copy"
      "media"
      "facts";
  }.service-template-page .hero-copy{
    text-align: center;
  }.service-template-page .hero-copy > p{
    margin-inline: auto;
  }.service-template-page .hero-actions{
    justify-content: center;
  }.service-template-page .hero-facts{
    max-width: 620px;
    margin-inline: auto;
    margin-top: 34px;
    text-align: left;
  }.service-template-page .hero-media-slot{
    width: min(720px, 100%);
    min-height: 450px;
    margin-inline: auto;
  }.service-template-page .hero-media-image,.service-template-page .hero-media-placeholder{
    min-height: 420px;
  }.service-template-page .pricing-grid{
    gap: 18px;
  }}@media (max-width: 991px) {.service-template-page .hero-grid{
    gap: 40px;
    padding-bottom: 64px;
  }.service-template-page .hero-facts{
    grid-template-columns: 1fr;
    gap: 18px;
  }.service-template-page .hero-fact,.service-template-page .hero-fact + .hero-fact{
    padding: 0;
    border: 0;
  }.service-template-page .comparison-desktop{
    display: none;
  }.service-template-page .mobile-comparison{
    display: block;
  }.service-template-page .cta-box{
    flex-direction: column;
    align-items: stretch;
  }}@media (max-width: 768px) {.service-template-page .container{
    width: min(calc(100% - 28px), 1180px);
  }.service-template-page .hero-grid{
    gap: 28px;
    padding: 44px 0 56px;
  }.service-template-page h1{
    font-size: 39px;
  }.service-template-page .hero-copy > p{
    font-size: 15px;
  }.service-template-page .hero-actions{
    flex-direction: column;
  }.service-template-page .hero-actions .btn{
    width: 100%;
  }.service-template-page .hero-facts{
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
  }.service-template-page .hero-fact{
    padding: 12px 0;
    border-top: 1px solid rgba(11, 22, 43, 0.1);
  }.service-template-page .hero-fact + .hero-fact{
    padding-left: 0;
    border-left: 0;
  }.service-template-page .hero-fact strong{
    font-size: 17px;
  }.service-template-page .hero-media-slot{
    min-height: 0;
    padding: 10px;
    border-radius: 16px;
    overflow: hidden;
  }.service-template-page .hero-media-image,.service-template-page .hero-media-placeholder{
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 10px;
  }.service-template-page .hero-media-image{
    object-fit: contain;
    background: #fff;
  }.service-template-page .hero-media-slot::before,.service-template-page .hero-media-slot::after{
    display: none;
  }.service-template-page .hero-media-placeholder{
    padding: 28px 20px;
  }.service-template-page .section{
    padding: 68px 0;
  }.service-template-page .faq-question{
    padding: 20px;
    font-size: 16px;
  }.service-template-page .faq-answer-inner{
    padding: 0 20px 20px;
  }}@media (max-width: 470px) {.service-template-page h1{
    font-size: 34px;
  }.service-template-page .hero-media-slot{
    min-height: 0;
  }.service-template-page .hero-media-image,.service-template-page .hero-media-placeholder{
    min-height: 0;
    aspect-ratio: auto;
  }}@media (max-width: 640px) {.service-template-page .container{
    width: min(calc(100% - 28px), 1180px);
  }.service-template-page h1{
    font-size: 38px;
  }.service-template-page .hero-copy > p,.service-template-page .section-heading p{
    font-size: 15px;
  }.service-template-page .hero-actions .btn,.service-template-page .cta-box .btn{
    width: 100%;
  }.service-template-page .plan-head,.service-template-page .plan-body,.service-template-page .cta-box{
    padding-inline: 20px;
  }}.cursor-point,.cursor-halo{display:none!important}.service-template-page>section.section,.service-template-page>.cta-section{content-visibility:auto;contain-intrinsic-size:820px}.service-template-page .pricing-card,.service-template-page .reference-card,.service-template-page .faq-item{contain:layout paint}.service-template-page .reference-preview img{width:100%;height:100%;object-fit:cover}.service-template-page .hero-media-image{aspect-ratio:4/3}@media(max-width:768px){.service-template-page .reveal{opacity:1!important;transform:none!important;transition:none!important}.service-template-page>section.section,.service-template-page>.cta-section{contain-intrinsic-size:620px}}@media(prefers-reduced-motion:reduce){.service-template-page .reveal{opacity:1!important;transform:none!important;transition:none!important}}

/* WEBSITEJI SERVICE DETAIL HERO FINAL FIX
   Ana sayfa .hero ve .hero-grid kurallarıyla çakışmayı engeller. */

.service-template-page .service-template-hero {
    position: relative;
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden;
    isolation: isolate;
}

.service-template-page .service-template-hero > .container {
    position: relative;
    z-index: 2;
}

/* Global .hero-grid içinde bulunan height:100% burada kesin olarak iptal edilir. */
.service-template-page .service-template-hero .hero-grid {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    grid-template-areas:
        "copy media"
        "facts media";
    column-gap: clamp(34px, 5vw, 68px);
    row-gap: 28px;
    align-items: center;
    padding: 42px 0 72px;
}

/* Global ana sayfa hero animasyonlarının detay sayfasını gizlemesini engeller. */
.service-template-page .service-template-hero .hero-copy,
.service-template-page .service-template-hero .hero-media-slot,
.service-template-page .service-template-hero .hero-actions,
.service-template-page .service-template-hero .hero-facts {
    min-width: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.service-template-page .service-template-hero .hero-copy {
    grid-area: copy;
    max-width: none;
}

.service-template-page .service-template-hero .hero-actions {
    display: flex;
}

.service-template-page .service-template-hero .hero-facts--standalone {
    grid-area: facts;
}

/* Sabit min-height kaldırıldı. Görsel kendi oranıyla eksiksiz görünür. */
.service-template-page .service-template-hero .hero-media-slot {
    grid-area: media;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    align-self: center;
    padding: 12px;
}

.service-template-page .service-template-hero .hero-media-image {
    position: relative;
    z-index: 1;
    display: block !important;
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-template-page .service-template-hero .hero-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
}

.service-template-page .service-template-hero h1 {
    overflow-wrap: anywhere;
}

/* Tablet: metin, görsel ve özet bilgiler alt alta. */
@media (max-width: 1100px) {
    .service-template-page .service-template-hero .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "copy"
            "media"
            "facts";
        gap: 30px;
        padding: 36px 0 60px;
    }

    .service-template-page .service-template-hero .hero-media-slot {
        width: min(720px, 100%);
        margin-inline: auto;
        aspect-ratio: 4 / 3;
    }
}

/* Mobil: görsel metnin hemen altında tam genişlikte görünür. */
@media (max-width: 768px) {
    .service-template-page .service-template-breadcrumb {
        padding-top: 18px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .service-template-page .service-template-breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .service-template-page .service-template-hero .hero-grid {
        display: grid;
        height: auto !important;
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "copy"
            "media"
            "facts";
        gap: 24px;
        padding: 28px 0 44px;
    }

    .service-template-page .service-template-hero .hero-copy {
        text-align: left;
    }

    .service-template-page .service-template-hero .hero-copy > p {
        margin-inline: 0;
    }

    .service-template-page .service-template-hero h1 {
        margin: 14px 0;
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.08;
    }

    .service-template-page .service-template-hero .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        opacity: 1 !important;
        transform: none !important;
    }

    .service-template-page .service-template-hero .hero-actions .btn {
        width: 100%;
    }

    .service-template-page .service-template-hero .hero-media-slot {
        display: block !important;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        margin: 0;
        padding: 8px;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .service-template-page .service-template-hero .hero-media-image {
        display: block !important;
        width: 100%;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        object-fit: cover;
        border-radius: 9px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-template-page .service-template-hero .hero-media-placeholder {
        display: grid;
        width: 100%;
        height: 100%;
        min-height: 0 !important;
        padding: 24px 18px;
        border-radius: 9px;
    }

    .service-template-page .service-template-hero .hero-facts {
        width: 100%;
        max-width: none;
        margin: 0;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 420px) {
    .service-template-page .service-template-hero .hero-grid {
        gap: 20px;
        padding-bottom: 36px;
    }

    .service-template-page .service-template-hero .hero-media-slot {
        aspect-ratio: 16 / 11;
    }
}

/* =========================================================
   Websiteji 2026 public page refresh
   Hakkımızda, Hizmetler, İletişim ve içerik sayfaları
   ========================================================= */
.wj-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.wj-page-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.wj-page-kicker--light {
    color: #79b8ff;
}

.wj-section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.wj-section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.wj-section-heading--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

/* About */
.wj-about-hero {
    padding: 86px 0 96px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.wj-about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}

.wj-about-hero__copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.01;
    letter-spacing: -.055em;
}

.wj-about-hero__copy > p {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 18px;
}

.wj-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wj-about-hero__facts {
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wj-about-hero__facts strong,
.wj-about-hero__facts span {
    display: block;
}

.wj-about-hero__facts strong {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 14px;
}

.wj-about-hero__facts span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.wj-about-hero__visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background: var(--surface);
}

.wj-about-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(11, 22, 43, .72));
    pointer-events: none;
}

.wj-about-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
}

.wj-about-visual-note {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: #fff;
}

.wj-about-visual-note span,
.wj-about-visual-note strong {
    display: block;
}

.wj-about-visual-note span {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.wj-about-visual-note strong {
    max-width: 420px;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.25;
}

.wj-about-intro {
    padding: 100px 0;
    background: var(--surface);
}

.wj-about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 120px);
}

.wj-about-intro h2,
.wj-about-process h2 {
    margin: 0;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.wj-about-intro__copy {
    padding-top: 34px;
}

.wj-about-intro__copy p {
    color: var(--muted);
    font-size: 18px;
}

.wj-about-intro__copy p + p {
    margin-top: 22px;
}

.wj-about-values {
    padding: 104px 0;
    background: #fff;
}

.wj-about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.wj-about-values__grid article {
    min-height: 290px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wj-about-value__number {
    display: block;
    margin-bottom: 58px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.wj-about-values__grid h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.wj-about-values__grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.wj-about-process {
    padding: 108px 0;
    background: var(--navy);
}

.wj-about-process h2,
.wj-about-process h3 {
    color: #fff;
}

.wj-about-process__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(58px, 9vw, 130px);
    align-items: start;
}

.wj-about-process__copy {
    position: sticky;
    top: calc(var(--header-height) + 30px);
}

.wj-about-process__copy > p {
    max-width: 560px;
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
}

.wj-about-process__steps {
    list-style: none;
    counter-reset: none;
}

.wj-about-process__steps li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.wj-about-process__steps li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.wj-about-process__steps li > span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .28);
    display: grid;
    place-items: center;
    color: #8fc4ff;
    font-weight: 800;
}

.wj-about-process__steps h3 {
    margin-bottom: 7px;
    font-size: 20px;
}

.wj-about-process__steps p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .62);
}

.wj-about-custom-content {
    padding: 90px 0;
    background: #fff;
}

.wj-about-custom-content .prose {
    max-width: 860px;
    margin-inline: auto;
}

.wj-about-cta,
.wj-services-cta {
    padding: 0 0 90px;
    background: var(--surface);
}

.wj-about-cta__inner,
.wj-services-cta__inner {
    padding: clamp(38px, 6vw, 68px);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.wj-about-cta h2,
.wj-services-cta h2 {
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

/* Contact */
.wj-contact-page {
    background: #fff;
}

.wj-contact-hero {
    padding: 84px 0 88px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.wj-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: clamp(44px, 8vw, 110px);
    align-items: end;
}

.wj-contact-hero__copy h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(42px, 5.8vw, 74px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.wj-contact-hero__copy > p {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
}

.wj-contact-response {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wj-contact-response__dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #16a36a;
    box-shadow: 0 0 0 6px rgba(22, 163, 106, .12);
}

.wj-contact-response strong,
.wj-contact-response small {
    display: block;
}

.wj-contact-response strong {
    color: var(--navy);
    font-size: 14px;
}

.wj-contact-response small {
    color: var(--muted);
    font-size: 12px;
}

.wj-contact-channels {
    border-top: 1px solid var(--border);
}

.wj-contact-channels article {
    min-height: 94px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.wj-contact-channel__icon {
    width: 48px;
    height: 48px;
    background: #eaf2ff;
    color: var(--primary);
    display: grid;
    place-items: center;
}

.wj-contact-channel__icon svg {
    width: 22px;
    height: 22px;
}

.wj-contact-channels small,
.wj-contact-channels a,
.wj-contact-channels span {
    display: block;
}

.wj-contact-channels small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wj-contact-channels a,
.wj-contact-channels div > span {
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.wj-contact-main {
    padding: 100px 0;
}

.wj-contact-main__grid {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
}

.wj-contact-brief {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.wj-contact-brief h2 {
    margin-bottom: 32px;
    font-size: clamp(30px, 3.7vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.wj-contact-brief > ul {
    border-top: 1px solid var(--border);
}

.wj-contact-brief > ul li {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
}

.wj-contact-brief > ul li > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.wj-contact-brief li strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
}

.wj-contact-brief li p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.wj-contact-brief__note {
    margin-top: 28px;
    padding: 22px;
    border-left: 3px solid var(--primary);
    background: var(--surface);
}

.wj-contact-brief__note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
}

.wj-contact-brief__note p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.wj-contact-form-shell {
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 22px 60px rgba(11, 22, 43, .08);
}

.wj-contact-form-shell .contact-form {
    padding: 0;
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

.wj-contact-form-shell .contact-form h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 36px);
}

.wj-contact-form-shell .contact-form > p {
    margin-bottom: 28px;
    color: var(--muted);
}

.wj-contact-form-shell .field label,
.wj-contact-form-shell .consent {
    color: var(--text);
}

.wj-contact-form-shell .field input,
.wj-contact-form-shell .field select,
.wj-contact-form-shell .field textarea {
    border: 1px solid #d7dee8;
    background: #fff;
    color: var(--text);
}

.wj-contact-form-shell .field input:focus,
.wj-contact-form-shell .field select:focus,
.wj-contact-form-shell .field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 92, 246, .1);
}

.wj-contact-form-shell .form-submit {
    width: 100%;
}

.wj-contact-process {
    padding: 96px 0;
    background: var(--surface);
}

.wj-contact-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.wj-contact-process__grid article {
    min-height: 220px;
    padding: 28px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.wj-contact-process__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.wj-contact-process__grid h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.wj-contact-process__grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Services */
.wj-services-hero {
    padding: 84px 0 88px;
    color: #fff;
    background: var(--navy);
}

.wj-services-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(54px, 8vw, 120px);
    align-items: end;
}

.wj-services-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(42px, 5.7vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.wj-services-hero__copy > p {
    max-width: 700px;
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
}

.wj-services-hero__actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wj-services-hero__actions .btn-outline {
    border-color: rgba(255, 255, 255, .34);
    background: transparent;
    color: #fff;
}

.wj-services-hero__actions .btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: var(--navy);
}

.wj-services-hero__summary {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.wj-services-hero__summary div {
    min-height: 72px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.wj-services-hero__summary strong {
    color: #80bbff;
    font-size: 12px;
}

.wj-services-hero__summary span {
    color: #fff;
    font-weight: 700;
}

.wj-services-filter {
    position: sticky;
    top: var(--header-height);
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.wj-services-filter .filters {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.wj-services-filter .filters::-webkit-scrollbar {
    display: none;
}

.wj-services-filter .filter-btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 0;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.wj-services-filter .filter-btn:hover,
.wj-services-filter .filter-btn[aria-pressed="true"] {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.wj-services-list {
    padding: 104px 0;
    background: #fff;
}

.wj-services-list .results-count {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.wj-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.wj-service-card {
    min-width: 0;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.wj-service-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 44px rgba(11, 22, 43, .09);
}

.wj-service-card[hidden] {
    display: none !important;
}

.wj-service-card__visual {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: var(--surface);
}

.wj-service-card__visual::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(11, 22, 43, .62));
}

.wj-service-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.wj-service-card:hover .wj-service-card__visual img {
    transform: scale(1.035);
}

.wj-service-card__visual > span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    padding: 6px 9px;
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.wj-service-card__content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.wj-service-card__top {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.wj-service-card__top span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.wj-service-card__top small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wj-service-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.18;
}

.wj-service-card h3 a:hover {
    color: var(--primary);
}

.wj-service-card__content > p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.wj-service-card__content ul {
    margin-bottom: 24px;
    display: grid;
    gap: 9px;
}

.wj-service-card__content li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #344054;
    font-size: 13px;
}

.wj-service-card__content li svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.wj-service-card__content .text-link {
    margin-top: auto;
}

.wj-services-page .pagination {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wj-services-page .pagination[hidden] {
    display: none;
}

.wj-services-page .pagination button {
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 0;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
}

.wj-services-page .pagination button:hover:not(:disabled),
.wj-services-page .pagination button[aria-current="page"] {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.wj-services-page .pagination button:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.wj-services-page .pagination__pages {
    display: flex;
    gap: 8px;
}

.wj-services-page .pagination__mobile {
    display: none;
}

.wj-services-why {
    padding: 104px 0;
    background: var(--surface);
}

.wj-services-why__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(52px, 8vw, 120px);
}

.wj-services-why h2 {
    margin: 0;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.wj-services-why__items {
    border-top: 1px solid var(--border);
}

.wj-services-why__items article {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: minmax(150px, .45fr) minmax(0, .55fr);
    gap: 22px;
}

.wj-services-why__items strong {
    color: var(--navy);
}

.wj-services-why__items p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Generic pages */
.wj-content-hero {
    padding: 72px 0 68px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.wj-breadcrumb {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 12px;
}

.wj-breadcrumb a:hover {
    color: var(--primary);
}

.wj-content-hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.wj-content-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.wj-content-body {
    padding: 90px 0 110px;
}

.wj-content-body__grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 820px);
    gap: clamp(48px, 8vw, 110px);
    justify-content: center;
    align-items: start;
}

.wj-content-aside {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    padding: 22px;
    border-left: 3px solid var(--primary);
    background: var(--surface);
}

.wj-content-aside strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
}

.wj-content-aside p {
    color: var(--muted);
    font-size: 13px;
}

.wj-content-aside .text-link {
    overflow-wrap: anywhere;
}

.wj-content-article.prose {
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.wj-content-article.prose h2 {
    margin: 46px 0 14px;
    font-size: 28px;
}

.wj-content-article.prose h2:first-child {
    margin-top: 0;
}

.wj-content-article.prose p,
.wj-content-article.prose li {
    color: #475467;
}

.wj-content-article.prose ul {
    margin: 16px 0 24px;
    padding-left: 22px;
    list-style: disc;
}

@media (max-width: 1080px) {
    .wj-about-hero__grid,
    .wj-contact-hero__grid,
    .wj-services-hero__grid {
        grid-template-columns: 1fr;
    }

    .wj-about-hero__visual {
        min-height: 480px;
    }

    .wj-about-hero__visual img {
        min-height: 480px;
    }

    .wj-about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wj-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wj-contact-channels {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-left: 1px solid var(--border);
    }

    .wj-contact-channels article {
        padding: 18px;
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 820px) {
    .wj-about-hero,
    .wj-contact-hero,
    .wj-services-hero {
        padding: 64px 0 70px;
    }

    .wj-about-intro,
    .wj-about-values,
    .wj-about-process,
    .wj-contact-main,
    .wj-contact-process,
    .wj-services-list,
    .wj-services-why,
    .wj-content-body {
        padding: 76px 0;
    }

    .wj-about-intro__grid,
    .wj-about-process__grid,
    .wj-contact-main__grid,
    .wj-services-why__grid,
    .wj-content-body__grid {
        grid-template-columns: 1fr;
    }

    .wj-about-process__copy,
    .wj-contact-brief,
    .wj-content-aside {
        position: static;
    }

    .wj-about-intro__copy {
        padding-top: 0;
    }

    .wj-about-hero__facts {
        grid-template-columns: 1fr;
    }

    .wj-contact-process__grid {
        grid-template-columns: 1fr;
    }

    .wj-contact-process__grid article {
        min-height: auto;
    }

    .wj-about-cta__inner,
    .wj-services-cta__inner,
    .wj-section-heading--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .wj-services-filter {
        top: 66px;
    }

    .wj-content-body__grid {
        max-width: 760px;
    }
}

@media (max-width: 620px) {
    .wj-about-hero__copy h1,
    .wj-contact-hero__copy h1,
    .wj-services-hero h1,
    .wj-content-hero h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .wj-about-hero__visual,
    .wj-about-hero__visual img {
        min-height: 390px;
    }

    .wj-about-values__grid,
    .wj-service-grid,
    .wj-contact-channels {
        grid-template-columns: 1fr;
    }

    .wj-about-values__grid article {
        min-height: 230px;
    }

    .wj-about-value__number,
    .wj-contact-process__grid article > span {
        margin-bottom: 30px;
    }

    .wj-contact-channels {
        border-left: 0;
    }

    .wj-contact-channels article {
        padding-inline: 0;
        border-right: 0;
    }

    .wj-contact-form-shell {
        margin-inline: -8px;
        padding: 24px 18px;
    }

    .wj-services-filter .container {
        width: 100%;
    }

    .wj-services-filter .filters {
        padding-inline: 20px;
    }

    .wj-service-card__visual {
        height: 220px;
    }

    .wj-services-page .pagination__pages,
    .wj-services-page .pagination-label {
        display: none;
    }

    .wj-services-page .pagination__mobile {
        min-width: 62px;
        display: inline-flex;
        justify-content: center;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }

    .wj-services-why__items article {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .wj-about-cta,
    .wj-services-cta {
        padding-bottom: 58px;
    }

    .wj-about-cta__inner,
    .wj-services-cta__inner {
        margin-inline: -10px;
    }
}

.hero--fallback .hero-slide {
    min-height: var(--hero-height);
}

.hero--fallback .hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 16, 34, .94) 0%, rgba(6, 16, 34, .74) 48%, rgba(6, 16, 34, .28) 100%);
}

.hero--fallback .hero-grid {
    position: relative;
    z-index: 2;
}

@media (max-width: 720px) {
    .hero--fallback .hero-slide::after {
        background: rgba(6, 16, 34, .78);
    }
}

/* Websiteji navigation, mega menu and footer refresh - 2026-08 */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.header {
    overflow: visible;
}

.nav-links {
    gap: clamp(18px, 2vw, 30px);
}

.nav-dropdown__chevron {
    width: 15px;
    height: 15px;
    color: currentColor;
    transform: none;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
    transform: rotate(180deg);
}

.mega-menu {
    top: var(--header-height);
    width: min(calc(100vw - 32px), 1180px);
    max-height: calc(100svh - var(--header-height) - 20px);
    transform: translateX(-50%) translateY(10px);
}

.nav-dropdown.is-open .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu__shell {
    max-height: min(640px, calc(100svh - var(--header-height) - 24px));
    overflow: auto;
    border: 1px solid #dfe5ed;
    background: #fff;
    box-shadow: 0 24px 60px rgba(8, 22, 45, 0.16);
}

.mega-menu__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.mega-menu__topbar > div {
    display: grid;
    gap: 2px;
}

.mega-menu__topbar span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mega-menu__topbar strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.3;
}

.mega-menu__topbar > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.mega-menu__topbar > a span {
    font-size: 17px;
    letter-spacing: 0;
}

.mega-menu__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 286px;
    gap: 0;
}

.mega-menu__layout--without-cta {
    grid-template-columns: minmax(0, 1fr);
}

.mega-menu__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px 24px 24px;
}

.mega-menu__layout--without-cta .mega-menu__categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu__column {
    display: block;
    min-width: 0;
    padding: 22px 24px 8px 0;
    border-bottom: 1px solid var(--border);
}

.mega-menu__column:nth-child(odd) {
    padding-right: 28px;
}

.mega-menu__column:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid var(--border);
}

.mega-menu__layout--without-cta .mega-menu__column {
    padding-left: 22px;
    padding-right: 22px;
    border-left: 1px solid var(--border);
}

.mega-menu__layout--without-cta .mega-menu__column:nth-child(3n + 1) {
    padding-left: 0;
    border-left: 0;
}

.mega-menu__column-heading {
    min-height: 54px;
    margin-bottom: 10px;
}

.mega-menu__column h2 {
    margin: 0 0 4px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.mega-menu__column-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.mega-menu__links {
    display: grid;
    gap: 2px;
}

.mega-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 8px 10px !important;
    border: 0;
    border-left: 2px solid transparent;
    border-radius: 0;
    color: #27364d !important;
    font-size: 13px !important;
    font-weight: 650 !important;
}

.mega-service-link > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mega-service-link__meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
}

.mega-service-link__meta svg {
    width: 15px;
    height: 15px;
    color: #98a2b3;
    transition: transform 180ms ease, color 180ms ease;
}

.mega-service-link:hover,
.mega-service-link:focus-visible {
    border-left-color: var(--primary);
    background: #f5f8fc;
    color: var(--primary) !important;
}

.mega-service-link:hover .mega-service-link__meta svg,
.mega-service-link:focus-visible .mega-service-link__meta svg {
    color: var(--primary);
    transform: translateX(2px);
}

.mega-menu__cta-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 32px 28px;
    border-radius: 0;
    background: var(--navy);
    color: rgba(255, 255, 255, .74);
}

.mega-menu__cta-panel .mega-menu__eyebrow {
    margin-bottom: 14px;
    color: #72b5ff;
    font-size: 11px;
    letter-spacing: .12em;
}

.mega-menu__cta-panel h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    text-transform: none;
}

.mega-menu__cta-panel p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.65;
}

.mega-menu__button {
    width: 100%;
    min-height: 44px;
    margin: auto 0 12px;
}

.mega-menu__all-link {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.mobile-nav__header,
.mobile-nav__contact {
    display: none;
}

.footer {
    padding: 0;
    border: 0;
    background: #071326;
    color: rgba(255, 255, 255, .68);
    box-shadow: none;
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: #0c1b34;
}

.footer-cta__inner {
    min-height: 184px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.footer-cta__inner > div {
    max-width: 780px;
}

.footer-cta__inner span {
    display: block;
    margin-bottom: 8px;
    color: #73b5ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-cta__inner h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: -.03em;
}

.footer-main {
    padding-top: 62px;
    padding-bottom: 24px;
}

.footer-grid {
    grid-template-columns: minmax(250px, 1.35fr) .7fr 1fr minmax(220px, .9fr);
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand {
    min-width: 0;
}

.footer-brand__logo {
    display: inline-flex;
    max-width: 198px;
    padding: 8px 11px;
    background: #fff;
}

.footer-brand__logo .brand-image {
    width: 176px;
    max-width: 100%;
}

.footer-brand p {
    max-width: 420px;
    margin: 22px 0 18px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.75;
}

.footer-domain {
    display: inline-flex;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
}

.footer-column h3 {
    margin: 4px 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.footer-links,
.footer-service-links {
    display: grid;
    gap: 11px;
}

.footer-links a,
.footer-service-links a {
    width: fit-content;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    line-height: 1.45;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-service-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-service-links__all {
    margin-top: 5px;
    color: #72b5ff !important;
    font-weight: 750;
}

.footer-contact address {
    display: grid;
    gap: 16px;
    margin: 0;
    font-style: normal;
}

.footer-contact address a {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-contact address span {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-contact address strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 13px;
    font-weight: 650;
}

.footer-bottom {
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .48);
}

.footer-bottom nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .62);
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 1080px) and (min-width: 961px) {
    .mega-menu__layout {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .mega-menu__categories {
        padding-inline: 18px;
    }

    .mega-menu__column:nth-child(odd) {
        padding-right: 18px;
    }

    .mega-menu__column:nth-child(even) {
        padding-left: 18px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr 1fr;
        gap: 42px;
    }

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 960px) {
    .mobile-nav {
        width: min(100%, 430px);
        height: calc(100svh - var(--header-height));
        padding: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-nav__header {
        position: sticky;
        z-index: 2;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 74px;
        padding: 14px 20px;
        border-bottom: 1px solid var(--border);
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(12px);
    }

    .mobile-nav__header > div {
        display: grid;
        gap: 1px;
    }

    .mobile-nav__header small {
        color: var(--primary);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .mobile-nav__header strong {
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 20px;
    }

    .mobile-nav__close {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 1px solid var(--border);
        background: #fff;
        cursor: pointer;
    }

    .mobile-nav__close svg {
        width: 20px;
        height: 20px;
    }

    .mobile-nav__list {
        padding: 10px 20px 0;
    }

    .mobile-nav .mobile-nav__direct-link,
    .mobile-nav .mobile-accordion__trigger {
        min-height: 58px;
        padding: 0;
        border-bottom: 1px solid var(--border);
        color: var(--navy);
        font-size: 15px;
        font-weight: 750;
    }

    .mobile-nav .mobile-nav__direct-link::after {
        content: "→";
        color: #98a2b3;
    }

    .mobile-nav .mobile-nav__direct-link[aria-current="page"] {
        color: var(--primary);
    }

    .mobile-accordion__trigger > svg {
        width: 18px;
        height: 18px;
        color: var(--primary);
        transition: transform 180ms ease;
    }

    .mobile-accordion.is-open .mobile-accordion__trigger > svg {
        transform: rotate(180deg);
    }

    .mobile-accordion__label {
        display: grid;
        gap: 0;
    }

    .mobile-accordion__label small {
        color: var(--muted);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .mobile-accordion__panel {
        display: block;
        max-height: none;
        padding: 14px 0 18px;
        border-bottom: 1px solid var(--border);
        background: #f8fafc;
    }

    .mobile-services-all {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        min-height: 48px !important;
        margin: 0 14px 12px;
        padding: 0 14px !important;
        border: 1px solid #dbe4ef !important;
        background: #fff !important;
        color: var(--primary) !important;
        font-size: 12px !important;
        font-weight: 800 !important;
    }

    .mobile-services-all::after {
        display: none;
    }

    .mobile-services-all svg {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-category {
        padding: 14px;
        border-top: 1px solid #e4e9f0;
    }

    .mobile-menu-category:first-of-type {
        border-top: 0;
    }

    .mobile-menu-category__heading {
        display: grid;
        gap: 3px;
        margin-bottom: 7px;
    }

    .mobile-menu-category__heading strong {
        color: var(--navy);
        font-size: 13px;
    }

    .mobile-menu-category__heading small {
        color: var(--muted);
        font-size: 11px;
        line-height: 1.45;
    }

    .mobile-menu-category__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px 12px;
    }

    .mobile-nav .mobile-menu-category__links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        min-width: 0;
        min-height: 40px;
        padding: 5px 0;
        border: 0;
        color: #344054;
        font-size: 12px;
        font-weight: 650;
        line-height: 1.35;
    }

    .mobile-nav .mobile-menu-category__links a::after {
        display: none;
    }

    .mobile-menu-category__links a > span {
        min-width: 0;
    }

    .mobile-menu-category__links a > small {
        flex: 0 0 auto;
        padding: 2px 4px;
        background: rgba(7, 92, 246, .09);
        color: var(--primary);
        font-size: 8px;
        font-weight: 800;
    }

    .mobile-nav__contact {
        display: grid;
        gap: 5px;
        margin: 22px 20px 26px;
        padding: 20px;
        background: var(--navy);
        color: rgba(255, 255, 255, .68);
    }

    .mobile-nav__contact span {
        font-size: 11px;
    }

    .mobile-nav__contact strong {
        color: #fff;
        font-family: var(--font-display);
        font-size: 17px;
        line-height: 1.35;
    }

    .mobile-nav .mobile-nav__contact .btn {
        min-height: 46px;
        margin-top: 12px;
        border: 0;
        color: #fff;
    }

    .mobile-nav .mobile-nav__contact .btn::after {
        display: none;
    }

    .footer-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .brand-image {
        padding: 0;
    }

    .mobile-menu-category__links {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 38px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-column {
        padding-top: 26px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-column h3 {
        margin-top: 0;
    }

    .footer-bottom {
        gap: 14px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 10px 18px;
    }
}

.mobile-accordion.is-open .mobile-accordion__trigger .mobile-accordion__label { transform: none; }

/* =========================================================
   LEGAL PAGES, COOKIE CONTROL AND PRIVACY UI
   ========================================================= */
.legal-page {
    background: #f5f7fb;
    color: #142033;
}

.legal-hero {
    padding: 86px 0 54px;
    background: linear-gradient(135deg, #08152a 0%, #102a4d 100%);
    color: #fff;
}

.legal-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.legal-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #79b8ff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.legal-hero h1 {
    max-width: 820px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.04;
}

.legal-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    line-height: 1.75;
}

.legal-updated {
    min-width: 165px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
}

.legal-updated span,
.legal-updated strong {
    display: block;
}

.legal-updated span {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 42px;
    padding-top: 54px;
    padding-bottom: 80px;
}

.legal-nav {
    position: sticky;
    top: 104px;
    align-self: start;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid #dfe5ee;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 34, 61, .06);
}

.legal-nav > strong {
    padding: 7px 10px 13px;
    color: #0b162b;
    font-size: .78rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.legal-nav a,
.legal-cookie-button {
    width: 100%;
    padding: 11px 10px;
    border: 0;
    background: transparent;
    color: #4b5a70;
    font: inherit;
    font-size: .9rem;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.legal-nav a:hover,
.legal-nav a.is-active,
.legal-cookie-button:hover {
    background: #edf4ff;
    color: #0b5bd3;
}

.legal-content {
    min-width: 0;
    padding: 42px clamp(24px, 5vw, 62px);
    border: 1px solid #dfe5ee;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 34, 61, .06);
}

.legal-content section + section {
    margin-top: 38px;
    padding-top: 38px;
    border-top: 1px solid #e7ebf1;
}

.legal-content h2 {
    margin: 0 0 15px;
    color: #0b162b;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.35;
}

.legal-content p,
.legal-content li,
.legal-content dd {
    color: #4d5b6f;
    font-size: .98rem;
    line-height: 1.85;
}

.legal-content p {
    margin: 0 0 14px;
}

.legal-content ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 22px;
}

.legal-content a {
    color: #075ecf;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-callout {
    padding: 24px !important;
    border: 1px solid #cfe0fa !important;
    background: #f1f7ff;
}

.legal-callout > strong {
    display: block;
    margin-bottom: 7px;
    color: #075ecf;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-callout > p {
    margin-bottom: 12px;
    color: #0b162b;
    font-size: 1.15rem;
    font-weight: 700;
}

.legal-callout dl,
.legal-contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.legal-callout dl div,
.legal-contact-list div {
    display: grid;
    grid-template-columns: minmax(120px, .35fr) 1fr;
    gap: 16px;
}

.legal-callout dt,
.legal-contact-list dt {
    color: #627188;
    font-size: .86rem;
    font-weight: 700;
}

.legal-callout dd,
.legal-contact-list dd {
    margin: 0;
}

.legal-table-wrap {
    overflow-x: auto;
    border: 1px solid #dfe5ee;
}

.legal-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 15px 16px;
    border-bottom: 1px solid #e7ebf1;
    color: #4d5b6f;
    font-size: .9rem;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: #f4f7fb;
    color: #1a293d;
    font-weight: 750;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

.form-privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 15px;
    border: 1px solid #dce5f1;
    background: #f7faff;
}

.form-privacy-notice svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #0b67d8;
}

.form-privacy-notice p {
    margin: 0;
    color: #55657b;
    font-size: .82rem;
    line-height: 1.6;
}

.form-privacy-notice a {
    color: #075ecf;
    font-weight: 700;
}

.cookie-consent {
    position: fixed;
    z-index: 10050;
    right: 22px;
    bottom: 22px;
    left: auto;
    display: grid;
    width: min(580px, calc(100vw - 44px));
    max-height: calc(100vh - 44px);
    overflow: auto;
    gap: 17px;
    padding: 24px;
    border: 1px solid #dce4ef;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 24px 80px rgba(7, 24, 49, .26);
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent__body {
    display: block;
}

.cookie-consent__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #0b67d8;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cookie-consent__body strong {
    display: block;
    margin-bottom: 8px;
    color: #0b162b;
    font-size: 1.25rem;
}

.cookie-consent__body p {
    margin: 0;
    color: #526177;
    font-size: .9rem;
    line-height: 1.65;
}

.cookie-consent__body a {
    color: #075ecf;
    font-weight: 700;
}

.cookie-consent__actions,
.cookie-consent__prefs-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.cookie-consent__prefs-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-consent__button {
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #bfcadc;
    border-radius: 0;
    background: #fff;
    color: #17263b;
    font: inherit;
    font-size: .82rem;
    font-weight: 750;
    line-height: 1.25;
    cursor: pointer;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    border-color: #0b67d8;
    background: #edf5ff;
    color: #075ecf;
}

.cookie-consent__prefs {
    display: grid;
    gap: 9px;
    padding-top: 4px;
}

.cookie-consent__prefs[hidden] {
    display: none !important;
}

.cookie-consent__preference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border: 1px solid #dde5f0;
    background: #f8fafd;
    color: #25354a;
    cursor: pointer;
}

.cookie-consent__preference > span:first-child,
.cookie-consent__preference > div {
    display: grid;
    gap: 3px;
}

.cookie-consent__preference strong {
    color: #17263b;
    font-size: .9rem;
}

.cookie-consent__preference small,
.cookie-consent__preference span {
    color: #65748a;
    font-size: .78rem;
    line-height: 1.4;
}

.cookie-consent__preference input {
    width: 20px;
    height: 20px;
    accent-color: #0b67d8;
}

.cookie-consent__always {
    flex: 0 0 auto;
    color: #187b4f !important;
    font-weight: 750;
}

.cookie-consent__status {
    min-height: 18px;
    margin: 0;
    color: #496178;
    font-size: .8rem;
}

.cookie-consent__status.is-error {
    color: #b42318;
}

.cookie-consent--notice {
    width: min(660px, calc(100vw - 44px));
}

.cookie-consent--notice .cookie-consent__status {
    min-height: 0;
}

.footer-grid.footer-grid--legal {
    grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(145px, .72fr));
    gap: clamp(24px, 3vw, 52px);
}

.footer-legal-identity {
    display: grid;
    gap: 5px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-legal-identity strong {
    color: #fff;
    font-size: .82rem;
}

.footer-legal-identity span {
    color: rgba(255, 255, 255, .58);
    font-size: .75rem;
    line-height: 1.45;
}

.footer-cookie-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.footer-cookie-link:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .footer-grid.footer-grid--legal {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .footer-grid.footer-grid--legal .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .legal-hero {
        padding: 64px 0 42px;
    }
    .legal-hero__inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 28px;
        padding-bottom: 54px;
    }
    .legal-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .legal-nav > strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .legal-hero h1 {
        font-size: 2.35rem;
    }
    .legal-content {
        padding: 27px 20px;
    }
    .legal-content section + section {
        margin-top: 28px;
        padding-top: 28px;
    }
    .legal-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        white-space: nowrap;
    }
    .legal-nav > strong {
        display: none;
    }
    .legal-nav a,
    .legal-cookie-button {
        flex: 0 0 auto;
        width: auto;
    }
    .legal-callout dl div,
    .legal-contact-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .cookie-consent {
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        padding: 19px;
    }
    .cookie-consent__actions {
        grid-template-columns: 1fr;
    }
    .footer-grid.footer-grid--legal {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid.footer-grid--legal .footer-brand,
    .footer-grid.footer-grid--legal .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 440px) {
    .footer-grid.footer-grid--legal {
        grid-template-columns: 1fr;
    }
    .footer-grid.footer-grid--legal .footer-brand,
    .footer-grid.footer-grid--legal .footer-contact {
        grid-column: auto;
    }
    .cookie-consent__prefs-actions {
        grid-template-columns: 1fr;
    }
}


/* WhatsApp erişimi ve sağlamlaştırılmış çerez bildirimi */
.cookie-consent__actions[hidden] {
    display: none !important;
}

.cookie-consent__button:disabled {
    opacity: .58;
    cursor: wait;
}

.cookie-consent__button--accept {
    border-color: #075ecf;
    background: #075ecf;
    color: #fff;
}

.cookie-consent__button--accept:hover,
.cookie-consent__button--accept:focus-visible {
    border-color: #064fae;
    background: #064fae;
    color: #fff;
}

.cookie-consent__button--manage,
.cookie-consent__button--back {
    background: #f7f9fc;
}

.cookie-consent__prefs-actions {
    grid-template-columns: minmax(80px, .7fr) minmax(130px, 1fr) minmax(160px, 1.3fr);
}

.floating-whatsapp {
    position: fixed;
    z-index: 1200;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 7px 16px 7px 7px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: #0f9f5b;
    color: #fff;
    box-shadow: 0 14px 36px rgba(8, 92, 52, .3);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-3px);
    background: #0c8c50;
    color: #fff;
    box-shadow: 0 18px 42px rgba(8, 92, 52, .38);
}

.floating-whatsapp__icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
}

.floating-whatsapp__icon svg {
    width: 27px;
    height: 27px;
}

.floating-whatsapp__copy {
    display: grid;
    gap: 1px;
    line-height: 1.15;
}

.floating-whatsapp__copy strong {
    color: #fff;
    font-size: .86rem;
    font-weight: 800;
}

.floating-whatsapp__copy small {
    color: rgba(255, 255, 255, .84);
    font-size: .72rem;
    font-weight: 600;
}

.cookie-consent:not([hidden]) ~ .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

.wj-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-color: #15945a;
    background: #15945a;
    color: #fff;
}

.wj-whatsapp-inline:hover,
.wj-whatsapp-inline:focus-visible {
    border-color: #0f7e4b;
    background: #0f7e4b;
    color: #fff;
}

.wj-whatsapp-inline svg {
    width: 19px;
    height: 19px;
}

.wj-about-cta__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.wj-about-cta__whatsapp {
    border-color: #fff;
    background: #fff;
    color: #0b7345;
}

.wj-about-cta__whatsapp:hover,
.wj-about-cta__whatsapp:focus-visible {
    border-color: #e8fff3;
    background: #e8fff3;
    color: #075b36;
}

@media (max-width: 700px) {
    .floating-whatsapp {
        left: 12px;
        bottom: 12px;
        min-height: 54px;
        padding: 5px;
    }

    .floating-whatsapp__icon {
        flex-basis: 44px;
    }

    .floating-whatsapp__copy {
        display: none;
    }

    .cookie-consent__prefs-actions {
        grid-template-columns: 1fr;
    }

    .wj-whatsapp-inline {
        width: 100%;
        justify-content: center;
    }

    .wj-about-cta__actions {
        width: 100%;
        justify-content: stretch;
    }

    .wj-about-cta__actions .btn {
        flex: 1 1 180px;
        justify-content: center;
    }
}


/* Full viewport Swiper hero - separate desktop/mobile media */
.hero[data-hero-loop] {
  width: 100%;
  height: var(--hero-height, calc(100svh - var(--header-height)));
  min-height: 0;
  max-height: none;
  overflow: clip;
  isolation: isolate;
}

.hero[data-hero-loop] .hero-swiper,
.hero[data-hero-loop] .swiper-wrapper,
.hero[data-hero-loop] .swiper-slide,
.hero[data-hero-loop] .hero-slide > picture {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.hero[data-hero-loop] .hero-slide > picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero[data-hero-loop] .hero-slide__image {
  display: block;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero[data-hero-loop] .swiper-wrapper {
  box-sizing: border-box;
}

.hero[data-hero-loop] .swiper-slide {
  flex-shrink: 0;
  max-width: 100%;
}

@media (max-width: 960px) {
  .hero[data-hero-loop] .hero-grid {
    min-height: 0;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .hero[data-hero-loop] .hero-grid {
    padding-top: clamp(22px, 5vh, 38px);
    padding-bottom: clamp(66px, 10vh, 84px);
  }

  .hero[data-hero-loop] .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero[data-hero-loop] .hero-slide__image {
    object-position: center center;
  }

  .hero[data-hero-loop] .hero-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero[data-hero-loop] .hero-grid {
    padding-top: 18px;
    padding-bottom: 58px;
  }

  .hero[data-hero-loop] .hero-eyebrow {
    margin-bottom: 10px;
  }

  .hero[data-hero-loop] .hero-title {
    margin-bottom: 12px;
    font-size: clamp(29px, 8.7vw, 40px);
  }

  .hero[data-hero-loop] .hero-description {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero[data-hero-loop] .hero-actions .btn {
    min-height: 44px;
  }

  .hero[data-hero-loop] .hero-controls {
    bottom: 14px;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  .hero[data-hero-loop] .hero-grid {
    padding-top: 12px;
    padding-bottom: 48px;
  }

  .hero[data-hero-loop] .hero-eyebrow,
  .hero[data-hero-loop] .hero-description,
  .hero[data-hero-loop] .hero-proof {
    display: none;
  }

  .hero[data-hero-loop] .hero-title {
    margin-bottom: 14px;
    font-size: clamp(30px, 7vw, 54px);
  }
}


/* Harici AOS kutuphanesi yerine hafif gorunurluk animasyonu. */
html.js [data-aos] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 520ms ease-out var(--reveal-delay, 0ms),
        transform 520ms ease-out var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
html.js [data-aos="fade-left"] { transform: translate3d(18px, 0, 0); }
html.js [data-aos="fade-right"] { transform: translate3d(-18px, 0, 0); }
html.js [data-aos].is-revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
    html.js [data-aos] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* 2026-08: Sade hizmet kartları, mega menü ve blog detay düzeni */
.service-image {
    height: auto;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    padding: 10px;
    background: #f4f7fb;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none !important;
}
.service-image::after { display: none; }
.service-card { min-height: 390px; }

.mega-menu--simple .mega-menu__shell {
    width: min(1040px, calc(100vw - 32px));
    max-height: min(620px, calc(100svh - var(--header-height) - 24px));
    overflow: auto;
}
.mega-menu__simple-head {
    min-height: 58px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}
.mega-menu__simple-head strong { font-size: 16px; color: var(--navy); }
.mega-menu__simple-head a { color: var(--primary); font-size: 13px; font-weight: 750; }
.mega-menu__simple-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px 20px 20px;
}
.mega-menu__simple-category {
    min-width: 0;
    padding: 18px 20px 8px;
    border-left: 1px solid var(--border);
}
.mega-menu__simple-category:nth-child(3n + 1) { border-left: 0; }
.mega-menu__simple-title { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.mega-menu__simple-title > span {
    width: 32px; height: 32px; display: grid; place-items: center;
    background: #edf4ff; color: var(--primary);
}
.mega-menu__simple-title svg { width: 18px; height: 18px; }
.mega-menu__simple-title h2 { margin: 0; font-size: 14px; line-height: 1.3; }
.mega-menu__simple-links { display: grid; }
.mega-menu__simple-links a {
    min-height: 38px; padding: 7px 8px; display: flex; align-items: center;
    justify-content: space-between; gap: 10px; color: #334155 !important;
    font-size: 13px !important; font-weight: 650 !important; border-left: 2px solid transparent;
}
.mega-menu__simple-links a:hover,
.mega-menu__simple-links a:focus-visible { color: var(--primary) !important; background: #f5f8fc; border-left-color: var(--primary); }
.mega-menu__simple-links svg { width: 14px; height: 14px; flex: 0 0 auto; }
.mobile-menu-category__heading { display: flex; align-items: center; gap: 9px; }
.mobile-menu-category__icon { width: 28px; height: 28px; display: grid; place-items: center; background: #edf4ff; color: var(--primary); }
.mobile-menu-category__icon svg { width: 16px; height: 16px; }

.blog-detail-page .article-head--clean { padding: 32px 0 20px; background: #fff; border-bottom: 0; }
.blog-detail-page .article-head__inner { max-width: 1040px; }
.blog-detail-page .article-intro { max-width: 880px; padding: 34px 0 12px; }
.blog-detail-page .article-intro h1 {
    max-width: 860px; margin: 12px 0 16px; color: var(--navy);
    font-size: clamp(34px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -.045em;
}
.blog-detail-page .article-summary { max-width: 760px; margin: 0 0 18px; color: #526079; font-size: 18px; line-height: 1.65; }
.blog-detail-page .article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #667085; font-size: 13px; }
.blog-detail-page .article-meta > * { display: inline-flex; align-items: center; gap: 6px; }
.blog-detail-page .article-cover--clean {
    max-width: 1120px; margin-top: 0; margin-bottom: 44px; padding: 0;
    overflow: hidden; background: #f3f6fa; border: 1px solid #e4e9f0;
}
.blog-detail-page .article-cover--clean img {
    width: 100%; aspect-ratio: 16 / 9; max-height: 630px;
    object-fit: contain; object-position: center; background: #f3f6fa;
}
.blog-detail-page .article-layout { align-items: start; }
.blog-detail-page .article-main { min-width: 0; }
.blog-detail-page .article-content {
    max-width: 760px; margin-inline: auto; font-size: 17px; line-height: 1.85;
}
.blog-detail-page .article-content p { margin: 0 0 1.35em; }
.blog-detail-page .article-content h2 { margin: 2.2em 0 .7em; font-size: 30px; line-height: 1.25; }
.blog-detail-page .article-content h3 { margin: 1.8em 0 .6em; font-size: 23px; line-height: 1.3; }
.blog-detail-page .article-content img { width: 100%; height: auto; margin: 28px 0; object-fit: contain; }
.blog-detail-page .article-content ul,
.blog-detail-page .article-content ol { margin: 0 0 1.5em; padding-left: 1.35em; }

@media (max-width: 960px) {
    .mega-menu__simple-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mega-menu__simple-category:nth-child(3n + 1) { border-left: 1px solid var(--border); }
    .mega-menu__simple-category:nth-child(2n + 1) { border-left: 0; }
}
@media (max-width: 767px) {
    .service-image { aspect-ratio: 16 / 9; padding: 8px; }
    .service-card { min-height: 0; }
    .blog-detail-page .article-head--clean { padding: 18px 0 10px; }
    .blog-detail-page .article-intro { padding: 24px 0 8px; }
    .blog-detail-page .article-intro h1 { font-size: clamp(30px, 9vw, 42px); }
    .blog-detail-page .article-summary { font-size: 16px; }
    .blog-detail-page .article-cover--clean { width: calc(100% - 32px); margin: 0 auto 30px; }
    .blog-detail-page .article-cover--clean img { max-height: none; }
    .blog-detail-page .article-content { font-size: 16px; line-height: 1.78; }
    .blog-detail-page .article-content h2 { font-size: 25px; }
    .blog-detail-page .article-content h3 { font-size: 21px; }
}

.work-principles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.work-principle-card { min-height: 100%; }
.work-principle-card h3 { margin: 18px 0 10px; font-size: 22px; }
.work-principle-card p { margin: 0; color: var(--muted); }
@media (max-width: 900px) { .work-principles-grid { grid-template-columns: 1fr; } }


/* 2026-08 sade hizmet menüsü ve belirgin aktif durumlar */
.mega-menu--simple .mega-menu__shell {
  width: min(980px, calc(100vw - 32px));
  border-radius: 8px;
}
.mega-menu__simple-head {
  min-height: 50px;
  padding: 10px 16px;
}
.mega-menu__simple-head strong { font-size: 14px; }
.mega-menu__simple-grid { padding: 6px 12px 14px; }
.mega-menu__simple-category { padding: 14px 16px 8px; }
.mega-menu__simple-title > span {
  width: 28px;
  height: 28px;
  border-radius: 5px;
}
.mega-menu__simple-title h2 { font-size: 13px; }
.mega-menu__simple-links a {
  min-height: 36px;
  padding: 6px 8px;
  border-radius: 4px;
  border-left: 0;
  outline: 1px solid transparent;
}
.mega-menu__simple-links a:hover,
.mega-menu__simple-links a:focus-visible {
  background: #edf4ff;
  outline-color: #cfe0ff;
}
.mega-menu__simple-links a.is-active,
.mega-menu__simple-links a[aria-current="page"] {
  background: #e7f0ff;
  color: var(--primary) !important;
  font-weight: 800 !important;
  outline-color: #bdd3ff;
}
.mega-menu__simple-links a.is-active svg,
.mega-menu__simple-links a[aria-current="page"] svg { color: var(--primary); }

@media (max-width: 960px) {
  .mobile-accordion.is-current > .mobile-accordion__trigger,
  .mobile-accordion.is-open > .mobile-accordion__trigger {
    color: var(--primary);
  }
  .mobile-accordion__panel {
    padding: 8px 10px 14px;
    background: #f6f8fb;
  }
  .mobile-services-all {
    min-height: 42px !important;
    margin: 0 0 7px;
    border-radius: 5px;
  }
  .mobile-services-all.is-active,
  .mobile-services-all[aria-current="page"] {
    border-color: #bdd3ff !important;
    background: #e7f0ff !important;
  }
  .mobile-service-category {
    border-top: 1px solid #e2e8f0;
  }
  .mobile-service-category__trigger {
    width: 100%;
    min-height: 48px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 9px;
    padding: 7px 4px;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
  }
  .mobile-service-category__trigger strong {
    min-width: 0;
    font-size: 13px;
  }
  .mobile-service-category__trigger > svg {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
  }
  .mobile-service-category.is-open .mobile-service-category__trigger > svg { transform: rotate(180deg); }
  .mobile-service-category.is-current .mobile-service-category__trigger {
    color: var(--primary);
  }
  .mobile-service-category__panel {
    display: grid;
    gap: 3px;
    padding: 0 0 9px 37px;
  }
  .mobile-service-category__panel[hidden] { display: none; }
  .mobile-nav .mobile-service-category__panel a {
    min-height: 37px;
    display: flex;
    align-items: center;
    padding: 6px 9px;
    border: 0;
    border-radius: 4px;
    color: #344054;
    font-size: 12px;
    font-weight: 650;
  }
  .mobile-nav .mobile-service-category__panel a::after { display: none; }
  .mobile-nav .mobile-service-category__panel a:hover,
  .mobile-nav .mobile-service-category__panel a:focus-visible {
    background: #edf4ff;
    color: var(--primary);
  }
  .mobile-nav .mobile-service-category__panel a.is-active,
  .mobile-nav .mobile-service-category__panel a[aria-current="page"] {
    background: #e7f0ff;
    color: var(--primary);
    font-weight: 800;
  }
}

/* Hizmet mega menüsü: belirgin hover ve seçili bağlantı */
.mega-menu__simple-links a:hover,
.mega-menu__simple-links a:focus-visible {
  background: rgba(11, 22, 43, .075) !important;
  color: #0b162b !important;
  outline-color: rgba(11, 22, 43, .14) !important;
}
.mega-menu__simple-links a.is-active,
.mega-menu__simple-links a[aria-current="page"] {
  background: rgba(11, 22, 43, .11) !important;
  color: #0b162b !important;
  box-shadow: inset 3px 0 0 #246bfe;
  outline-color: rgba(11, 22, 43, .18) !important;
}
@media (max-width: 960px) {
  .mobile-accordion__panel a:hover,
  .mobile-accordion__panel a:focus-visible,
  .mobile-accordion__panel a.is-active,
  .mobile-accordion__panel a[aria-current="page"] {
    background: rgba(11, 22, 43, .075) !important;
    color: #0b162b !important;
  }
  .mobile-accordion__panel a.is-active,
  .mobile-accordion__panel a[aria-current="page"] {
    box-shadow: inset 3px 0 0 #246bfe;
  }
}


/* Hizmet paketleri: tek paket merkezleme ve çoklu paket Swiper */
.service-template-page .pricing-grid--single {
  grid-template-columns: minmax(0, 440px);
  justify-content: center;
}

.service-template-page .pricing-grid--single .pricing-card {
  width: 100%;
}

.service-template-page .package-carousel-shell {
  position: relative;
  padding: 4px 54px 0;
}

.service-template-page .package-carousel {
  overflow: hidden;
  padding: 8px 4px 30px;
}

.service-template-page .package-carousel .swiper-wrapper {
  align-items: stretch;
}

.service-template-page .package-carousel .swiper-slide {
  display: flex;
  height: auto;
}

.service-template-page .package-carousel .pricing-card {
  width: 100%;
  min-height: 100%;
}

.service-template-page .package-carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: -36px;
  border: 1px solid #cfd8e6;
  border-radius: 50%;
  background: #fff;
  color: #0b162b;
  box-shadow: 0 10px 28px rgba(11, 22, 43, .12);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-template-page .package-carousel-arrow:hover,
.service-template-page .package-carousel-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: #246bfe;
  background: #edf4ff;
  color: #075ecf;
}

.service-template-page .package-carousel-arrow--prev { left: 0; }
.service-template-page .package-carousel-arrow--next { right: 0; }
.service-template-page .package-carousel-arrow.swiper-button-disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}
.service-template-page .package-carousel-shell.is-locked .package-carousel-arrow { display: none; }

.service-template-page .package-carousel-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.service-template-page .package-carousel-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #9aa8bb;
  opacity: .55;
}

.service-template-page .package-carousel-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #246bfe;
  opacity: 1;
}

.service-template-page .service-content-section {
  background: #fff;
}

.service-template-page .service-rich-content {
  width: min(820px, 100%);
  margin: 0 auto;
  color: #35445a;
  font-size: 17px;
  line-height: 1.8;
}

.service-template-page .service-rich-content h2,
.service-template-page .service-rich-content h3,
.service-template-page .service-rich-content h4 {
  margin: 1.7em 0 .55em;
  color: #0b162b;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.service-template-page .service-rich-content h2:first-child,
.service-template-page .service-rich-content h3:first-child {
  margin-top: 0;
}

.service-template-page .service-rich-content p,
.service-template-page .service-rich-content ul,
.service-template-page .service-rich-content ol,
.service-template-page .service-rich-content blockquote {
  margin: 0 0 1.15em;
}

.service-template-page .service-rich-content ul,
.service-template-page .service-rich-content ol {
  padding-left: 1.35em;
}

.service-template-page .service-rich-content a {
  color: #075ecf;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-template-page .service-rich-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
}

.service-template-page .service-rich-content blockquote {
  padding: 16px 20px;
  border-left: 4px solid #246bfe;
  background: #f5f8fc;
  color: #41516a;
}

@media (max-width: 700px) {
  .service-template-page .pricing-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
  .service-template-page .package-carousel-shell {
    margin-right: calc(var(--container-pad, 20px) * -1);
    padding: 0 0 0 2px;
  }
  .service-template-page .package-carousel {
    padding-right: 18px;
    padding-bottom: 25px;
  }
  .service-template-page .package-carousel-arrow {
    display: none;
  }
  .service-template-page .service-rich-content {
    font-size: 15px;
    line-height: 1.72;
  }
}

/* Masaüstü çerez bildirimi: sade iki sütunlu kurumsal yerleşim */
@media (min-width: 701px) {
  .cookie-consent {
    right: auto;
    bottom: 24px;
    left: 50%;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    align-items: center;
    width: min(1040px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    gap: 18px 28px;
    padding: 22px 24px;
    transform: translateX(-50%);
    border-color: #d5deea;
    box-shadow: 0 22px 70px rgba(7, 24, 49, .22);
  }

  .cookie-consent--notice {
    grid-template-columns: 1fr;
    width: min(760px, calc(100vw - 48px));
  }

  .cookie-consent__body strong {
    margin-bottom: 6px;
    font-size: 1.18rem;
  }

  .cookie-consent__body p {
    max-width: 690px;
    font-size: .88rem;
    line-height: 1.58;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .cookie-consent__actions .cookie-consent__button {
    width: 100%;
    min-height: 40px;
  }

  .cookie-consent__prefs {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    padding-top: 2px;
  }

  .cookie-consent__preference {
    min-height: 76px;
    padding: 12px 14px;
  }

  .cookie-consent__prefs-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }

  .cookie-consent__prefs-actions .cookie-consent__button {
    width: auto;
    min-width: 150px;
  }

  .cookie-consent__status {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

/* Ürünler mega menüsü: tek kategori kabı yerine kompakt ürün bağlantı ızgarası. */
.mega-menu__products-grid { grid-template-columns: 1fr; }
.mega-menu__products-grid .mega-menu__simple-category { padding: 12px 14px; border-left: 0; }
.mega-menu__products-grid .mega-menu__simple-links { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 8px; }
@media (max-width: 960px) {
  .mega-menu__products-grid .mega-menu__simple-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ======================================================================
   WEBSITEJI 2026 CORPORATE REFRESH
   Navbar / mega menu / mobile menu / about. Düz, sade ve kurumsal.
   ====================================================================== */
:root{
    --header-height:74px;
    --radius-xs:0px;
    --radius-sm:2px;
    --shadow-sm:0 7px 22px rgba(11,22,43,.055);
    --shadow-md:0 18px 45px rgba(11,22,43,.10);
}
.cursor-halo,.cursor-point{display:none!important}
.header{
    height:74px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid #e3e7ec;
    box-shadow:none;
}
.header.is-scrolled{box-shadow:0 7px 20px rgba(11,22,43,.045)}
.nav--corporate{position:relative;gap:24px}
.brand-image{width:170px;max-width:min(42vw,170px)}
.nav-links{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin:0;
    gap:4px;
}
.nav-links>a,.nav-dropdown__trigger{
    min-height:74px;
    padding:0 14px;
    display:inline-flex;
    align-items:center;
    gap:5px;
    color:#3d4858;
    font-size:13px;
    font-weight:660;
    letter-spacing:-.01em;
}
.nav-links>a::after,.nav-dropdown__trigger::after{
    left:14px;right:14px;bottom:0;height:2px;background:#075cf6;transform:scaleX(0);transform-origin:center;
    transition:transform .16s ease;
}
.nav-links>a:hover,.nav-links>a[aria-current="page"],.nav-dropdown__trigger:hover,.nav-dropdown.is-current .nav-dropdown__trigger,.nav-dropdown.is-open .nav-dropdown__trigger{
    color:#0b162b;background:#f7f8fa
}
.nav-links>a:hover::after,.nav-links>a[aria-current="page"]::after,.nav-dropdown__trigger:hover::after,.nav-dropdown.is-current .nav-dropdown__trigger::after,.nav-dropdown.is-open .nav-dropdown__trigger::after{
    right:14px;transform:scaleX(1)
}
.nav-dropdown__chevron{width:13px;height:13px;color:#7b8796}
.nav-actions{margin-left:auto;display:flex;align-items:center}
.nav-contact{
    min-height:38px;padding:0 13px;display:inline-flex;align-items:center;gap:8px;
    border:1px solid #bfc7d1;background:#fff;color:#0b162b;font-size:12px;font-weight:780
}
.nav-contact:hover,.nav-contact[aria-current="page"]{border-color:#0b162b;background:#0b162b;color:#fff}
.nav-contact span{font-size:15px}
.menu-toggle{border-radius:0}

.mega-menu{
    top:74px;width:min(calc(100vw - 40px),1120px);transform:translateX(-50%) translateY(7px)
}
.nav-dropdown.is-open .mega-menu{transform:translateX(-50%) translateY(0)}
.mega-menu__shell{
    max-height:min(620px,calc(100svh - 98px));overflow:auto;
    border:1px solid #dbe1e7;border-radius:0;background:#fff;
    box-shadow:0 22px 55px rgba(11,22,43,.12)
}
.mega-menu__products-head{
    min-height:72px;padding:16px 22px;display:flex;align-items:center;justify-content:space-between;gap:24px;
    border-bottom:1px solid #e4e7ec;background:#fff
}
.mega-menu__products-head>div{display:grid;gap:2px}
.mega-menu__products-head>div>span{
    color:#7e8896;font-size:9px;font-weight:850;letter-spacing:.10em;text-transform:uppercase
}
.mega-menu__products-head>div>strong{color:#0b162b;font-size:15px;letter-spacing:-.015em}
.mega-menu__products-head>a{
    display:inline-flex;align-items:center;gap:8px;color:#075cf6;font-size:11px;font-weight:800
}
.mega-menu__products-body{
    display:grid;grid-template-columns:repeat(3,minmax(0,1fr));padding:8px 22px 18px
}
.mega-product-group{
    min-width:0;padding:17px 22px 8px 0;border-right:1px solid #e8ebef
}
.mega-product-group:nth-child(3n+2),.mega-product-group:nth-child(3n+3){padding-left:22px}
.mega-product-group:nth-child(3n){border-right:0}
.mega-product-group h2{
    margin:0 0 7px;color:#5e6978;font-size:10px;font-weight:850;letter-spacing:.05em;text-transform:uppercase
}
.mega-product-group__links{display:grid}
.mega-product-group__links>a{
    min-width:0;padding:9px 8px;display:flex;align-items:center;justify-content:space-between;gap:12px;
    border-top:1px solid transparent;border-bottom:1px solid transparent;color:#334155
}
.mega-product-group__links>a:hover,.mega-product-group__links>a:focus-visible,.mega-product-group__links>a.is-active{
    background:#f6f8fa;color:#0b162b;border-color:#eef1f4
}
.mega-product-group__links>a>span{min-width:0;display:block}
.mega-product-group__links strong{display:block;font-size:11px;font-weight:780;line-height:1.25}
.mega-product-group__links small{
    display:block;margin-top:2px;max-width:260px;color:#8a94a3;font-size:8px;line-height:1.35;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.mega-product-group__links b{color:#9aa3ae;font-size:12px;font-weight:600}
.mega-product-group__links>a:hover b{color:#075cf6;transform:translateX(2px)}

.about-clean{background:#fff;color:#172033}
.about-clean__hero{padding:70px 0 66px;border-bottom:1px solid #e4e7ec}
.about-clean__hero-grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);gap:68px;align-items:center}
.about-clean__hero-copy{max-width:620px}
.about-clean__kicker{
    display:flex;align-items:center;gap:9px;margin-bottom:13px;color:#687383;font-size:10px;font-weight:850;letter-spacing:.09em;text-transform:uppercase
}
.about-clean__kicker::before{content:"";width:25px;height:2px;background:#075cf6}
.about-clean__hero h1{
    margin:0 0 18px;color:#0b162b;font-size:clamp(43px,5vw,66px);line-height:1;letter-spacing:-.045em
}
.about-clean__hero p{max-width:590px;margin:0;color:#596575;font-size:16px;line-height:1.65}
.about-clean__links{display:flex;align-items:center;gap:20px;margin-top:24px}
.about-clean__links a{color:#0b162b;font-size:12px;font-weight:800}
.about-clean__links a:first-child{color:#075cf6}
.about-clean__visual{margin:0;border:1px solid #dfe4ea;background:#eef2f6}
.about-clean__visual img{width:100%;aspect-ratio:4/3;object-fit:cover}
.about-clean__section{padding:74px 0}
.about-clean__section--soft{background:#f6f7f9;border-top:1px solid #e4e7ec;border-bottom:1px solid #e4e7ec}
.about-clean__split{display:grid;grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);gap:80px;align-items:start}
.about-clean__split header{position:sticky;top:102px}
.about-clean__split h2,.about-clean__principles h2{
    margin:0;color:#0b162b;font-size:clamp(30px,3.5vw,46px);line-height:1.08;letter-spacing:-.035em
}
.about-clean__split header>p{margin:14px 0 0;color:#667085;font-size:13px;line-height:1.6}
.about-clean__services{border-top:1px solid #dfe4ea}
.about-clean__services article{
    display:grid;grid-template-columns:48px minmax(0,1fr);gap:12px;padding:18px 0;border-bottom:1px solid #dfe4ea
}
.about-clean__services article>span{color:#9aa3ae;font-size:10px;font-weight:800}
.about-clean__services h3,.about-clean__process h3,.about-clean__principle-grid h3{margin:0 0 4px;color:#0b162b;font-size:14px}
.about-clean__services p,.about-clean__process p,.about-clean__principle-grid p{margin:0;color:#667085;font-size:12px;line-height:1.55}
.about-clean__process{margin:0;padding:0;list-style:none;border-top:1px solid #dfe4ea}
.about-clean__process li{display:grid;grid-template-columns:48px minmax(0,1fr);gap:12px;padding:18px 0;border-bottom:1px solid #dfe4ea}
.about-clean__process b{color:#075cf6;font-size:10px}
.about-clean__principles{display:grid;grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);gap:80px}
.about-clean__principle-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px solid #dfe4ea}
.about-clean__principle-grid article{padding:18px 20px 0 0;border-right:1px solid #dfe4ea}
.about-clean__principle-grid article:not(:first-child){padding-left:20px}
.about-clean__principle-grid article:last-child{border-right:0}
.about-clean__contact{padding:0 0 70px}
.about-clean__contact-inner{
    padding:27px 30px;display:flex;align-items:center;justify-content:space-between;gap:30px;background:#0b162b;color:#fff
}
.about-clean__contact-inner>div>span{display:block;margin-bottom:4px;color:#aebbd0;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.09em}
.about-clean__contact-inner h2{margin:0;color:#fff;font-size:clamp(24px,3vw,36px);letter-spacing:-.03em}
.about-clean__contact-inner>a{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:12px;font-weight:800}
.about-clean__contact-inner>a:hover{color:#75a8ff}

@media(max-width:1080px){
    .nav-links{gap:0}.nav-links>a,.nav-dropdown__trigger{padding-inline:10px}
    .mega-menu__products-body{grid-template-columns:repeat(2,minmax(0,1fr))}
    .mega-product-group:nth-child(n){padding-left:0;padding-right:20px;border-right:1px solid #e8ebef}
    .mega-product-group:nth-child(even){padding-left:20px;border-right:0}
}
@media(max-width:960px){
    .nav-links,.nav-actions{display:none}
    .menu-toggle{display:grid;margin-left:auto}
    .mobile-nav{
        display:block;position:fixed;z-index:1200;top:0;right:0;width:min(420px,92vw);height:100dvh;
        padding:0;background:#fff;border-left:1px solid #dfe4ea;transform:translateX(102%);transition:transform .2s ease
    }
    .mobile-nav.is-open{transform:none}
    .mobile-nav__header{
        min-height:68px;padding:0 18px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #e4e7ec
    }
    .mobile-nav__brand{color:#0b162b;font-size:15px;font-weight:850}
    .mobile-nav__close{width:38px;height:38px;display:grid;place-items:center;border:0;background:#fff;color:#0b162b}
    .mobile-nav__close svg{width:20px;height:20px}
    .mobile-nav__list{padding:12px 18px 0}
    .mobile-nav .mobile-nav__direct-link,.mobile-nav .mobile-accordion__trigger{
        width:100%;min-height:48px;padding:0;border:0;border-bottom:1px solid #eef1f4;background:#fff;
        display:flex;align-items:center;justify-content:space-between;color:#283445;font-size:14px;font-weight:720;text-align:left
    }
    .mobile-accordion__panel{padding:0 0 8px}
    .mobile-products-all{display:block;padding:12px 0;color:#075cf6;font-size:11px;font-weight:800;border-bottom:1px solid #eef1f4}
    .mobile-product-group{padding:13px 0 5px;border-bottom:1px solid #eef1f4}
    .mobile-product-group>strong{display:block;margin-bottom:5px;color:#8a94a3;font-size:9px;text-transform:uppercase;letter-spacing:.07em}
    .mobile-product-group>div{display:grid}
    .mobile-product-group a{padding:8px 0;color:#4b5666;font-size:12px}
    .mobile-product-group a:hover,.mobile-product-group a.is-active{color:#075cf6}
    .mobile-nav__contact{margin-top:14px;padding:18px;border-top:1px solid #e4e7ec;background:#f7f8fa}
    .mobile-nav__contact>span{display:block;color:#8a94a3;font-size:9px;font-weight:800;text-transform:uppercase}
    .mobile-nav__contact>strong{display:block;margin-top:5px;color:#344054;font-size:11px;line-height:1.45}
    .mobile-nav__contact-link{display:inline-flex;gap:7px;margin-top:11px;color:#075cf6;font-size:11px;font-weight:800}
    .menu-backdrop{display:block;position:fixed;inset:0;z-index:1190;background:rgba(11,22,43,.28);opacity:0;visibility:hidden;transition:.2s}
    .menu-backdrop.is-open{opacity:1;visibility:visible}
    .about-clean__hero-grid,.about-clean__split,.about-clean__principles{grid-template-columns:1fr;gap:34px}
    .about-clean__split header{position:static}
    .about-clean__principle-grid{grid-template-columns:1fr}
    .about-clean__principle-grid article{padding:16px 0;border-right:0;border-bottom:1px solid #dfe4ea}
    .about-clean__principle-grid article:not(:first-child){padding-left:0}
}
@media(max-width:640px){
    :root{--header-height:66px}
    .header{height:66px}.brand-image{width:156px}
    .about-clean__hero{padding:48px 0 44px}
    .about-clean__hero h1{font-size:41px}
    .about-clean__hero p{font-size:14px}
    .about-clean__section{padding:54px 0}
    .about-clean__visual img{aspect-ratio:16/11}
    .about-clean__contact{padding-bottom:46px}
    .about-clean__contact-inner{padding:22px 20px;display:grid}
}

/* Public motion/spacing normalization */
.btn:hover{transform:none}
.section{padding:84px 0}
@media(max-width:640px){.section{padding:60px 0}}

/* Hakkımızda - Websiteji-Hakkimizda-Yenilendi referans tasarımı */
.about-simple{position:relative;padding:44px 0 0;background:linear-gradient(135deg,#fff 0,#fff 72%,#f4f7fc 100%)}
.about-simple::before{content:"";position:absolute;top:0;right:8%;width:180px;height:180px;background-image:linear-gradient(#e7edf7 1px,transparent 1px),linear-gradient(90deg,#e7edf7 1px,transparent 1px);background-size:18px 18px;opacity:.5;mask-image:linear-gradient(135deg,#000,transparent 76%);pointer-events:none}
.about-simple__grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(420px,1.04fr) minmax(390px,.96fr);gap:38px;align-items:center}
.about-simple__content{max-width:670px}
.about-simple__kicker{display:flex;align-items:center;gap:10px;margin-bottom:18px;color:#536071;font-size:11px;font-weight:850;letter-spacing:.11em;text-transform:uppercase}
.about-simple__kicker::before{content:"";width:29px;height:2px;background:#075cf6}
.about-simple h1{max-width:600px;margin:0;color:#0b162b;font-size:clamp(36px,3.2vw,44px);line-height:1.08;letter-spacing:-.035em}
.about-simple__copy{max-width:650px;padding-top:17px}
.about-simple__copy p{margin:0 0 12px;color:#566477;font-size:14px;line-height:1.6}
.about-simple__copy p:first-child{color:#213148;font-size:16px;font-weight:700}
.about-simple__copy>a{margin-top:6px;display:inline-flex;align-items:center;gap:10px;color:#075cf6;font-size:12px;font-weight:850}
.about-simple__copy>a:hover{color:#0648bd}
.about-simple__illustration{position:relative;margin:0;min-width:0;color:#214a86}
.about-simple__illustration::before{content:"";position:absolute;inset:14% 7% 8%;border-radius:50%;background:radial-gradient(circle,rgba(7,92,246,.11),rgba(7,92,246,0) 68%);filter:blur(4px)}
.about-simple__illustration svg{position:relative;z-index:1;width:100%;height:auto;display:block}
.about-simple__connectors{color:#4f78b5}.about-simple__nodes{color:#075cf6}.about-simple__dots{opacity:.8}
.about-simple__system{position:relative;z-index:1;margin-top:18px;padding-top:12px;padding-bottom:18px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;border-top:1px solid #e0e6ee}
.about-simple__system-lines{position:absolute;z-index:0;inset:8px 0 auto;width:100%;height:60px;color:#a9bde0;pointer-events:none}
.about-simple__system article{position:relative;z-index:1;min-height:88px;padding:18px 25px;display:flex;align-items:center;gap:16px;border-right:1px solid #dce3ec;background:rgba(255,255,255,.88)}
.about-simple__system article:first-of-type{border-left:1px solid #dce3ec}
.about-simple__system article>svg{flex:0 0 38px;width:38px;height:38px;padding:8px;border:1px solid #cbd8eb;border-radius:50%;background:#fff;color:#075cf6;box-shadow:0 6px 18px rgba(7,92,246,.08)}
.about-simple__system article>div{display:grid;gap:2px}.about-simple__system article span{color:#075cf6;font-size:9px;font-weight:850}.about-simple__system article strong{color:#0b162b;font-size:14px}.about-simple__system article small{color:#788496;font-size:11px}
.about-simple-contact{position:relative;padding:56px 0 40px;background:linear-gradient(120deg,#071326,#0c2347);color:#fff}
.about-simple-contact__separator{position:absolute;top:-1px;left:0;width:100%;height:34px;display:block}
.about-simple-contact__inner{display:flex;align-items:center;justify-content:space-between;gap:60px}
.about-simple-contact__inner>div:first-child{max-width:720px}
.about-simple-contact__inner>div:first-child>span{display:block;margin-bottom:7px;color:#d7e5ff;font-size:10px;font-weight:850;letter-spacing:.11em;text-transform:uppercase}
.about-simple-contact h2{margin:0;color:#fff;font-size:clamp(27px,3vw,38px);line-height:1.12;letter-spacing:-.035em}
.about-simple-contact p{margin:10px 0 0;color:#dbe7ff;font-size:13px;line-height:1.55}
.about-simple-contact__actions{flex:0 0 218px;display:grid;gap:8px}
.about-simple-contact__actions a{min-height:44px;padding:0 17px;display:flex;align-items:center;justify-content:center;gap:9px;border:1px solid rgba(255,255,255,.52);color:#fff;font-size:12px;font-weight:850;text-align:center}
.about-simple-contact__actions a:hover{border-color:#fff;background:rgba(255,255,255,.1);color:#fff}
.about-simple-contact__actions .about-simple-contact__primary{border-color:#075cf6;background:#075cf6;color:#fff}
.about-simple-contact__actions .about-simple-contact__primary:hover{border-color:#2d77ff;background:#2d77ff;color:#fff}

@media(max-width:900px){
    .about-simple__grid{grid-template-columns:1fr;gap:22px}
    .about-simple__content{max-width:760px}
    .about-simple__copy{max-width:760px;padding-top:16px}
    .about-simple__illustration{width:min(650px,100%);margin:0 auto}
    .about-simple__system article{padding-inline:18px}
    .about-simple-contact__inner{align-items:flex-start}
}
@media(max-width:640px){
    .about-simple{padding:34px 0 0}
    .about-simple h1{font-size:34px}
    .about-simple__copy p{font-size:14px}
    .about-simple__copy p:first-child{font-size:16px}
    .about-simple__illustration{margin-top:-4px}
    .about-simple__illustration svg{max-height:270px}
    .about-simple__system{margin-top:24px;padding-top:0;padding-bottom:12px;grid-template-columns:1fr;border-top:0}
    .about-simple__system-lines{display:none}
    .about-simple__system article{min-height:72px;padding:13px 15px;border-right:1px solid #dce3ec;border-bottom:1px solid #dce3ec}
    .about-simple__system article:first-of-type{border-top:1px solid #dce3ec}
    .about-simple__system article>svg{flex-basis:34px;width:34px;height:34px}
    .about-simple-contact{padding:49px 0 32px}
    .about-simple-contact__separator{height:27px}
    .about-simple-contact__inner{display:grid;gap:24px}
    .about-simple-contact h2{font-size:29px}
    .about-simple-contact__actions{width:100%;display:grid}
}

/* ========================================================================== */
/* Websiteji Footer V6 - white corporate footer                               */
/* ========================================================================== */
.wj-footer-v6 {
    position: relative;
    width: 100%;
    padding: 52px 0 34px;
    background: #ffffff;
    color: #13213a;
    border-top: 1px solid #edf1f6;
    box-shadow: 0 -16px 40px rgba(15, 35, 67, 0.055);
}

.wj-footer-v6__container {
    position: relative;
}

.wj-footer-v6__panel {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e9f1;
    border-radius: 12px;
    box-shadow: 0 18px 46px rgba(22, 46, 85, 0.075);
}

.wj-footer-v6__main {
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) minmax(180px, .72fr) minmax(180px, .72fr) minmax(290px, 1fr);
    gap: 48px;
    align-items: start;
    padding: 54px 50px 48px;
}

.wj-footer-v6__brand {
    min-width: 0;
    padding-right: 46px;
    border-right: 1px solid #e7ebf1;
}

.wj-footer-v6__logo {
    display: inline-flex;
    width: min(100%, 420px);
    margin-bottom: 28px;
    text-decoration: none;
}

.wj-footer-v6__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.wj-footer-v6__brand p {
    max-width: 430px;
    margin: 0 0 12px;
    color: #5a677b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.wj-footer-v6__domain {
    display: inline-flex;
    color: #075cf6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.wj-footer-v6__domain:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.wj-footer-v6__column h2 {
    margin: 0;
    color: #0b162b;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.wj-footer-v6__heading-line {
    display: block;
    width: 48px;
    height: 2px;
    margin: 14px 0 25px;
    background: #1477ff;
}

.wj-footer-v6__links,
.wj-footer-v6 .footer-service-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.wj-footer-v6__links a,
.wj-footer-v6 .footer-service-links a {
    padding: 0;
    color: #58667b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    background: transparent;
    border: 0;
    transition: color .18s ease, transform .18s ease;
}

.wj-footer-v6__links a:hover,
.wj-footer-v6 .footer-service-links a:hover {
    color: #075cf6;
    transform: translateX(3px);
}

.wj-footer-v6 .footer-service-links__all {
    margin-top: 2px;
    color: #075cf6;
    font-weight: 600;
}

.wj-footer-v6__contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wj-footer-v6__contact-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.wj-footer-v6__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #075cf6;
    background: #f3f7ff;
    border: 1px solid #dbe7fb;
    border-radius: 50%;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.wj-footer-v6__contact-icon svg {
    width: 21px;
    height: 21px;
}

.wj-footer-v6__contact-item > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.wj-footer-v6__contact-item strong {
    overflow-wrap: anywhere;
    color: #111c31;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.wj-footer-v6__contact-item small {
    color: #748094;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.wj-footer-v6__contact-item:hover .wj-footer-v6__contact-icon {
    background: #eaf2ff;
    border-color: #bcd4ff;
    transform: translateY(-1px);
}

.wj-footer-v6__contact-item:hover strong {
    color: #075cf6;
}

.wj-footer-v6__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 38px;
    padding: 23px 12px 25px;
    border-top: 1px solid #e6ebf2;
}

.wj-footer-v6__bottom p {
    margin: 0;
    color: #6b778b;
    font-size: 13px;
    line-height: 1.5;
}

.wj-footer-v6__bottom p a {
    color: #075cf6;
    font-weight: 600;
    text-decoration: none;
}

.wj-footer-v6__bottom nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}

.wj-footer-v6__bottom nav a {
    color: #5d697d;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
}

.wj-footer-v6__bottom nav a:hover {
    color: #075cf6;
}

.wj-footer-v6__bottom nav span {
    display: block;
    width: 1px;
    height: 14px;
    background: #cbd3df;
}

@media (max-width: 1180px) {
    .wj-footer-v6__main {
        grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(160px, .75fr));
        gap: 40px;
    }

    .wj-footer-v6__contact {
        grid-column: 2 / -1;
        padding-top: 8px;
    }

    .wj-footer-v6__contact-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 860px) {
    .wj-footer-v6 {
        padding: 34px 0 24px;
    }

    .wj-footer-v6__panel {
        border-radius: 10px;
    }

    .wj-footer-v6__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
        padding: 38px 30px 34px;
    }

    .wj-footer-v6__brand {
        grid-column: 1 / -1;
        padding: 0 0 30px;
        border-right: 0;
        border-bottom: 1px solid #e7ebf1;
    }

    .wj-footer-v6__logo {
        width: min(100%, 370px);
        margin-bottom: 20px;
    }

    .wj-footer-v6__contact {
        grid-column: 1 / -1;
    }

    .wj-footer-v6__contact-list {
        grid-template-columns: 1fr;
    }

    .wj-footer-v6__bottom {
        align-items: flex-start;
        flex-direction: column;
        margin: 0 24px;
        padding: 21px 6px 23px;
    }

    .wj-footer-v6__bottom nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .wj-footer-v6 {
        padding: 22px 0 18px;
        box-shadow: 0 -10px 30px rgba(15, 35, 67, 0.05);
    }

    .wj-footer-v6__panel {
        border-radius: 8px;
        box-shadow: 0 12px 30px rgba(22, 46, 85, 0.065);
    }

    .wj-footer-v6__main {
        grid-template-columns: 1fr;
        gap: 29px;
        padding: 31px 22px 28px;
    }

    .wj-footer-v6__brand,
    .wj-footer-v6__contact {
        grid-column: auto;
    }

    .wj-footer-v6__brand {
        padding-bottom: 26px;
    }

    .wj-footer-v6__logo {
        width: min(100%, 330px);
        margin-bottom: 18px;
    }

    .wj-footer-v6__brand p {
        font-size: 14px;
        line-height: 1.65;
    }

    .wj-footer-v6__column h2 {
        font-size: 17px;
    }

    .wj-footer-v6__heading-line {
        margin: 11px 0 19px;
    }

    .wj-footer-v6__links,
    .wj-footer-v6 .footer-service-links {
        gap: 12px;
    }

    .wj-footer-v6__links a,
    .wj-footer-v6 .footer-service-links a {
        font-size: 14px;
    }

    .wj-footer-v6__bottom {
        margin: 0 18px;
        padding: 20px 4px 22px;
    }

    .wj-footer-v6__bottom nav {
        gap: 9px 11px;
    }

    .wj-footer-v6__bottom nav span {
        display: none;
    }
}


/* ========================================================================== */
/* 2026-08-17 Footer full width + compact mobile blog media fix                */
/* ========================================================================== */
.wj-footer-v6 {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    border-top: 1px solid #e1e7ef;
    box-shadow: 0 -10px 28px rgba(15, 35, 67, .055);
}
.wj-footer-v6__container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
.wj-footer-v6__panel {
    width: 100%;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #e3e9f1;
    border-radius: 0;
    box-shadow: none;
}
.wj-footer-v6__main,
.wj-footer-v6__bottom {
    width: min(1440px, 100%);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.wj-footer-v6__main {
    padding-left: clamp(22px, 4vw, 56px);
    padding-right: clamp(22px, 4vw, 56px);
}
.wj-footer-v6__bottom {
    padding-left: clamp(22px, 4vw, 56px);
    padding-right: clamp(22px, 4vw, 56px);
}

@media (max-width: 860px) {
    .wj-footer-v6,
    .wj-footer-v6__panel { border-radius: 0; }
    .wj-footer-v6__bottom { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
    .wj-footer-v6 { padding: 0; }
    .wj-footer-v6__panel { border-radius: 0; box-shadow: none; }
    .wj-footer-v6__main { padding: 28px 18px 24px; }
    .wj-footer-v6__bottom { margin: 0 auto; padding: 18px 18px 20px; }
}

/* Blog listing: mobile cover must stay compact and predictable. */
@media (max-width: 767px) {
    .blog-index-card { min-height: 0; }
    .blog-index-card .blog-image-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 190px;
        overflow: hidden;
    }
    .blog-index-card .blog-image {
        display: block;
        width: 100%;
        height: 100% !important;
        max-height: 190px;
        object-fit: cover;
        object-position: center;
    }
    .blog-detail-page .article-cover--clean {
        width: calc(100% - 32px);
        max-width: 760px;
        aspect-ratio: 16 / 9;
        max-height: 220px;
        overflow: hidden;
    }
    .blog-detail-page .article-cover--clean img {
        display: block;
        width: 100%;
        height: 100% !important;
        max-height: 220px !important;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    .blog-detail-page .article-related-card__image,
    .blog-detail-page .article-related-card__image img,
    .blog-detail-page .article-related-grid .article-related-card:last-child .article-related-card__image {
        height: auto !important;
        max-height: 200px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        overflow: hidden;
    }
}
@media (max-width: 480px) {
    .blog-index-card .blog-image-wrap,
    .blog-index-card .blog-image { max-height: 175px; }
    .blog-detail-page .article-cover--clean,
    .blog-detail-page .article-cover--clean img { max-height: 195px !important; }
    .blog-detail-page .article-related-card__image,
    .blog-detail-page .article-related-card__image img { max-height: 180px; }
}

/* ========================================================================== */
/* 2026-08-17 Shared image loading placeholder + native lazy loading          */
/* ========================================================================== */
/*
   Public content images show the Websiteji mark until their real source has
   finished loading. The same placeholder is reused from cache site-wide.
   LCP images may remain loading="eager"; all secondary content images use
   native loading="lazy" in the Razor views.
*/
main img[loading] {
    background-color: #ffffff;
    background-image: var(--wj-image-loading-placeholder, url('/common/images/brand/logo-image-loading-placeholder.png'));
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(54px, 16%, 104px) auto;
}

main img[loading].wj-image-loaded {
    background-image: none;
    background-color: transparent;
}

main img[loading].wj-image-error {
    object-fit: contain !important;
    background-color: #ffffff;
    background-image: var(--wj-image-loading-placeholder, url('/common/images/brand/logo-image-loading-placeholder.png'));
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(64px, 22%, 120px) auto;
}

@media (max-width: 767px) {
    main img[loading] {
        background-size: clamp(48px, 20vw, 88px) auto;
    }
}

/* Cookie notice v13 - ziyaret kabulü, kompakt Tamam/× bildirimi */
.cookie-consent.cookie-consent--notice {
    right: 18px;
    bottom: 18px;
    left: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: min(620px, calc(100vw - 36px));
    max-height: none;
    gap: 10px 18px;
    padding: 17px 54px 17px 18px;
    overflow: visible;
    border: 1px solid #d9e2ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(7, 24, 49, .16);
    transform: none;
}

.cookie-consent--notice .cookie-consent__body {
    min-width: 0;
}

.cookie-consent--notice .cookie-consent__eyebrow {
    margin-bottom: 4px;
    font-size: .66rem;
    letter-spacing: .1em;
}

.cookie-consent--notice .cookie-consent__body strong {
    margin-bottom: 4px;
    font-size: 1rem;
    line-height: 1.3;
}

.cookie-consent--notice .cookie-consent__body p {
    max-width: none;
    font-size: .79rem;
    line-height: 1.48;
}

.cookie-consent__notice-actions {
    display: flex;
    align-items: center;
}

.cookie-consent--notice .cookie-consent__notice-actions .cookie-consent__button {
    min-width: 92px;
    min-height: 38px;
    padding: 8px 15px;
    border-radius: 8px;
}

.cookie-consent__close {
    position: absolute;
    top: 10px;
    right: 11px;
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #607086;
    font: inherit;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-consent__close:hover,
.cookie-consent__close:focus-visible {
    background: #f1f5fa;
    color: #0b162b;
    outline: none;
}

.cookie-consent--notice .cookie-consent__status {
    grid-column: 1 / -1;
    display: none;
    min-height: 0;
    margin: 0;
}

.cookie-consent--notice .cookie-consent__status.is-error:not(:empty) {
    display: block;
    font-size: .76rem;
}

@media (max-width: 700px) {
    .cookie-consent.cookie-consent--notice {
        right: 10px;
        bottom: 10px;
        left: 10px;
        grid-template-columns: 1fr auto;
        width: auto;
        max-height: min(210px, calc(100svh - 20px));
        gap: 8px 12px;
        padding: 13px 44px 13px 14px;
        border-radius: 10px;
        overflow: auto;
    }

    .cookie-consent--notice .cookie-consent__eyebrow {
        margin-bottom: 2px;
        font-size: .61rem;
    }

    .cookie-consent--notice .cookie-consent__body strong {
        margin-bottom: 3px;
        font-size: .92rem;
    }

    .cookie-consent--notice .cookie-consent__body p {
        display: -webkit-box;
        overflow: hidden;
        font-size: .72rem;
        line-height: 1.42;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .cookie-consent--notice .cookie-consent__notice-actions .cookie-consent__button {
        min-width: 76px;
        min-height: 36px;
        padding: 7px 12px;
        font-size: .78rem;
    }

    .cookie-consent__close {
        top: 6px;
        right: 7px;
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
}

@media (max-width: 430px) {
    .cookie-consent.cookie-consent--notice {
        grid-template-columns: 1fr auto;
        padding: 12px 41px 12px 12px;
    }

    .cookie-consent--notice .cookie-consent__body p {
        -webkit-line-clamp: 2;
    }
}

/* ======================================================================
   ERROR / 404 PAGE — v25
   ====================================================================== */
.error-page{min-height:calc(100vh - 150px);display:flex;align-items:center;padding:72px 0;background:#f7f8fa}
.error-page__container{width:100%}
.error-page__panel{display:grid;grid-template-columns:minmax(260px,.78fr) minmax(0,1.22fr);max-width:1040px;margin:0 auto;border:1px solid #e3e7ec;background:#fff;box-shadow:0 18px 48px rgba(11,22,43,.07)}
.error-page__visual{position:relative;min-height:390px;display:grid;place-items:center;overflow:hidden;background:#0b162b}
.error-page__visual::before,.error-page__visual::after{content:"";position:absolute;border:1px solid rgba(255,255,255,.09);border-radius:50%}
.error-page__visual::before{width:300px;height:300px}
.error-page__visual::after{width:420px;height:420px}
.error-page__code{position:relative;z-index:2;color:#fff;font-size:clamp(74px,9vw,132px);font-weight:800;letter-spacing:-.075em;line-height:1}
.error-page__line{position:absolute;z-index:3;width:72px;height:3px;bottom:86px;background:#fff}
.error-page__content{display:flex;flex-direction:column;justify-content:center;padding:54px 58px}
.error-page__content h1{max-width:620px;margin:8px 0 14px;color:#0b162b;font-size:clamp(30px,4vw,48px);line-height:1.08;letter-spacing:-.035em}
.error-page__content>p{max-width:620px;margin:0;color:#667085;font-size:15px;line-height:1.75}
.error-page__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}
.error-page__actions .btn{min-height:46px}
.error-page__redirect{display:flex;align-items:center;gap:9px;margin-top:24px;padding-top:18px;border-top:1px solid #edf0f3;color:#667085;font-size:13px}
.error-page__redirect strong{color:#0b162b}
.error-page__redirect-icon{width:26px;height:26px;display:grid;place-items:center;flex:0 0 26px;background:#eef3ff;color:#075cf6;font-weight:800}

@media(max-width:760px){
  .error-page{min-height:auto;padding:30px 0 48px}
  .error-page__panel{grid-template-columns:1fr}
  .error-page__visual{min-height:190px}
  .error-page__visual::before{width:210px;height:210px}
  .error-page__visual::after{width:290px;height:290px}
  .error-page__line{bottom:38px}
  .error-page__content{padding:30px 22px 34px}
  .error-page__content h1{font-size:30px}
}
@media(max-width:480px){
  .error-page__actions{display:grid;grid-template-columns:1fr}
  .error-page__actions .btn{width:100%;justify-content:center}
}
