/* 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: cover;
    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: 24px;
    bottom: 24px;
    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, width 180ms ease, min-height 180ms ease, padding 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;
    transition: opacity 160ms ease, max-width 160ms ease;
}

.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;
}


.floating-whatsapp.is-compact {
    width: 54px;
    min-height: 54px;
    padding: 5px;
    gap: 0;
    justify-content: center;
}

.floating-whatsapp.is-compact .floating-whatsapp__copy {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
}

body.is-products-visible .back-to-top,
body.is-products-visible .back-to-top.is-visible {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) !important;
    pointer-events: none;
}

.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}}

/* =========================================================
   WEBSITEJI 2026 - Sabit ve dengeli ana sayfa hero slider
   Her slaytta aynı grid, aynı görsel kutusu ve kontrollü metin yüksekliği.
   ========================================================= */
.hero[data-hero-loop]{
  --hero-bg:#f7faff;
  --hero-ink:#071a36;
  --hero-muted:#5f6f84;
  --hero-blue:#075cf6;
  position:relative;
  height:var(--hero-height,680px);
  min-height:640px;
  max-height:720px;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 18%,rgba(7,92,246,.065) 0 1px,transparent 1.5px) 0 0/18px 18px,
    linear-gradient(110deg,#fff 0%,#f9fbff 52%,#eef5ff 100%);
  color:var(--hero-ink);
  isolation:isolate;
}
.hero[data-hero-loop]::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:46%;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.56),transparent);
  z-index:0;
}
.hero[data-hero-loop] .hero-swiper,
.hero[data-hero-loop] .swiper-wrapper,
.hero[data-hero-loop] .swiper-slide{
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
}
.hero[data-hero-loop] .hero-slide{
  position:relative;
  display:flex;
  align-items:stretch;
  background:transparent;
  overflow:hidden;
}
.hero[data-hero-loop] .hero-slide::before,
.hero[data-hero-loop] .hero-slide::after{display:none!important;content:none!important}

/* Her slide aynı iskeleti kullanır; görsel oranı değişse bile kolonlar oynamaz. */
.hero[data-hero-loop] .hero-grid{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  min-width:0;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:clamp(32px,4vw,60px);
  align-items:center;
  padding-top:44px;
  padding-bottom:72px;
}
.hero[data-hero-loop] .hero-copy{
  width:100%;
  max-width:620px;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero[data-hero-loop] .hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:max-content;
  max-width:100%;
  min-height:38px;
  margin:0 0 18px;
  padding:7px 12px 7px 9px;
  border:1px solid #e1e9f5;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  box-shadow:0 8px 24px rgba(16,42,77,.05);
  color:#26364e;
  font-size:10.5px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.025em;
  text-transform:uppercase;
  opacity:0;
  transform:translateY(10px);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hero[data-hero-loop] .hero-eyebrow::before{display:none!important}
.hero[data-hero-loop] .hero-eyebrow svg{
  width:24px;
  height:24px;
  padding:5px;
  border-radius:50%;
  background:var(--hero-blue);
  color:#fff;
  flex:0 0 auto;
}
.hero[data-hero-loop] .hero-title{
  width:100%;
  max-width:620px;
  margin:0 0 17px;
  color:var(--hero-ink);
  font-size:clamp(40px,min(3.9vw,6.5vh),62px);
  line-height:1.01;
  letter-spacing:-.048em;
  font-weight:800;
  text-wrap:balance;
  overflow-wrap:normal;
  opacity:0;
  transform:translateY(18px);
}
.hero[data-hero-loop] .hero-title span{color:var(--hero-blue)}
.hero[data-hero-loop] .hero-description{
  width:100%;
  max-width:570px;
  margin:0 0 23px;
  color:var(--hero-muted);
  font-size:clamp(14px,min(1.15vw,2.3vh),17px);
  line-height:1.58;
  text-wrap:pretty;
  opacity:0;
  transform:translateY(14px);
}
.hero[data-hero-loop] .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 26px;
  opacity:0;
  transform:translateY(12px);
}
.hero[data-hero-loop] .hero-actions .btn{
  min-height:48px;
  max-width:100%;
  padding:0 18px;
  border-radius:5px;
  font-size:12.5px;
  font-weight:750;
  line-height:1.2;
  box-shadow:none;
  white-space:nowrap;
}
.hero[data-hero-loop] .hero-actions .btn-primary{
  background:var(--hero-blue);
  border-color:var(--hero-blue);
  color:#fff;
}
.hero[data-hero-loop] .hero-actions .btn-primary:hover{background:#064fce;border-color:#064fce}
.hero[data-hero-loop] .hero-actions .btn-outline-light{
  background:#fff;
  border:1px solid #9eb3d4;
  color:var(--hero-ink);
}
.hero[data-hero-loop] .hero-actions .btn-outline-light:hover{border-color:var(--hero-blue);color:var(--hero-blue);background:#f8fbff}
.hero[data-hero-loop] .hero-actions .btn svg{width:16px;height:16px;flex:0 0 auto}

/* Avantaj alanı bütün slaytlarda aynı yüksekliği korur. */
.hero[data-hero-loop] .hero-proof{
  width:100%;
  max-width:590px;
  min-height:46px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  align-self:auto;
  padding:0;
  border:0;
  color:var(--hero-ink);
  opacity:0;
  transform:translateY(10px);
}
.hero[data-hero-loop] .hero-proof__label{display:none}
.hero[data-hero-loop] .hero-proof__item{
  min-width:0;
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  gap:8px;
  align-items:center;
  padding:0;
  color:var(--hero-ink);
  font-size:11px;
  font-weight:600;
}
.hero[data-hero-loop] .hero-proof__icon{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#edf4ff;
  color:var(--hero-blue);
}
.hero[data-hero-loop] .hero-proof__item svg{width:17px;height:17px;color:inherit}
.hero[data-hero-loop] .hero-proof__item strong{
  display:block;
  margin:0 0 1px;
  color:var(--hero-ink);
  font-size:10.5px;
  line-height:1.25;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hero[data-hero-loop] .hero-proof__item small{
  display:block;
  color:#8190a5;
  font-size:9px;
  line-height:1.3;
  font-weight:500;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* Görsel kutusu sabittir. Kaynak görselin eni/boyu layout'u değiştiremez. */
.hero[data-hero-loop] .hero-media-wrap{
  position:relative;
  width:100%;
  height:520px;
  max-height:calc(100% - 42px);
  min-width:0;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:translateX(18px);
}
.hero[data-hero-loop] .hero-media{
  position:relative!important;
  inset:auto!important;
  display:block;
  width:100%!important;
  height:100%!important;
  min-width:0!important;
  min-height:0!important;
  overflow:hidden;
  border-radius:20px;
  background:#dfe9f5;
  box-shadow:0 22px 52px rgba(27,58,96,.14);
}
.hero[data-hero-loop] .hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(7,26,54,.08);
  border-radius:inherit;
}
.hero[data-hero-loop] .hero-slide__image{
  position:absolute!important;
  inset:0!important;
  display:block;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:cover;
  object-position:center;
  transform:scale(1.015);
  transition:transform 6s ease;
}
.hero[data-hero-loop] .hero-slide:first-child .hero-slide__image{object-position:center 58%}
.hero[data-hero-loop] .hero-slide:nth-child(2) .hero-slide__image{object-position:center 48%}
.hero[data-hero-loop] .hero-slide:nth-child(3) .hero-slide__image{object-position:center 50%}
.hero[data-hero-loop] .hero-slide:nth-child(4) .hero-slide__image{object-position:center 50%}
.hero[data-hero-loop] .hero-slide:nth-child(5) .hero-slide__image{object-position:center 48%}
.hero[data-hero-loop] .swiper-slide-active .hero-slide__image{transform:scale(1)}

.hero[data-hero-loop] .swiper-slide-active .hero-eyebrow{animation:wjHeroUp .42s .06s ease forwards}
.hero[data-hero-loop] .swiper-slide-active .hero-title{animation:wjHeroUp .52s .12s ease forwards}
.hero[data-hero-loop] .swiper-slide-active .hero-description{animation:wjHeroUp .48s .19s ease forwards}
.hero[data-hero-loop] .swiper-slide-active .hero-actions{animation:wjHeroUp .45s .25s ease forwards}
.hero[data-hero-loop] .swiper-slide-active .hero-proof{animation:wjHeroUp .45s .31s ease forwards}
.hero[data-hero-loop] .swiper-slide-active .hero-media-wrap{animation:wjHeroMedia .58s .12s ease forwards}
.hero[data-hero-loop] .hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-eyebrow,
.hero[data-hero-loop] .hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-title,
.hero[data-hero-loop] .hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-description,
.hero[data-hero-loop] .hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-actions,
.hero[data-hero-loop] .hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-proof,
.hero[data-hero-loop] .hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero-media-wrap{opacity:1;transform:none}
@keyframes wjHeroUp{to{opacity:1;transform:none}}
@keyframes wjHeroMedia{to{opacity:1;transform:none}}

.hero[data-hero-loop] .hero-controls{
  left:auto;
  right:max(24px,calc((100vw - var(--container))/2));
  bottom:18px;
  width:auto;
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--hero-ink);
}
.hero[data-hero-loop] .hero-pagination{color:#64748b;font-size:10.5px}
.hero[data-hero-loop] .hero-progress{width:88px;height:3px;border-radius:10px;background:#d8e2f0}
.hero[data-hero-loop] .hero-progress span{background:var(--hero-blue)}
.hero[data-hero-loop] .hero-arrow{
  width:38px;
  height:38px;
  border:1px solid #c9d7e8;
  border-radius:50%;
  background:#fff;
  color:var(--hero-ink);
  box-shadow:0 8px 20px rgba(16,42,77,.07);
}
.hero[data-hero-loop] .hero-arrow:hover{background:var(--hero-blue);border-color:var(--hero-blue);color:#fff}

/* Referanstaki koyu avantaj bandı. */
.marquee{display:none!important}
.trust-strip{padding:16px 0 20px;background:#f7faff;border:0}
.trust-strip .trust-grid{
  overflow:hidden;
  border-radius:10px;
  background:linear-gradient(115deg,#061a37,#0a2b5a);
  box-shadow:0 18px 44px rgba(4,24,52,.12);
}
.trust-strip .trust-item{
  min-height:100px;
  padding:20px 22px;
  border-right:1px solid rgba(255,255,255,.13);
}
.trust-strip .trust-icon{width:40px;height:40px;border-radius:9px;background:#0f4ba6;color:#fff}
.trust-strip .trust-item strong{color:#fff;font-size:12.5px}
.trust-strip .trust-item small{color:rgba(255,255,255,.67);font-size:10px;line-height:1.4}

@media(max-width:1199px) and (min-width:961px){
  .hero[data-hero-loop]{min-height:620px;max-height:690px}
  .hero[data-hero-loop] .hero-grid{grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:30px;padding-top:38px;padding-bottom:66px}
  .hero[data-hero-loop] .hero-title{font-size:clamp(38px,min(4.2vw,6.2vh),52px)}
  .hero[data-hero-loop] .hero-description{font-size:14px}
  .hero[data-hero-loop] .hero-actions .btn{font-size:11.5px;padding-inline:14px}
  .hero[data-hero-loop] .hero-proof{gap:8px}
  .hero[data-hero-loop] .hero-proof__item{grid-template-columns:28px minmax(0,1fr);gap:6px}
  .hero[data-hero-loop] .hero-proof__icon{width:28px;height:28px}
  .hero[data-hero-loop] .hero-proof__item strong{font-size:9.5px}
  .hero[data-hero-loop] .hero-proof__item small{font-size:8px}
  .hero[data-hero-loop] .hero-media-wrap{height:470px;max-height:calc(100% - 42px)}
}

/* Tablet: iki kolon zorlanmaz. Her slayt aynı dikey iskeleti korur. */
@media(max-width:960px){
  .hero[data-hero-loop]{height:880px!important;min-height:880px;max-height:880px;overflow:hidden}
  .hero[data-hero-loop] .hero-swiper,
  .hero[data-hero-loop] .swiper-wrapper,
  .hero[data-hero-loop] .swiper-slide{height:880px!important;min-height:880px;max-height:880px}
  .hero[data-hero-loop] .hero-slide{align-items:stretch}
  .hero[data-hero-loop] .hero-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto 350px;
    gap:26px;
    height:880px;
    min-height:0;
    padding-top:40px;
    padding-bottom:72px;
  }
  .hero[data-hero-loop] .hero-copy{max-width:690px;min-height:350px;justify-content:flex-start}
  .hero[data-hero-loop] .hero-title{max-width:680px;font-size:clamp(40px,7vw,58px)}
  .hero[data-hero-loop] .hero-description{max-width:620px}
  .hero[data-hero-loop] .hero-media-wrap{height:350px;max-height:none;order:2}
  .hero[data-hero-loop] .hero-media{border-radius:16px}
  .hero[data-hero-loop] .hero-controls{right:20px;bottom:16px}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-strip .trust-item:nth-child(2){border-right:0}
}

@media(max-width:640px){
  .hero[data-hero-loop]{height:830px!important;min-height:830px;max-height:830px;background:linear-gradient(180deg,#fff 0%,#f5f9ff 100%)}
  .hero[data-hero-loop] .hero-swiper,
  .hero[data-hero-loop] .swiper-wrapper,
  .hero[data-hero-loop] .swiper-slide{height:830px!important;min-height:830px;max-height:830px}
  .hero[data-hero-loop] .hero-grid{
    grid-template-rows:auto 230px;
    gap:20px;
    height:830px;
    min-height:0;
    padding-top:26px;
    padding-bottom:66px;
  }
  .hero[data-hero-loop] .hero-copy{min-height:470px;max-width:none}
  .hero[data-hero-loop] .hero-eyebrow{min-height:34px;margin-bottom:14px;font-size:9px;padding:5px 9px 5px 6px}
  .hero[data-hero-loop] .hero-eyebrow svg{width:22px;height:22px}
  .hero[data-hero-loop] .hero-title{font-size:clamp(34px,10.3vw,45px);line-height:1.02;margin-bottom:14px;letter-spacing:-.042em}
  .hero[data-hero-loop] .hero-description{font-size:13.5px;line-height:1.5;margin-bottom:18px}
  .hero[data-hero-loop] .hero-actions{display:grid;grid-template-columns:1fr;gap:8px;margin-bottom:20px}
  .hero[data-hero-loop] .hero-actions .btn{width:100%;min-height:46px;justify-content:center;padding-inline:12px;white-space:normal;text-align:center}
  .hero[data-hero-loop] .hero-proof{grid-template-columns:repeat(3,minmax(0,1fr));gap:7px;min-height:44px}
  .hero[data-hero-loop] .hero-proof__item{display:flex;flex-direction:column;align-items:flex-start;gap:5px}
  .hero[data-hero-loop] .hero-proof__icon{width:30px;height:30px}
  .hero[data-hero-loop] .hero-proof__item strong{font-size:9px;white-space:normal;line-height:1.2}
  .hero[data-hero-loop] .hero-proof__item small{display:none}
  .hero[data-hero-loop] .hero-media-wrap{height:230px}
  .hero[data-hero-loop] .hero-media{border-radius:12px}
  .hero[data-hero-loop] .hero-controls{left:20px;right:20px;justify-content:flex-end}
  .hero[data-hero-loop] .hero-progress{display:none}
  .trust-grid{grid-template-columns:1fr!important}
  .trust-strip .trust-item{min-height:80px;border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
  .trust-strip .trust-item:last-child{border-bottom:0}
}

@media(max-width:380px){
  .hero[data-hero-loop]{height:850px!important;min-height:850px;max-height:850px}
  .hero[data-hero-loop] .hero-swiper,
  .hero[data-hero-loop] .swiper-wrapper,
  .hero[data-hero-loop] .swiper-slide{height:850px!important;min-height:850px;max-height:850px}
  .hero[data-hero-loop] .hero-grid{height:850px;grid-template-rows:auto 215px}
  .hero[data-hero-loop] .hero-copy{min-height:490px}
  .hero[data-hero-loop] .hero-title{font-size:33px}
  .hero[data-hero-loop] .hero-media-wrap{height:215px}
}

@media(prefers-reduced-motion:reduce){
  .hero[data-hero-loop] .hero-eyebrow,
  .hero[data-hero-loop] .hero-title,
  .hero[data-hero-loop] .hero-description,
  .hero[data-hero-loop] .hero-actions,
  .hero[data-hero-loop] .hero-proof,
  .hero[data-hero-loop] .hero-media-wrap{opacity:1!important;transform:none!important;animation:none!important}
}


/* =========================================================
   WEBSITEJI HERO LAYOUT FIX v2
   - Header + hero + trust strip masaüstünde ilk ekrana sığar.
   - Metin kenarlara yapışmaz.
   - Tüm hero görselleri aynı 16:9 kutuda ve eksiksiz görünür.
   ========================================================= */
@media (min-width: 961px) {
  .hero[data-hero-loop] {
    height: var(--hero-height, 590px) !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .hero[data-hero-loop] .hero-grid {
    width: min(calc(100% - 72px), 1320px) !important;
    height: 100% !important;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr) !important;
    gap: clamp(34px, 4vw, 64px) !important;
    align-items: center !important;
    padding: 34px 0 52px !important;
  }

  .hero[data-hero-loop] .hero-copy {
    max-width: 590px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    justify-content: center !important;
    padding-left: clamp(8px, 1vw, 18px);
  }

  .hero[data-hero-loop] .hero-eyebrow {
    min-height: 34px !important;
    margin-bottom: 14px !important;
    padding: 6px 11px 6px 7px !important;
    font-size: 9.5px !important;
  }

  .hero[data-hero-loop] .hero-eyebrow svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero[data-hero-loop] .hero-title {
    max-width: 590px !important;
    margin-bottom: 14px !important;
    font-size: clamp(36px, 3.55vw, 54px) !important;
    line-height: 1.015 !important;
    letter-spacing: -.043em !important;
    text-wrap: balance !important;
  }

  .hero[data-hero-loop] .hero-description {
    max-width: 555px !important;
    margin-bottom: 18px !important;
    font-size: clamp(13px, 1.05vw, 15.5px) !important;
    line-height: 1.52 !important;
  }

  .hero[data-hero-loop] .hero-actions {
    gap: 9px !important;
    margin-bottom: 20px !important;
  }

  .hero[data-hero-loop] .hero-actions .btn {
    min-height: 44px !important;
    padding: 0 15px !important;
    font-size: 11.5px !important;
  }

  .hero[data-hero-loop] .hero-proof {
    max-width: 565px !important;
    min-height: 42px !important;
    gap: 10px !important;
  }

  .hero[data-hero-loop] .hero-proof__item {
    grid-template-columns: 29px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .hero[data-hero-loop] .hero-proof__icon {
    width: 29px !important;
    height: 29px !important;
  }

  .hero[data-hero-loop] .hero-proof__item strong {
    font-size: 9.7px !important;
  }

  .hero[data-hero-loop] .hero-proof__item small {
    font-size: 8.2px !important;
  }

  /* Bütün slaytlarda görsel alanı birebir aynı ölçüde. */
  .hero[data-hero-loop] .hero-media-wrap {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
    align-self: center !important;
  }

  .hero[data-hero-loop] .hero-media {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 14px !important;
    background: #e9f0f8 !important;
    box-shadow: 0 16px 38px rgba(27,58,96,.12) !important;
  }

  .hero[data-hero-loop] .hero-slide__image,
  .hero[data-hero-loop] .hero-slide:first-child .hero-slide__image,
  .hero[data-hero-loop] .hero-slide:nth-child(2) .hero-slide__image,
  .hero[data-hero-loop] .hero-slide:nth-child(3) .hero-slide__image,
  .hero[data-hero-loop] .hero-slide:nth-child(4) .hero-slide__image,
  .hero[data-hero-loop] .hero-slide:nth-child(5) .hero-slide__image {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  .hero[data-hero-loop] .swiper-slide-active .hero-slide__image {
    transform: none !important;
  }

  .hero[data-hero-loop] .hero-controls {
    right: max(36px, calc((100vw - 1320px) / 2 + 12px)) !important;
    bottom: 12px !important;
  }

  /* Trust strip bağımsız bir ikinci bölüm gibi uzamaz; ilk ekranın altında tam görünür. */
  .trust-strip {
    height: 104px !important;
    min-height: 104px !important;
    padding: 0 !important;
    background: linear-gradient(115deg,#061a37,#0a2b5a) !important;
    border: 0 !important;
    overflow: hidden !important;
  }

  .trust-strip .trust-grid {
    width: min(calc(100% - 72px), 1320px) !important;
    height: 104px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .trust-strip .trust-item {
    min-height: 104px !important;
    height: 104px !important;
    padding: 14px 18px !important;
  }

  .trust-strip .trust-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  .trust-strip .trust-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .trust-strip .trust-item strong {
    font-size: 11.5px !important;
    line-height: 1.25 !important;
  }

  .trust-strip .trust-item small {
    font-size: 9px !important;
    line-height: 1.35 !important;
  }
}

/* 961-1180 aralığında metin ve görsel güvenli boşlukla sıkıştırılır. */
@media (min-width: 961px) and (max-width: 1180px) {
  .hero[data-hero-loop] .hero-grid {
    width: calc(100% - 56px) !important;
    grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr) !important;
    gap: 28px !important;
    padding-top: 28px !important;
    padding-bottom: 48px !important;
  }
  .hero[data-hero-loop] .hero-copy { padding-left: 4px; }
  .hero[data-hero-loop] .hero-title { font-size: clamp(34px, 4.15vw, 46px) !important; }
  .hero[data-hero-loop] .hero-description { font-size: 13px !important; }
  .hero[data-hero-loop] .hero-actions .btn { min-height: 42px !important; font-size: 10.5px !important; padding-inline: 12px !important; }
  .hero[data-hero-loop] .hero-proof__item strong { font-size: 8.7px !important; }
  .hero[data-hero-loop] .hero-proof__item small { font-size: 7.5px !important; }
  .trust-strip .trust-grid { width: calc(100% - 56px) !important; }
  .trust-strip .trust-item { padding-inline: 12px !important; }
}

/* Kısa masaüstü ekranlarda da trust-strip ilk viewport içinde kalır. */
@media (min-width: 961px) and (max-height: 760px) {
  .hero[data-hero-loop] .hero-grid { padding-top: 22px !important; padding-bottom: 42px !important; }
  .hero[data-hero-loop] .hero-title { font-size: clamp(33px, 3.35vw, 47px) !important; margin-bottom: 11px !important; }
  .hero[data-hero-loop] .hero-description { margin-bottom: 14px !important; line-height: 1.45 !important; }
  .hero[data-hero-loop] .hero-actions { margin-bottom: 15px !important; }
  .hero[data-hero-loop] .hero-eyebrow { margin-bottom: 11px !important; }
  .trust-strip, .trust-strip .trust-grid { height: 96px !important; min-height: 96px !important; }
  .trust-strip .trust-item { height: 96px !important; min-height: 96px !important; padding-top: 10px !important; padding-bottom: 10px !important; }
}

/* Tablet ve mobilde de görseller kırpılmaz, hepsi aynı oranı korur. */
@media (max-width: 960px) {
  .hero[data-hero-loop] .hero-media-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
  }
  .hero[data-hero-loop] .hero-media {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16/9 !important;
    background: #e9f0f8 !important;
  }
  .hero[data-hero-loop] .hero-slide__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
  }
}


/* =========================================================
   WEBSITEJI HERO FINAL FIX v3
   - Hero görselleri sağ sütunda tam durur, blur yok
   - Trust strip tam geniş değil, container içinde kart olarak durur
   ========================================================= */
.hero[data-hero-loop]{
  background:linear-gradient(180deg,#ffffff 0%,#f7faff 100%) !important;
  overflow:hidden !important;
}
.hero[data-hero-loop] .hero-swiper .swiper-slide{
  align-items:center !important;
}
.hero[data-hero-loop] .hero-slide::before,
.hero[data-hero-loop] .hero-slide::after{display:none !important;}
.hero[data-hero-loop] .hero-grid{
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr) !important;
  gap:clamp(28px,3vw,52px) !important;
  align-items:center !important;
  padding-top:clamp(24px,3vh,36px) !important;
  padding-bottom:clamp(18px,2.5vh,28px) !important;
}
.hero[data-hero-loop] .hero-copy{
  max-width:600px !important;
  min-width:0 !important;
  min-height:0 !important;
  justify-content:center !important;
  padding-left:0 !important;
}
.hero[data-hero-loop] .hero-eyebrow{
  margin-bottom:16px !important;
  padding:7px 14px 7px 8px !important;
  min-height:40px !important;
  gap:10px !important;
  border:1px solid #e1e8f2 !important;
  border-radius:999px !important;
  background:#f4f7fb !important;
  color:#0b2047 !important;
  font-size:12px !important;
  letter-spacing:.03em !important;
  text-transform:uppercase !important;
}
.hero[data-hero-loop] .hero-eyebrow::before{display:none !important;}
.hero[data-hero-loop] .hero-eyebrow svg{
  width:24px !important;
  height:24px !important;
  padding:4px !important;
  border-radius:50% !important;
  background:#2165f5 !important;
  color:#fff !important;
  flex:0 0 auto;
}
.hero[data-hero-loop] .hero-title,
.hero[data-hero-loop] h2.hero-title{
  margin-bottom:18px !important;
  color:#071a3d !important;
  font-size:clamp(38px,4.2vw,68px) !important;
  line-height:.98 !important;
  letter-spacing:-.055em !important;
  max-width:620px !important;
}
.hero[data-hero-loop] .hero-title span{
  color:#2165f5 !important;
}
.hero[data-hero-loop] .hero-description{
  max-width:560px !important;
  margin-bottom:24px !important;
  color:#52627b !important;
  font-size:clamp(15px,1.2vw,20px) !important;
  line-height:1.58 !important;
}
.hero[data-hero-loop] .hero-actions{
  margin-bottom:24px !important;
  gap:12px !important;
}
.hero[data-hero-loop] .hero-actions .btn{
  min-height:54px !important;
  border-radius:14px !important;
  font-size:15px !important;
  padding:0 22px !important;
}
.hero[data-hero-loop] .btn-outline-light{
  border-color:#c8d4e4 !important;
  background:#fff !important;
  color:#0b2047 !important;
}
.hero[data-hero-loop] .btn-outline-light:hover{
  border-color:#2165f5 !important;
  color:#2165f5 !important;
}
.hero[data-hero-loop] .hero-proof{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
  max-width:620px !important;
  border-top:0 !important;
  padding-top:0 !important;
}
.hero[data-hero-loop] .hero-proof__item{
  display:grid !important;
  grid-template-columns:42px minmax(0,1fr) !important;
  gap:10px !important;
  align-items:start !important;
  min-height:74px !important;
  padding:14px !important;
  border:1px solid #e3eaf3 !important;
  border-radius:16px !important;
  background:#f5f8fc !important;
}
.hero[data-hero-loop] .hero-proof__icon{
  width:42px !important;
  height:42px !important;
  border-radius:12px !important;
  background:#fff !important;
  color:#2165f5 !important;
  box-shadow:0 8px 18px rgba(33,101,245,.08) !important;
}
.hero[data-hero-loop] .hero-proof__item strong{
  font-size:12px !important;
  line-height:1.3 !important;
  color:#0b2047 !important;
  white-space:normal !important;
}
.hero[data-hero-loop] .hero-proof__item small{
  font-size:11px !important;
  line-height:1.35 !important;
  color:#6b7b90 !important;
  white-space:normal !important;
}
.hero[data-hero-loop] .hero-media-wrap{
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  aspect-ratio:16/9 !important;
  opacity:0 !important;
  transform:translateX(18px) !important;
  align-self:center !important;
}
.hero[data-hero-loop] .hero-media{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  height:100% !important;
  padding:0 !important;
  overflow:hidden !important;
  border-radius:28px !important;
  background:transparent !important;
  box-shadow:none !important;
}
.hero[data-hero-loop] .hero-media::after{display:none !important;}
.hero[data-hero-loop] .hero-slide__image,
.hero[data-hero-loop] .hero-slide:first-child .hero-slide__image,
.hero[data-hero-loop] .hero-slide:nth-child(2) .hero-slide__image,
.hero[data-hero-loop] .hero-slide:nth-child(3) .hero-slide__image,
.hero[data-hero-loop] .hero-slide:nth-child(4) .hero-slide__image,
.hero[data-hero-loop] .hero-slide:nth-child(5) .hero-slide__image{
  position:static !important;
  inset:auto !important;
  display:block !important;
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  transform:none !important;
  border-radius:28px !important;
  background:#fff !important;
}
.hero[data-hero-loop] .swiper-slide-active .hero-slide__image{transform:none !important;}
.hero[data-hero-loop] .hero-controls{
  right:max(24px,calc((100vw - var(--container))/2)) !important;
  bottom:8px !important;
}
.hero[data-hero-loop] .hero-pagination{color:#6b7b90 !important;}
.hero[data-hero-loop] .hero-progress{background:#d8e3f1 !important;}
.hero[data-hero-loop] .hero-progress span{background:#2165f5 !important;}
.hero[data-hero-loop] .hero-arrow{
  border:1px solid #cfdaea !important;
  background:#fff !important;
  color:#0b2047 !important;
}
.hero[data-hero-loop] .hero-arrow:hover{background:#2165f5 !important;border-color:#2165f5 !important;color:#fff !important;}

.trust-strip{
  padding:10px 0 20px !important;
  background:transparent !important;
  border:0 !important;
  height:auto !important;
  min-height:0 !important;
}
.trust-strip .trust-grid{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  overflow:hidden !important;
  border-radius:22px !important;
  background:linear-gradient(115deg,#061a37,#0a2b5a) !important;
  box-shadow:0 20px 44px rgba(4,24,52,.12) !important;
}
.trust-strip .trust-item{
  min-height:108px !important;
  height:auto !important;
  padding:22px 22px !important;
  border-right:1px solid rgba(255,255,255,.13) !important;
  border-bottom:0 !important;
}
.trust-strip .trust-item:last-child{border-right:0 !important;}
.trust-strip .trust-icon{
  width:42px !important;
  height:42px !important;
  border-radius:12px !important;
  background:rgba(33,101,245,.38) !important;
  color:#fff !important;
}
.trust-strip .trust-item strong{
  color:#fff !important;
  font-size:14px !important;
  line-height:1.3 !important;
}
.trust-strip .trust-item small{
  color:rgba(255,255,255,.74) !important;
  font-size:12px !important;
  line-height:1.45 !important;
}

@media (min-width:961px) and (max-width:1180px){
  .hero[data-hero-loop] .hero-grid{grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr) !important;gap:28px !important;}
  .hero[data-hero-loop] .hero-title{font-size:clamp(34px,4vw,52px) !important;}
  .hero[data-hero-loop] .hero-description{font-size:14px !important;}
  .hero[data-hero-loop] .hero-actions .btn{min-height:48px !important;font-size:13px !important;padding-inline:16px !important;}
  .hero[data-hero-loop] .hero-proof{gap:10px !important;}
  .hero[data-hero-loop] .hero-proof__item{grid-template-columns:36px minmax(0,1fr) !important;padding:12px !important;}
  .hero[data-hero-loop] .hero-proof__icon{width:36px !important;height:36px !important;}
  .hero[data-hero-loop] .hero-proof__item strong{font-size:11px !important;}
  .hero[data-hero-loop] .hero-proof__item small{font-size:10px !important;}
  .trust-strip .trust-item{padding:18px 14px !important;}
  .trust-strip .trust-item strong{font-size:12px !important;}
  .trust-strip .trust-item small{font-size:10px !important;}
}
@media (max-width:960px){
  .hero[data-hero-loop]{height:auto !important;min-height:0 !important;max-height:none !important;}
  .hero[data-hero-loop] .hero-swiper,
  .hero[data-hero-loop] .swiper-wrapper,
  .hero[data-hero-loop] .swiper-slide{height:auto !important;min-height:0 !important;max-height:none !important;}
  .hero[data-hero-loop] .hero-grid{
    grid-template-columns:1fr !important;
    grid-template-rows:none !important;
    gap:24px !important;
    height:auto !important;
    padding-top:28px !important;
    padding-bottom:72px !important;
  }
  .hero[data-hero-loop] .hero-title{font-size:clamp(34px,8vw,52px) !important;}
  .hero[data-hero-loop] .hero-description{font-size:15px !important;}
  .hero[data-hero-loop] .hero-actions{display:grid !important;grid-template-columns:1fr !important;}
  .hero[data-hero-loop] .hero-actions .btn{width:100% !important;min-height:48px !important;font-size:14px !important;}
  .hero[data-hero-loop] .hero-proof{grid-template-columns:1fr !important;max-width:none !important;}
  .hero[data-hero-loop] .hero-proof__item{grid-template-columns:42px minmax(0,1fr) !important;}
  .hero[data-hero-loop] .hero-media-wrap{aspect-ratio:16/9 !important;transform:none !important;opacity:1 !important;order:2 !important;}
  .hero[data-hero-loop] .hero-slide__image{object-fit:cover !important;}
  .hero[data-hero-loop] .hero-controls{left:20px !important;right:20px !important;justify-content:flex-end !important;}
  .trust-strip{padding:12px 0 18px !important;}
  .trust-strip .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;border-radius:18px !important;}
  .trust-strip .trust-item{min-height:96px !important;border-bottom:1px solid rgba(255,255,255,.13) !important;}
  .trust-strip .trust-item:nth-child(2){border-right:0 !important;}
}
@media (max-width:640px){
  .hero[data-hero-loop] .hero-grid{padding-top:20px !important;padding-bottom:62px !important;gap:18px !important;}
  .hero[data-hero-loop] .hero-eyebrow{font-size:10px !important;min-height:36px !important;}
  .hero[data-hero-loop] .hero-title{font-size:clamp(31px,10vw,42px) !important;line-height:1.02 !important;}
  .hero[data-hero-loop] .hero-description{font-size:14px !important;margin-bottom:18px !important;}
  .hero[data-hero-loop] .hero-proof{grid-template-columns:1fr !important;gap:8px !important;}
  .hero[data-hero-loop] .hero-proof__item{min-height:0 !important;padding:12px !important;}
  .hero[data-hero-loop] .hero-controls{bottom:10px !important;}
  .hero[data-hero-loop] .hero-progress{display:none !important;}
  .trust-strip .trust-grid{grid-template-columns:1fr !important;border-radius:16px !important;}
  .trust-strip .trust-item{border-right:0 !important;}
  .trust-strip .trust-item:not(:last-child){border-bottom:1px solid rgba(255,255,255,.13) !important;}
}

/* =========================================================
   WEBSITEJI ANASAYFA HERO — CLEAN REBUILD
   Bu bölüm eski .hero sınıflarından bağımsızdır.
   ========================================================= */
.wj-home-hero{
    --wj-hero-blue:#1768f2;
    --wj-hero-navy:#071a3d;
    --wj-hero-text:#53647d;
    --wj-hero-line:#e2eaf4;
    position:relative;
    height:var(--wj-hero-height, 680px);
    min-height:560px;
    overflow:hidden;
    background:
      radial-gradient(circle at 2% 18%, rgba(23,104,242,.08) 0 2px, transparent 2.4px) 0 0/18px 18px,
      linear-gradient(180deg,#fff 0%,#f8fbff 100%);
}
.wj-home-hero::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:22%;
    pointer-events:none;
    background:linear-gradient(90deg,rgba(255,255,255,.74),rgba(255,255,255,0));
}
.wj-home-hero__swiper,
.wj-home-hero__swiper .swiper-wrapper,
.wj-home-hero__swiper .swiper-slide{
    width:100%;
    height:100%;
}
.wj-home-slide{
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:transparent;
}
.wj-home-slide__grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
    gap:clamp(34px,4vw,66px);
    align-items:center;
    width:min(calc(100% - 96px), 1360px);
    height:100%;
    padding:28px 0 44px;
}
.wj-home-slide__copy{
    min-width:0;
    max-width:590px;
}
.wj-home-slide__tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    min-height:40px;
    margin-bottom:18px;
    padding:6px 14px 6px 7px;
    border:1px solid #e4eaf3;
    border-radius:999px;
    background:#f5f7fb;
    color:#11213d;
    font-size:12px;
    font-weight:800;
    letter-spacing:.025em;
    text-transform:uppercase;
}
.wj-home-slide__tag-icon{
    width:26px;
    height:26px;
    flex:0 0 26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--wj-hero-blue);
    color:#fff;
}
.wj-home-slide__tag-icon svg{width:16px;height:16px}
.wj-home-slide__title{
    max-width:590px;
    margin:0 0 20px;
    color:var(--wj-hero-navy);
    font-family:var(--font-display);
    font-size:clamp(44px,4.35vw,68px);
    font-weight:800;
    line-height:.99;
    letter-spacing:-.055em;
    text-wrap:balance;
}
h2.wj-home-slide__title{font-family:var(--font-display)}
.wj-home-slide__title span{color:var(--wj-hero-blue)}
.wj-home-slide__lead{
    max-width:560px;
    margin:0 0 26px;
    color:var(--wj-hero-text);
    font-size:clamp(15px,1.15vw,18px);
    line-height:1.62;
}
.wj-home-slide__actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}
.wj-home-btn{
    min-height:54px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:0 21px;
    border:1px solid transparent;
    border-radius:9px;
    font-size:14px;
    font-weight:750;
    line-height:1;
    text-decoration:none;
    white-space:nowrap;
    transition:transform .18s ease,background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
}
.wj-home-btn svg{width:19px;height:19px;flex:0 0 auto}
.wj-home-btn--primary{
    background:var(--wj-hero-blue);
    color:#fff;
    box-shadow:0 10px 24px rgba(23,104,242,.18);
}
.wj-home-btn--primary:hover{background:#0c58dc;color:#fff;transform:translateY(-1px)}
.wj-home-btn--secondary{
    border-color:#b9c8dd;
    background:#fff;
    color:#0c1e40;
}
.wj-home-btn--secondary:hover{border-color:var(--wj-hero-blue);color:var(--wj-hero-blue);transform:translateY(-1px)}
.wj-home-slide__mini-features{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    max-width:590px;
}
.wj-home-mini-feature{
    display:grid;
    grid-template-columns:40px minmax(0,1fr);
    gap:10px;
    align-items:center;
    min-width:0;
}
.wj-home-mini-feature>span{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#eef5ff;
    color:var(--wj-hero-blue);
}
.wj-home-mini-feature svg{width:21px;height:21px}
.wj-home-mini-feature strong,
.wj-home-mini-feature small{display:block}
.wj-home-mini-feature strong{
    margin-bottom:3px;
    color:#10203b;
    font-size:11px;
    line-height:1.25;
}
.wj-home-mini-feature small{
    color:#738198;
    font-size:9.5px;
    line-height:1.3;
}
.wj-home-slide__visual{
    position:relative;
    width:100%;
    max-width:760px;
    aspect-ratio:1000/900;
    justify-self:end;
    overflow:hidden;
    border-radius:30px;
    background:#edf4fc;
}
.wj-home-slide__visual img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.wj-home-slide:first-child .wj-home-slide__visual img{object-position:center center}
.wj-home-hero__arrow{
    position:absolute;
    z-index:6;
    top:50%;
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    padding:0;
    border:0;
    border-radius:50%;
    background:#fff;
    color:#071a3d;
    box-shadow:0 14px 34px rgba(8,29,61,.12);
    cursor:pointer;
    transform:translateY(-50%);
    transition:background-color .18s ease,color .18s ease,transform .18s ease;
}
.wj-home-hero__arrow svg{width:25px;height:25px}
.wj-home-hero__arrow:hover{background:var(--wj-hero-blue);color:#fff;transform:translateY(-50%) scale(1.04)}
.wj-home-hero__arrow--prev{left:22px}
.wj-home-hero__arrow--next{right:22px}
.wj-home-hero__pagination{
    position:absolute !important;
    z-index:6;
    left:50% !important;
    bottom:13px !important;
    width:auto !important;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    transform:translateX(-50%);
}
.wj-home-hero__pagination .swiper-pagination-bullet{
    width:8px;
    height:8px;
    margin:0 !important;
    border-radius:99px;
    background:#b9c4d2;
    opacity:1;
    transition:width .22s ease,background-color .22s ease;
}
.wj-home-hero__pagination .swiper-pagination-bullet-active{
    width:22px;
    background:var(--wj-hero-blue);
}

/* Trust strip hedef görseldeki gibi container içinde kalır. */
.wj-home-trust{
    padding:12px 0 22px;
    background:#f8fbff;
}
.wj-home-trust__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    overflow:hidden;
    border-radius:12px;
    background:linear-gradient(110deg,#061a38 0%,#0a2b58 100%);
    box-shadow:0 18px 42px rgba(4,24,52,.10);
}
.wj-home-trust__item{
    min-height:118px;
    display:grid;
    grid-template-columns:48px minmax(0,1fr);
    gap:15px;
    align-items:center;
    padding:22px 24px;
    border-right:1px solid rgba(255,255,255,.13);
}
.wj-home-trust__item:last-child{border-right:0}
.wj-home-trust__icon{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#114ca0;
    color:#fff;
}
.wj-home-trust__icon svg{width:24px;height:24px}
.wj-home-trust__item strong,
.wj-home-trust__item small{display:block}
.wj-home-trust__item strong{
    margin-bottom:7px;
    color:#fff;
    font-size:14px;
    line-height:1.3;
}
.wj-home-trust__item small{
    color:rgba(255,255,255,.72);
    font-size:11.5px;
    line-height:1.5;
}

@media(max-width:1180px) and (min-width:961px){
    .wj-home-slide__grid{width:min(calc(100% - 76px),1200px);grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);gap:30px}
    .wj-home-slide__title{font-size:clamp(38px,4.1vw,52px)}
    .wj-home-slide__lead{font-size:14px;margin-bottom:20px}
    .wj-home-slide__actions{margin-bottom:21px}
    .wj-home-btn{min-height:48px;padding-inline:16px;font-size:12.5px}
    .wj-home-slide__mini-features{gap:9px}
    .wj-home-mini-feature{grid-template-columns:34px minmax(0,1fr);gap:7px}
    .wj-home-mini-feature>span{width:34px;height:34px}
    .wj-home-mini-feature strong{font-size:9.5px}
    .wj-home-mini-feature small{font-size:8.4px}
    .wj-home-hero__arrow{width:48px;height:48px}
    .wj-home-hero__arrow--prev{left:12px}
    .wj-home-hero__arrow--next{right:12px}
    .wj-home-trust__item{padding:18px 14px;grid-template-columns:42px minmax(0,1fr);gap:10px}
    .wj-home-trust__icon{width:42px;height:42px}
    .wj-home-trust__item strong{font-size:12px}
    .wj-home-trust__item small{font-size:10px}
}

@media(max-width:960px){
    .wj-home-hero{
        height:auto;
        min-height:0;
        overflow:hidden;
    }
    .wj-home-hero__swiper,
    .wj-home-hero__swiper .swiper-wrapper,
    .wj-home-hero__swiper .swiper-slide{height:auto}
    .wj-home-slide{align-items:flex-start}
    .wj-home-slide__grid{
        grid-template-columns:1fr;
        gap:26px;
        width:min(calc(100% - 32px),720px);
        height:auto;
        padding:42px 0 70px;
    }
    .wj-home-slide__copy{max-width:none}
    .wj-home-slide__title{max-width:680px;font-size:clamp(40px,7.3vw,58px)}
    .wj-home-slide__lead{max-width:650px}
    .wj-home-slide__visual{max-width:none;width:100%;aspect-ratio:16/10;justify-self:stretch;border-radius:22px}
    .wj-home-slide__visual img{object-fit:cover}
    .wj-home-slide:first-child .wj-home-slide__visual{aspect-ratio:1.18/1}
    .wj-home-hero__arrow{display:none}
    .wj-home-hero__pagination{bottom:20px !important}
    .wj-home-trust__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .wj-home-trust__item:nth-child(2){border-right:0}
    .wj-home-trust__item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.13)}
}

@media(max-width:640px){
    .wj-home-slide__grid{width:calc(100% - 24px);gap:20px;padding:26px 0 58px}
    .wj-home-slide__tag{min-height:36px;margin-bottom:14px;padding:5px 11px 5px 6px;font-size:9.5px}
    .wj-home-slide__tag-icon{width:24px;height:24px;flex-basis:24px}
    .wj-home-slide__title{margin-bottom:15px;font-size:clamp(33px,10vw,44px);line-height:1.01}
    .wj-home-slide__lead{margin-bottom:19px;font-size:14px;line-height:1.52}
    .wj-home-slide__actions{display:grid;grid-template-columns:1fr;gap:8px;margin-bottom:20px}
    .wj-home-btn{width:100%;min-height:48px;padding-inline:13px;font-size:13px;white-space:normal;text-align:center}
    .wj-home-slide__mini-features{grid-template-columns:1fr;gap:8px}
    .wj-home-mini-feature{grid-template-columns:36px minmax(0,1fr);padding:8px 0}
    .wj-home-mini-feature>span{width:36px;height:36px}
    .wj-home-mini-feature strong{font-size:11px}
    .wj-home-mini-feature small{font-size:9.5px}
    .wj-home-slide__visual,
    .wj-home-slide:first-child .wj-home-slide__visual{aspect-ratio:1.12/1;border-radius:16px}
    .wj-home-hero__pagination{bottom:14px !important}
    .wj-home-trust{padding:10px 0 18px}
    .wj-home-trust__grid{grid-template-columns:1fr;border-radius:10px}
    .wj-home-trust__item{min-height:92px;border-right:0;border-bottom:1px solid rgba(255,255,255,.13);padding:18px}
    .wj-home-trust__item:last-child{border-bottom:0}
}

@media(prefers-reduced-motion:reduce){
    .wj-home-btn,.wj-home-hero__arrow,.wj-home-hero__pagination .swiper-pagination-bullet{transition:none}
}

@media (min-width:961px) and (max-height:820px){
    .wj-home-slide__grid{padding-top:18px;padding-bottom:28px}
    .wj-home-slide__tag{min-height:34px;margin-bottom:11px;font-size:10px;padding:5px 11px 5px 6px}
    .wj-home-slide__tag-icon{width:23px;height:23px;flex-basis:23px}
    .wj-home-slide__title{margin-bottom:12px;font-size:clamp(34px,3.55vw,52px);line-height:1}
    .wj-home-slide__lead{margin-bottom:16px;font-size:13.5px;line-height:1.48}
    .wj-home-slide__actions{margin-bottom:16px}
    .wj-home-btn{min-height:44px;padding-inline:14px;font-size:12px}
    .wj-home-slide__mini-features{gap:8px}
    .wj-home-mini-feature{grid-template-columns:32px minmax(0,1fr);gap:7px}
    .wj-home-mini-feature>span{width:32px;height:32px}
    .wj-home-mini-feature svg{width:17px;height:17px}
    .wj-home-mini-feature strong{font-size:9.5px}
    .wj-home-mini-feature small{font-size:8px}
    .wj-home-trust{padding-top:8px;padding-bottom:14px}
    .wj-home-trust__item{min-height:98px;padding:15px 18px;grid-template-columns:40px minmax(0,1fr);gap:11px}
    .wj-home-trust__icon{width:40px;height:40px}
    .wj-home-trust__item strong{font-size:12px;margin-bottom:4px}
    .wj-home-trust__item small{font-size:9.5px}
}

/* HERO GÖRSEL ORANI — tüm slaytlar 1000x900 */
.wj-home-slide__visual,
.wj-home-slide:first-child .wj-home-slide__visual {
    aspect-ratio: 1000 / 900 !important;
    background: transparent !important;
}
.wj-home-slide__visual img,
.wj-home-slide:first-child .wj-home-slide__visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
@media (max-width: 960px) {
    .wj-home-slide__visual,
    .wj-home-slide:first-child .wj-home-slide__visual {
        aspect-ratio: 1000 / 900 !important;
    }
}
@media (max-width: 640px) {
    .wj-home-slide__visual,
    .wj-home-slide:first-child .wj-home-slide__visual {
        aspect-ratio: 1000 / 900 !important;
    }
}


/* === Homepage refinements: separators, about section, no hero changes === */
.svg-separator{position:relative; z-index:1; line-height:0; margin:-6px 0 0;}
.svg-separator svg{display:block; width:100%; height:56px;}
.svg-separator path{fill:#f6f8fc; stroke:#e6ebf4; stroke-width:1;}
.section.section--surface + .svg-separator path, .wj-home-trust + .svg-separator path, #blog + .svg-separator path{fill:#ffffff;}

.products-home{padding-top:56px; padding-bottom:64px;}
.products-home .section-head{margin-bottom:24px;}
.products-home .service-card,
.products-home .service-image img,
.blog-card, .blog-image-wrap, .blog-image,
.faq-item, .contact-form, .contact-item, .about-products__media img{border-radius:0 !important;}
.products-home .service-card{border:1px solid #e5eaf2; box-shadow:none;}
.products-home .service-content{padding:20px 20px 18px;}
.products-home .service-content h3{font-size:28px; line-height:1.12;}
.products-home .service-content p{font-size:15px;}
.products-home .service-category{letter-spacing:.08em; text-transform:uppercase;}

.about-products{padding-top:48px; padding-bottom:54px; background:#fff;}
.about-products__grid{display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); gap:32px; align-items:center;}
.about-products__copy{max-width:560px;}
.about-products__copy .section-title{margin-bottom:16px;}
.about-products__copy .section-intro{margin-bottom:18px;}
.about-products__list{display:grid; grid-template-columns:1fr 1fr; gap:12px 16px; padding:0; margin:0; list-style:none;}
.about-products__list li{position:relative; padding-left:18px; color:#23314d; font-size:15px; line-height:1.55;}
.about-products__list li::before{content:""; position:absolute; left:0; top:10px; width:6px; height:6px; background:#1f63f3;}
.about-products__media img{display:block; width:100%; height:auto; border:1px solid #e5eaf2;}

#blog{padding-top:54px; padding-bottom:56px;}
#blog .section-head{margin-bottom:24px;}
#blog .blog-grid{gap:22px;}
#blog .blog-card{border:1px solid #e5eaf2; box-shadow:none;}
#blog .blog-content{padding:18px 18px 20px;}
#blog .blog-content h3{font-size:28px; line-height:1.12;}
#blog .blog-content p{font-size:15px;}

#sss{padding-top:54px; padding-bottom:48px;}
#sss .faq-grid{display:grid; grid-template-columns:380px minmax(0,1fr); gap:28px; align-items:start;}
#sss .faq-item{border:1px solid #e5eaf2; box-shadow:none; margin-bottom:12px;}
#sss .faq-question{font-size:16px;}

.contact{margin-top:0;}
.contact::before{display:none;}
.contact-grid{padding-top:54px; padding-bottom:54px;}

@media (max-width: 1024px){
  .about-products__grid{grid-template-columns:1fr; gap:22px;}
  #sss .faq-grid{grid-template-columns:1fr; gap:20px;}
}
@media (max-width: 768px){
  .svg-separator svg{height:34px;}
  .products-home, #blog, #sss, .about-products{padding-top:40px; padding-bottom:40px;}
  .about-products__list{grid-template-columns:1fr;}
  .products-home .service-content h3, #blog .blog-content h3{font-size:22px;}
}
\n\n/* =========================================================\n   Homepage compact content system - HERO IS UNTOUCHED\n   Removes eyebrow/kicker pattern, reduces oversized spacing/type.\n   ========================================================= */\nmain .section:not(.wj-home-hero){padding-top:38px;padding-bottom:38px;}\nmain .section-head{margin-bottom:18px;}\nmain .section-head--compact{gap:12px;}\nmain .section-head--center{display:block;text-align:center;}\nmain .section-head--center .section-head__copy{max-width:720px;margin:0 auto;}\nmain .section-title{font-size:clamp(26px,2.25vw,34px);line-height:1.14;letter-spacing:-.025em;margin-bottom:8px;}\nmain .section-intro{font-size:14px;line-height:1.55;max-width:680px;}\nmain .section-kicker{display:none!important;}\n\n.svg-separator{margin:0;height:28px;overflow:hidden;line-height:0;}\n.svg-separator svg{height:28px;width:100%;display:block;}\n.svg-separator path{fill:#f8fafe;stroke:#e2e8f2;stroke-width:1;}\n\n.products-home{padding-top:34px!important;padding-bottom:38px!important;}\n.products-home .section-head{margin-bottom:18px!important;}\n.products-home .services-swiper{padding:0!important;overflow:hidden;}\n.products-home .service-card{min-height:0!important;border:1px solid #e4e9f1!important;background:#fff;box-shadow:none!important;border-radius:0!important;}\n.products-home .service-image{height:auto!important;aspect-ratio:16/9;overflow:hidden;}\n.products-home .service-image img{width:100%;height:100%;object-fit:cover;border-radius:0!important;}\n.products-home .service-content{padding:13px 14px 14px!important;}\n.products-home .service-content h3{font-size:18px!important;line-height:1.2!important;margin:0 0 7px!important;}\n.products-home .service-content p{font-size:12.5px!important;line-height:1.48!important;margin-bottom:12px!important;min-height:56px;}\n.products-home .text-link{font-size:12.5px!important;font-weight:700;}\n.products-home .services-slider-controls{display:none!important;}\n.products-all-button{display:flex!important;width:max-content;margin:16px auto 0;min-height:42px!important;padding:0 18px!important;font-size:13px!important;border-radius:0!important;}\n\n.about-products{padding-top:36px!important;padding-bottom:36px!important;}\n.about-products__grid{gap:26px!important;}\n.about-products__copy{max-width:540px!important;}\n.about-products__copy .section-title{font-size:clamp(26px,2.1vw,32px)!important;margin-bottom:9px!important;}\n.about-products__copy .section-intro{font-size:13.5px!important;line-height:1.55!important;margin-bottom:14px!important;}\n.about-products__list{gap:8px 16px!important;}\n.about-products__list li{font-size:12.5px!important;line-height:1.45!important;padding-left:14px!important;}\n.about-products__list li::before{top:7px!important;width:5px!important;height:5px!important;}\n.about-products__media img{border-radius:0!important;}\n\n#blog{padding-top:36px!important;padding-bottom:36px!important;}\n#blog .section-head{margin-bottom:17px!important;}\n#blog .blog-grid{gap:14px!important;}\n#blog .blog-card{border-radius:0!important;box-shadow:none!important;border:1px solid #e4e9f1!important;}\n#blog .blog-image-wrap{aspect-ratio:16/7;overflow:hidden;border-radius:0!important;}\n#blog .blog-image{height:100%!important;width:100%!important;object-fit:cover;border-radius:0!important;}\n#blog .blog-content{padding:12px 13px 14px!important;}\n#blog .blog-date{font-size:10.5px!important;}\n#blog .blog-content h3{font-size:17px!important;line-height:1.25!important;margin:6px 0 7px!important;}\n#blog .blog-content p{font-size:12px!important;line-height:1.5!important;margin-bottom:10px!important;}\n#blog .text-link{font-size:12px!important;}\n\n#sss{padding-top:34px!important;padding-bottom:34px!important;}\n#sss .faq-layout-compact{display:block!important;}\n#sss .faq-head{text-align:left;margin-bottom:14px;}\n#sss .faq-head .section-title{margin:0 0 5px!important;}\n#sss .faq-head .section-intro{margin:0!important;}\n#sss .faq-list--two-column{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 12px!important;}\n#sss .faq-item{margin:0!important;border:1px solid #e3e8f0!important;border-radius:0!important;box-shadow:none!important;background:#fff;}\n#sss .faq-question{min-height:44px!important;padding:10px 13px!important;font-size:13px!important;line-height:1.35!important;}\n#sss .faq-answer>div{padding:0 13px 12px!important;}\n#sss .faq-answer p{font-size:12px!important;line-height:1.5!important;}\n\n.contact{margin-top:0!important;}\n.contact-grid{padding-top:38px!important;padding-bottom:38px!important;gap:30px!important;}\n.contact .section-title{font-size:clamp(26px,2.2vw,34px)!important;}\n.contact .section-intro{font-size:13.5px!important;}\n.contact-form{padding:20px!important;border-radius:0!important;}\n.contact-item{border-radius:0!important;}\n\n@media(max-width:960px){\n  main .section:not(.wj-home-hero){padding-top:32px;padding-bottom:32px;}\n  .about-products__grid{gap:18px!important;}\n  #sss .faq-list--two-column{grid-template-columns:1fr!important;}\n}\n@media(max-width:640px){\n  main .section:not(.wj-home-hero){padding-top:28px;padding-bottom:28px;}\n  main .section-title{font-size:25px!important;}\n  main .section-intro{font-size:13px!important;}\n  .svg-separator,.svg-separator svg{height:20px;}\n  .products-home .service-content p{min-height:0;}\n  #blog .blog-image-wrap{aspect-ratio:16/8;}\n}\n

/* =========================================================
   HOMEPAGE AFTER-HERO REBUILD — hero/trust untouched
   ========================================================= */
.home-products,.home-about,.home-blog,.home-faq{position:relative;padding:54px 0;}
.home-products,.home-faq{background-color:#f7f9fc;}
.home-about,.home-blog{background:#fff;}
.home-grid-bg{background-image:linear-gradient(rgba(10,43,84,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(10,43,84,.045) 1px,transparent 1px);background-size:38px 38px;}
.home-section-head{margin-bottom:24px;}
.home-section-head--center{text-align:center;max-width:760px;margin-left:auto;margin-right:auto;}
.home-section-head--row{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;}
.home-section-head h2,.home-about h2,.home-contact-cta h2{margin:0 0 8px;color:#071a3d;font-family:var(--font-display);font-size:clamp(30px,2.5vw,40px);line-height:1.08;letter-spacing:-.035em;}
.home-section-head p,.home-about p,.home-contact-cta p{margin:0;color:#627087;font-size:15px;line-height:1.65;}
.home-section-head a,.home-inline-link{color:#1768f2;font-size:13px;font-weight:750;text-decoration:none;white-space:nowrap;}
.home-section-action{text-align:center;margin-top:22px;}
.home-section-action .btn{min-height:44px;padding:0 18px;font-size:13px;border-radius:0;}

.home-product-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;}
.home-product-card{display:flex;min-width:0;flex-direction:column;background:#fff;border:1px solid #e2e8f1;color:inherit;text-decoration:none;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;}
.home-product-card:hover{transform:translateY(-3px);border-color:#b9cae6;box-shadow:0 14px 28px rgba(8,29,61,.07);}
.home-product-card img{display:block;width:100%;aspect-ratio:12/7;object-fit:cover;border-radius:0;}
.home-product-card__body{display:flex;flex:1;flex-direction:column;padding:16px;}
.home-product-card h3{margin:0 0 8px;color:#0b1d3a;font-size:19px;line-height:1.15;letter-spacing:-.015em;}
.home-product-card p{margin:0 0 16px;color:#5f6e84;font-size:13px;line-height:1.55;}
.home-product-card span{margin-top:auto;color:#1768f2;font-size:12px;font-weight:750;}

.home-about__grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);gap:38px;align-items:center;}
.home-about__copy{max-width:560px;}
.home-about__features{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 18px;margin:20px 0 18px;}
.home-about__features span{position:relative;padding-left:16px;color:#24344e;font-size:13px;line-height:1.4;}
.home-about__features span::before{content:"";position:absolute;left:0;top:6px;width:6px;height:6px;background:#1768f2;}
.home-about__media img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;border:1px solid #e2e8f1;border-radius:0;}

.home-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.home-blog-card{background:#fff;border:1px solid #e2e8f1;}
.home-blog-card>a{display:block;overflow:hidden;}
.home-blog-card img{display:block;width:100%;aspect-ratio:16/8.5;object-fit:cover;border-radius:0;transition:transform .25s ease;}
.home-blog-card:hover img{transform:scale(1.02);}
.home-blog-card__body{padding:16px;}
.home-blog-card time{display:block;margin-bottom:7px;color:#8a96a8;font-size:11px;}
.home-blog-card h3{margin:0 0 8px;font-size:18px;line-height:1.25;letter-spacing:-.015em;}
.home-blog-card h3 a{color:#0b1d3a;text-decoration:none;}
.home-blog-card p{margin:0 0 13px;color:#637187;font-size:13px;line-height:1.55;}

.home-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px;}
.home-faq-item{background:#fff;border:1px solid #e2e8f1;}
.home-faq-item h3{margin:0;}
.home-faq-item button{width:100%;min-height:54px;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:0 16px;border:0;background:transparent;color:#12223f;font-family:inherit;font-size:13px;font-weight:700;text-align:left;cursor:pointer;}
.home-faq-item button span{color:#1768f2;font-size:20px;font-weight:400;}
.home-faq-answer{display:none;padding:0 16px 15px;}
.home-faq-answer p{margin:0;color:#637187;font-size:13px;line-height:1.55;}
.home-faq-item.is-open .home-faq-answer{display:block;}

.home-contact-cta{padding:0 0 34px;background:#f7f9fc;}
.home-contact-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:26px;padding:26px 30px;background:#061a38;color:#fff;}
.home-contact-cta h2{color:#fff;font-size:27px;margin-bottom:5px;}
.home-contact-cta p{color:rgba(255,255,255,.68);font-size:13px;}
.home-contact-cta .btn{flex:0 0 auto;min-height:44px;padding:0 18px;border-radius:0;}

.wj-section-separator{height:30px;line-height:0;background:#fff;overflow:hidden;}
.wj-section-separator svg{display:block;width:100%;height:30px;}
.wj-section-separator path{fill:none;stroke:#dfe6f0;stroke-width:1.2;vector-effect:non-scaling-stroke;}
.wj-section-separator--reverse{background:#f7f9fc;}

/* Remove old post-hero sections if any browser cache/style persists */
.products-home,.about-products,#blog.section,#sss.section,.contact{ }

/* footer: remove the oversized extra CTA and reduce vertical mass */
.footer .footer-cta{display:none!important;}
.footer-main{padding-top:42px!important;padding-bottom:24px!important;}
.footer-grid{gap:28px!important;}
.footer-bottom{margin-top:30px!important;padding-top:20px!important;}

@media(max-width:1180px){
  .home-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media(max-width:900px){
  .home-products,.home-about,.home-blog,.home-faq{padding:44px 0;}
  .home-about__grid{grid-template-columns:1fr;gap:24px;}
  .home-blog-grid{grid-template-columns:1fr 1fr;}
  .home-faq-grid{grid-template-columns:1fr;}
  .home-section-head--row{align-items:flex-start;flex-direction:column;gap:8px;}
}
@media(max-width:640px){
  .home-products,.home-about,.home-blog,.home-faq{padding:34px 0;}
  .home-grid-bg{background-size:30px 30px;}
  .home-section-head h2,.home-about h2{font-size:29px;}
  .home-product-grid{grid-template-columns:1fr 1fr;gap:10px;}
  .home-product-card__body{padding:13px;}
  .home-product-card h3{font-size:16px;}
  .home-product-card p{font-size:12px;}
  .home-about__features{grid-template-columns:1fr;}
  .home-blog-grid{grid-template-columns:1fr;}
  .home-contact-cta{padding-bottom:20px;}
  .home-contact-cta__inner{align-items:flex-start;flex-direction:column;padding:22px;}
  .home-contact-cta .btn{width:100%;}
  .wj-section-separator,.wj-section-separator svg{height:22px;}
}


/* =========================================================
   HOMEPAGE STRICT MEDIA SIZES v1
   Hero selectors intentionally untouched.
   All content images use one controlled 16:9 crop.
   ========================================================= */
@media (min-width:1181px){
  .home-product-card img{height:142px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center!important;}
  .home-blog-card img{height:188px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center!important;}
  .home-about__media img{height:310px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center!important;}
}
@media (min-width:901px) and (max-width:1180px){
  .home-product-card img{height:180px!important;aspect-ratio:auto!important;object-fit:cover!important;}
  .home-blog-card img{height:180px!important;aspect-ratio:auto!important;object-fit:cover!important;}
  .home-about__media img{height:300px!important;aspect-ratio:auto!important;object-fit:cover!important;}
}
@media (min-width:641px) and (max-width:900px){
  .home-product-card img{height:170px!important;aspect-ratio:auto!important;object-fit:cover!important;}
  .home-blog-card img{height:180px!important;aspect-ratio:auto!important;object-fit:cover!important;}
  .home-about__media img{height:280px!important;aspect-ratio:auto!important;object-fit:cover!important;}
}
@media (max-width:640px){
  .home-product-card img{height:108px!important;aspect-ratio:auto!important;object-fit:cover!important;}
  .home-blog-card img{height:176px!important;aspect-ratio:auto!important;object-fit:cover!important;}
  .home-about__media img{height:210px!important;aspect-ratio:auto!important;object-fit:cover!important;}
}


/* =========================================================
   PRODUCT SECTION FINAL v2
   Hero/trust selectors are intentionally untouched.
   One 1200x675 placeholder cover is shared by all cards for now.
   ========================================================= */
.home-products{
  padding:48px 0 54px !important;
  background-color:#f7f9fc;
}
.home-products__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:22px;
}
.home-products__head > div{max-width:720px;}
.home-products__head h2{
  margin:0 0 8px;
  color:#071a3d;
  font-family:var(--font-display);
  font-size:clamp(30px,2.55vw,42px);
  line-height:1.06;
  letter-spacing:-.04em;
}
.home-products__head p{
  margin:0;
  color:#66748a;
  font-size:15px;
  line-height:1.58;
}
.home-products__all{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:0 18px;
  border:1px solid #b8c6db;
  background:#fff;
  color:#0b1d3a;
  font-size:13px;
  font-weight:750;
  text-decoration:none;
  transition:border-color .18s ease,color .18s ease,background-color .18s ease;
}
.home-products__all:hover{border-color:#1768f2;color:#1768f2;background:#f9fbff;}

.home-product-grid--final{
  display:flex;
  flex-wrap:nowrap;
  gap:18px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:2px 2px 14px;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:#b8c6db #eef3f9;
}
.home-product-grid--final::-webkit-scrollbar{height:10px;}
.home-product-grid--final::-webkit-scrollbar-track{background:#eef3f9;}
.home-product-grid--final::-webkit-scrollbar-thumb{background:#b8c6db;border-radius:0;}
.home-product-card--final{
  flex:0 0 286px;
  min-width:286px;
  min-height:402px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #dfe6f0;
  background:#fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(8,29,61,.035);
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
  scroll-snap-align:start;
}
.home-product-card--final:hover{
  transform:translateY(-2px);
  border-color:#b9cae6;
  box-shadow:0 12px 26px rgba(8,29,61,.07);
}
.home-product-card__cover{
  display:block;
  width:100%;
  height:176px;
  overflow:hidden;
  background:#dce6f3;
  text-decoration:none;
}
.home-product-card__cover img{
  display:block;
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  border-radius:0 !important;
  transition:transform .3s ease;
}
.home-product-card--final:hover .home-product-card__cover img{transform:scale(1.025);}
.home-product-card--final .home-product-card__body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:18px 18px 17px;
}
.home-product-card--final h3{
  margin:0 0 9px;
  color:#0b1d3a;
  font-size:20px;
  line-height:1.16;
  letter-spacing:-.02em;
}
.home-product-card--final p{
  margin:0 0 18px;
  color:#637187;
  font-size:14px;
  line-height:1.58;
}
.home-product-card__button{
  width:100%;
  min-height:42px;
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:0 13px;
  border:1px solid #cbd6e5;
  background:#fff;
  color:#0b1d3a !important;
  font-size:12.5px !important;
  font-weight:750 !important;
  text-decoration:none;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease;
}
.home-product-card__button:hover{
  border-color:#1768f2;
  background:#1768f2;
  color:#fff !important;
}
.home-product-card__button span{margin:0 !important;color:inherit !important;font-size:15px !important;}

@media(max-width:1180px){
  .home-product-card--final{flex-basis:272px;min-width:272px;min-height:392px;}
  .home-product-card__cover{height:168px;}
}
@media(max-width:760px){
  .home-products{padding:38px 0 42px !important;}
  .home-products__head{align-items:flex-start;flex-direction:column;gap:14px;margin-bottom:18px;}
  .home-products__all{min-height:40px;}
  .home-product-grid--final{gap:12px;padding-bottom:12px;}
  .home-product-card--final{flex-basis:78vw;min-width:78vw;min-height:0;}
  .home-product-card__cover{height:156px;}
  .home-product-card--final .home-product-card__body{padding:14px;}
  .home-product-card--final h3{font-size:18px;}
  .home-product-card--final p{font-size:12.5px;margin-bottom:14px;}
}
@media(max-width:440px){
  .home-product-card--final{flex-basis:84vw;min-width:84vw;}
  .home-product-card__cover{height:164px;}
}

  .home-product-card__cover{height:190px;}
}


/* =========================================================
   HOME PRODUCTS HORIZONTAL SLIDER v2
   Hero untouched. Product cards are larger and stay on one horizontal row.
   ========================================================= */
.home-products{overflow:hidden;}
.home-products__actions{display:flex;align-items:center;gap:10px;flex:0 0 auto;}
.home-products__nav{display:flex;align-items:center;gap:7px;}
.home-products__arrow{
  width:42px;height:42px;display:grid;place-items:center;padding:0;
  border:1px solid #bdc9da;background:#fff;color:#0b1d3a;cursor:pointer;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,opacity .18s ease;
}
.home-products__arrow svg{width:19px;height:19px;}
.home-products__arrow:hover{background:#1768f2;border-color:#1768f2;color:#fff;}
.home-products__arrow.swiper-button-disabled{opacity:.35;cursor:default;}

.home-products-swiper{
  width:100%;overflow:visible!important;padding:2px 0 8px!important;
}
.home-products-swiper .swiper-wrapper{display:flex!important;align-items:stretch!important;}
.home-products-swiper .swiper-slide{height:auto!important;}
.home-product-grid--final{display:block!important;}
.home-product-card--final{
  min-height:410px!important;
  border:1px solid #d9e1ec!important;
  box-shadow:0 8px 24px rgba(8,29,61,.045)!important;
}
.home-product-card__cover{height:190px!important;}
.home-product-card--final .home-product-card__body{padding:20px 20px 18px!important;}
.home-product-card--final h3{font-size:21px!important;line-height:1.16!important;margin-bottom:9px!important;}
.home-product-card--final p{font-size:13.5px!important;line-height:1.55!important;margin-bottom:20px!important;}
.home-product-card__button{min-height:44px!important;padding:0 14px!important;font-size:12.5px!important;}

@media (min-width:1440px){
  .home-product-card__cover{height:205px!important;}
  .home-product-card--final{min-height:430px!important;}
}
@media (max-width:900px){
  .home-products__head{align-items:flex-start!important;}
  .home-products__actions{gap:8px;}
  .home-products__arrow{width:40px;height:40px;}
  .home-product-card__cover{height:175px!important;}
  .home-product-card--final{min-height:390px!important;}
}
@media (max-width:640px){
  .home-products__head{display:flex!important;flex-direction:column!important;gap:14px!important;}
  .home-products__actions{width:100%;justify-content:space-between;}
  .home-product-card__cover{height:180px!important;}
  .home-product-card--final{min-height:385px!important;}
  .home-product-card--final .home-product-card__body{padding:17px!important;}
  .home-product-card--final h3{font-size:19px!important;}
  .home-product-card--final p{font-size:13px!important;}
}

/* =========================================================
   Websiteji homepage premium content — HERO IS UNTOUCHED
   Everything below is scoped to the sections after the hero.
   ========================================================= */
.premium-products,
.premium-benefits,
.premium-faq,
.premium-contact-cta {
    position: relative;
}

.premium-products {
    padding: 76px 0 84px;
    background: #fff;
    border-bottom: 1px solid #e8edf4;
    overflow: hidden;
}

.premium-products::before {
    content: none;
}

.premium-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.premium-section-head--products {
    margin-bottom: 42px;
}

.premium-section-head__copy {
    max-width: 700px;
}

.premium-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
}

.premium-section-head h2,
.premium-benefits h2,
.premium-faq h2,
.premium-contact-cta h2 {
    margin: 0;
    color: #0b1f42;
    letter-spacing: -.035em;
}

.premium-section-head h2,
.premium-benefits h2,
.premium-faq h2 {
    font-size: clamp(30px, 2.3vw, 44px);
    line-height: 1.08;
    font-weight: 820;
}

.premium-section-head p {
    margin: 12px 0 0;
    max-width: 700px;
    color: #68768a;
    font-size: 16px;
    line-height: 1.55;
}

.premium-products__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
    padding-bottom: 1px;
}

.premium-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #075cf6;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: color .18s ease;
}

.premium-text-link:hover {
    color: #0347b8;
}

.premium-products__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-products__arrow {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #d9e1ec;
    border-radius: 0;
    background: #fff;
    color: #17345f;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.premium-products__arrow svg {
    width: 18px;
    height: 18px;
}

.premium-products__arrow:hover {
    border-color: #0b2348;
    color: #fff;
    background: #0b2348;
}

.premium-products__arrow.swiper-button-disabled {
    opacity: .35;
    cursor: default;
    background: #fff;
    color: #17345f;
    border-color: #d9e1ec;
}

.premium-products__slider {
    overflow: visible;
}

.premium-products__slider .swiper-wrapper {
    align-items: stretch;
}

.premium-product-card {
    width: clamp(340px, 22vw, 420px) !important;
    flex: 0 0 clamp(340px, 22vw, 420px);
    height: auto !important;
    min-width: 0;
    background: #fff;
    border: 1px solid #e0e6ef;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.premium-product-card:hover {
    border-color: #a8bddb;
    box-shadow: 0 12px 30px rgba(9, 32, 70, .07);
}

.premium-product-card__visual {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #edf2f8;
    border-bottom: 1px solid #e4eaf2;
    border-radius: 0;
}

.premium-product-card__visual::after {
    content: none;
}

.premium-product-card__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.premium-product-card:hover .premium-product-card__visual img {
    transform: none;
}

.premium-product-card__body {
    padding: 24px;
    display: block;
}

.premium-product-card h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 1.25vw, 23px);
    line-height: 1.25;
    letter-spacing: -.02em;
    color: #0b2348;
    font-weight: 700;
}

.premium-product-card p {
    margin: 0 0 20px;
    max-width: 34ch;
    color: #66758b;
    font-size: 15.5px;
    line-height: 1.55;
}

.premium-product-card__button {
    min-height: 44px;
    width: auto;
    min-width: 168px;
    padding: 0 16px;
    border: 1px solid #0b2348;
    border-radius: 0;
    background: #fff;
    color: #0b2348;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    line-height: 1;
    font-weight: 760;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.premium-product-card__button:hover {
    background: #0b2348;
    border-color: #0b2348;
    color: #fff;
}

.premium-benefits {
    padding: 96px 0;
    background: #fff;
    border-bottom: 1px solid #e9eef5;
}

.premium-benefits__grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(56px, 7vw, 104px);
    align-items: center;
}

.premium-benefits__copy {
    max-width: 540px;
}

.premium-benefits h2 {
    margin-bottom: 18px;
}

.premium-benefits__lead {
    margin: 0;
    color: #627086;
    font-size: 15px;
    line-height: 1.72;
}

.premium-benefits__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    margin-top: 27px;
}

.premium-benefits__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #243957;
    font-size: 14px;
    line-height: 1.35;
}

.premium-benefits__list li span {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #075cf6;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.premium-benefits__list strong {
    font-weight: 700;
}

.premium-primary-link {
    margin-top: 30px;
    min-height: 43px;
    padding: 0 18px;
    border: 1px solid #075cf6;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #075cf6;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(7, 92, 246, .14);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, gap .2s ease;
}

.premium-primary-link:hover {
    background: #034fda;
    border-color: #034fda;
    gap: 11px;
    box-shadow: 0 13px 28px rgba(7, 92, 246, .22);
}

.premium-benefits__media {
    position: relative;
    border: 1px solid #dce4ee;
    border-radius: 4px;
    overflow: hidden;
    background: #eef2f7;
    box-shadow: 0 20px 50px rgba(17, 46, 86, .095);
}

.premium-benefits__media::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.55);
    pointer-events: none;
    z-index: 1;
}

.premium-benefits__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.premium-faq {
    padding: 86px 0 92px;
    background:
        linear-gradient(180deg, #f8faff 0%, #fbfcff 100%);
    border-bottom: 1px solid #dfe6f0;
}

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

.premium-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.premium-faq__item {
    margin: 0;
    border: 1px solid #dfe6f0;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.premium-faq__item:hover,
.premium-faq__item.is-open {
    border-color: #bdcce0;
    box-shadow: 0 8px 24px rgba(18, 46, 84, .055);
}

.premium-faq__item h3 {
    margin: 0;
}

.premium-faq__item button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #172b4a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 760;
}

.premium-faq__item button span {
    color: #075cf6;
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
}

.premium-faq__item .home-faq-answer {
    padding: 0 18px 17px;
    color: #68778d;
    font-size: 13px;
    line-height: 1.65;
}

.premium-faq__item .home-faq-answer p {
    margin: 0;
}

.premium-contact-cta {
    background: #071d3d;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.premium-contact-cta__inner {
    min-height: 124px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.premium-contact-cta__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7, 92, 246, .26);
    border: 1px solid rgba(87, 147, 255, .35);
}

.premium-contact-cta__icon svg {
    width: 25px;
    height: 25px;
}

.premium-contact-cta__copy h2 {
    margin-bottom: 5px;
    color: #fff;
    font-size: clamp(21px, 2vw, 29px);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.premium-contact-cta__copy p {
    margin: 0;
    color: #aebfd8;
    font-size: 13px;
    line-height: 1.55;
}

.premium-contact-cta__button {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0b1f42;
    background: #fff;
    font-size: 13px;
    font-weight: 820;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, gap .2s ease;
}

.premium-contact-cta__button:hover {
    color: #075cf6;
    background: #f3f7ff;
    gap: 11px;
}

/* Footer refinement: only footer, hero remains untouched */
.footer {
    background: #06182f;
}

.footer-main {
    padding-top: 50px;
    padding-bottom: 28px;
}

.footer-grid--legal {
    column-gap: clamp(32px, 4vw, 68px);
}

.footer-column h3,
.footer-brand p,
.footer-column a,
.footer-domain,
.footer-contact address a {
    letter-spacing: 0;
}

.footer-bottom {
    border-top-color: rgba(255,255,255,.1);
}

@media (max-width: 980px) {
    .premium-products {
        padding: 64px 0 72px;
    }

    .premium-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .premium-products__actions {
        width: 100%;
        justify-content: space-between;
        gap: 18px;
        padding-bottom: 0;
    }

    .premium-benefits {
        padding: 76px 0;
    }

    .premium-benefits__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .premium-benefits__copy {
        max-width: 700px;
    }

    .premium-benefits__media {
        order: -1;
    }

    .premium-contact-cta__inner {
        grid-template-columns: auto 1fr;
    }

    .premium-contact-cta__button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 1024px) and (min-width: 721px) {
    .premium-product-card {
        width: clamp(330px, 40vw, 360px) !important;
        flex-basis: clamp(330px, 40vw, 360px);
    }
}

@media (max-width: 720px) {
    .premium-products {
        padding: 52px 0 62px;
    }

    .premium-section-head h2,
    .premium-benefits h2,
    .premium-faq h2 {
        font-size: clamp(28px, 8vw, 32px);
    }

    .premium-products__nav {
        display: none;
    }

    .premium-product-card {
        width: min(84vw, 340px) !important;
        flex-basis: min(84vw, 340px);
    }

    .premium-product-card__body {
        padding: 20px;
    }

    .premium-product-card h3 {
        font-size: 20px;
    }

    .premium-product-card p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .premium-product-card__button {
        min-width: 164px;
    }

    .premium-benefits {
        padding: 64px 0;
    }

    .premium-benefits__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .premium-faq {
        padding: 62px 0 68px;
    }

    .premium-faq__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .premium-contact-cta__inner {
        min-height: 0;
        padding-top: 30px;
        padding-bottom: 30px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-contact-cta__icon {
        width: 48px;
        height: 48px;
    }

    .premium-contact-cta__button {
        grid-column: 1;
        justify-self: stretch;
    }
}


/* =========================================================
   WEBSITEJI HOMEPAGE CONTENT FLOW v3 — 2026-08-17
   Scope: content after hero/trust only. Header, hero and footer untouched.
   ========================================================= */
.wj-content-flow{
  --wj-ink:#071a3d;
  --wj-copy:#66748a;
  --wj-line:#dfe6f0;
  --wj-soft:#f6f8fc;
  --wj-blue:#075cf6;
  position:relative;
  background:#fff;
}
.wj-content-flow h2,
.wj-content-flow h3{font-family:var(--font-display);}
.wj-content-eyebrow{
  display:inline-flex;align-items:center;gap:10px;margin-bottom:12px;
  color:var(--wj-blue);font-size:11px;font-weight:850;letter-spacing:.16em;text-transform:uppercase;
}
.wj-content-eyebrow::before{content:"";width:28px;height:1px;background:currentColor;}
.wj-content-head{max-width:760px;margin-bottom:32px;}
.wj-content-head--row{max-width:none;display:flex;align-items:flex-end;justify-content:space-between;gap:32px;}
.wj-content-head__copy{max-width:760px;}
.wj-content-head h2,
.wj-product-philosophy h2,
.wj-process h2{
  margin:0 0 12px;color:var(--wj-ink);font-size:clamp(30px,3vw,46px);line-height:1.06;letter-spacing:-.04em;font-weight:760;
}
.wj-content-head p{margin:0;max-width:670px;color:var(--wj-copy);font-size:15px;line-height:1.68;}
.wj-text-link{
  flex:0 0 auto;display:inline-flex;align-items:center;gap:12px;color:#17345f;font-size:13px;font-weight:800;
  border-bottom:1px solid #a9b8cb;padding:0 0 6px;transition:color .18s ease,border-color .18s ease,gap .18s ease;
}
.wj-text-link:hover{color:var(--wj-blue);border-color:var(--wj-blue);gap:15px;}

.wj-showcase-products{padding:76px 0 82px;background:linear-gradient(180deg,#f7f9fc 0%,#fbfcfe 100%);overflow:hidden;border-bottom:1px solid var(--wj-line);}
.wj-products-tools{display:flex;align-items:center;gap:20px;}
.wj-products-nav{display:flex;align-items:center;gap:7px;}
.wj-content-flow .home-products__arrow{
  position:static!important;display:grid!important;place-items:center!important;width:42px!important;height:42px!important;margin:0!important;
  border:1px solid #cbd6e5!important;border-radius:0!important;background:#fff!important;color:#17345f!important;cursor:pointer;
  transition:background .18s ease,color .18s ease,border-color .18s ease!important;
}
.wj-content-flow .home-products__arrow svg{width:18px;height:18px;}
.wj-content-flow .home-products__arrow:hover{background:#0b2348!important;border-color:#0b2348!important;color:#fff!important;}
.wj-content-flow .home-products__arrow.swiper-button-disabled{opacity:.35;cursor:default;}
.wj-product-swiper{overflow:visible;}
.wj-product-swiper .swiper-wrapper{align-items:stretch;}
.wj-product-card{
  width:clamp(325px,27vw,370px)!important;height:auto!important;display:flex;flex-direction:column;background:#fff;border:1px solid var(--wj-line);
  border-radius:0!important;overflow:hidden;box-shadow:none;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.wj-product-card:hover{transform:translateY(-3px);border-color:#b7c8df;box-shadow:0 16px 34px rgba(10,34,71,.075);}
.wj-product-card__media{display:block;aspect-ratio:16/9;overflow:hidden;background:#eaf0f7;border-bottom:1px solid var(--wj-line);}
.wj-product-card__media img{width:100%;height:100%;object-fit:cover;border-radius:0!important;transition:transform .28s ease;}
.wj-product-card:hover .wj-product-card__media img{transform:scale(1.02);}
.wj-product-card__body{padding:22px 22px 20px;display:flex;flex:1;flex-direction:column;}
.wj-product-card__type{margin-bottom:9px;color:var(--wj-blue);font-size:9.5px;font-weight:850;letter-spacing:.13em;}
.wj-product-card h3{margin:0 0 9px;color:var(--wj-ink);font-size:21px;line-height:1.18;letter-spacing:-.025em;font-weight:750;}
.wj-product-card p{margin:0 0 22px;color:var(--wj-copy);font-size:13.5px;line-height:1.6;}
.wj-product-card__cta{
  margin-top:auto;min-height:44px;padding:0 14px;display:flex;align-items:center;justify-content:space-between;gap:12px;
  border:1px solid #c8d3e1;background:#fff;color:#122a4d;font-size:12.5px;font-weight:800;transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.wj-product-card__cta:hover{background:#0b2348;border-color:#0b2348;color:#fff;}

.wj-product-philosophy{padding:88px 0;background:#fff;border-bottom:1px solid var(--wj-line);}
.wj-product-philosophy__grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);gap:clamp(54px,6vw,88px);align-items:center;}
.wj-product-philosophy__media{position:relative;border:1px solid #d9e2ee;background:#edf2f7;overflow:hidden;}
.wj-product-philosophy__media img{width:100%;aspect-ratio:16/10;object-fit:cover;}
.wj-product-philosophy__media-label{position:absolute;left:0;bottom:0;min-width:250px;padding:14px 18px;background:#071d3d;color:#fff;}
.wj-product-philosophy__media-label span{display:block;margin-bottom:2px;color:#8ab6ff;font-size:9px;font-weight:850;letter-spacing:.14em;}
.wj-product-philosophy__media-label strong{font-size:13px;line-height:1.2;}
.wj-product-philosophy__copy{max-width:560px;}
.wj-product-philosophy__lead{margin:0 0 28px;color:var(--wj-copy);font-size:15px;line-height:1.72;}
.wj-principle-list{border-top:1px solid var(--wj-line);}
.wj-principle{display:grid;grid-template-columns:48px 1fr;gap:18px;padding:18px 0;border-bottom:1px solid var(--wj-line);}
.wj-principle>span{padding-top:1px;color:var(--wj-blue);font-size:11px;font-weight:850;letter-spacing:.08em;}
.wj-principle strong{display:block;margin-bottom:3px;color:#152b4d;font-size:14px;}
.wj-principle p{margin:0;color:var(--wj-copy);font-size:12.8px;line-height:1.58;}
.wj-primary-link{margin-top:26px;display:inline-flex;align-items:center;gap:12px;min-height:44px;padding:0 17px;border:1px solid var(--wj-blue);background:var(--wj-blue);color:#fff;font-size:12.5px;font-weight:820;transition:background .18s ease,border-color .18s ease,gap .18s ease;}
.wj-primary-link:hover{background:#0347b8;border-color:#0347b8;gap:15px;}

.wj-work-showcase{padding:84px 0 88px;background:#f8faff;border-bottom:1px solid var(--wj-line);}
.wj-work-grid{display:grid;grid-template-columns:minmax(0,1.38fr) minmax(330px,.62fr);gap:18px;align-items:stretch;}
.wj-work-stack{display:grid;grid-template-rows:1fr 1fr;gap:18px;}
.wj-work-card{display:flex;flex-direction:column;min-height:0;background:#fff;border:1px solid var(--wj-line);overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease;}
.wj-work-card:hover{border-color:#afc1da;box-shadow:0 16px 36px rgba(10,34,71,.07);}
.wj-work-card__visual{position:relative;overflow:hidden;background:#e9eef5;}
.wj-work-card--large .wj-work-card__visual{aspect-ratio:16/9;}
.wj-work-stack .wj-work-card__visual{aspect-ratio:16/7.2;}
.wj-work-card__visual img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease;}
.wj-work-card:hover .wj-work-card__visual img{transform:scale(1.018);}
.wj-work-card__meta{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;padding:18px 20px;background:#fff;}
.wj-work-card__meta span{display:block;margin-bottom:4px;color:var(--wj-blue);font-size:9px;font-weight:850;letter-spacing:.13em;}
.wj-work-card__meta h3{margin:0;color:#102747;font-size:19px;line-height:1.25;letter-spacing:-.02em;}
.wj-work-card--large .wj-work-card__meta h3{font-size:24px;}
.wj-work-card__meta b{flex:0 0 auto;color:#17345f;font-size:11px;letter-spacing:.02em;white-space:nowrap;}
.wj-work-card:hover .wj-work-card__meta b{color:var(--wj-blue);}

.wj-process{padding:82px 0;background:#071d3d;color:#fff;border-bottom:1px solid rgba(255,255,255,.08);}
.wj-process .wj-content-eyebrow{color:#77aaff;}
.wj-process h2{color:#fff;max-width:630px;margin-bottom:0;}
.wj-process__top{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:42px;}
.wj-process__top>p{max-width:460px;margin:0 0 4px;color:#aebdd3;font-size:14px;line-height:1.7;}
.wj-process__steps{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid rgba(255,255,255,.18);}
.wj-process__steps li{position:relative;padding:24px 28px 0 0;}
.wj-process__steps li:not(:last-child){border-right:1px solid rgba(255,255,255,.12);padding-right:28px;margin-right:28px;}
.wj-process__steps li::before{content:"";position:absolute;top:-3px;left:0;width:30px;height:5px;background:#2e7cff;}
.wj-process__steps span{display:block;margin-bottom:25px;color:#7eaeff;font-size:11px;font-weight:850;letter-spacing:.08em;}
.wj-process__steps strong{display:block;margin-bottom:8px;color:#fff;font-size:14px;line-height:1.35;}
.wj-process__steps p{margin:0;color:#9fb0c9;font-size:12.5px;line-height:1.62;}

.wj-insights{padding:86px 0 90px;background:#fff;border-bottom:1px solid var(--wj-line);}
.wj-insights__grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);gap:18px;align-items:stretch;}
.wj-insight-feature{display:grid;grid-template-rows:auto 1fr;border:1px solid var(--wj-line);background:#fff;}
.wj-insight-feature__media{display:block;aspect-ratio:16/8.7;overflow:hidden;background:#e9eef5;border-bottom:1px solid var(--wj-line);}
.wj-insight-feature__media img,.wj-insight-row__media img{width:100%;height:100%;object-fit:cover;transition:transform .28s ease;}
.wj-insight-feature:hover img,.wj-insight-row:hover img{transform:scale(1.018);}
.wj-insight-feature__body{padding:22px 24px 24px;}
.wj-insight-feature__body>span,.wj-insight-row div>span{display:block;margin-bottom:7px;color:var(--wj-blue);font-size:9px;font-weight:850;letter-spacing:.13em;}
.wj-insight-feature h3{margin:0 0 10px;font-size:24px;line-height:1.2;letter-spacing:-.025em;}
.wj-insight-feature h3 a,.wj-insight-row h3 a{color:#102747;}
.wj-insight-feature p{margin:0 0 15px;color:var(--wj-copy);font-size:13px;line-height:1.62;}
.wj-insight-link{display:inline-flex;align-items:center;gap:9px;color:#17345f;font-size:11.5px;font-weight:820;}
.wj-insight-link:hover{color:var(--wj-blue);}
.wj-insights__side{display:grid;grid-template-rows:1fr 1fr;gap:18px;}
.wj-insight-row{display:grid;grid-template-columns:42% 58%;min-height:0;border:1px solid var(--wj-line);background:#fff;overflow:hidden;}
.wj-insight-row__media{display:block;min-height:100%;overflow:hidden;background:#e9eef5;border-right:1px solid var(--wj-line);}
.wj-insight-row>div{padding:20px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;}
.wj-insight-row h3{margin:0 0 13px;font-size:17px;line-height:1.32;letter-spacing:-.015em;}

.wj-final-cta{padding:0;background:#fff;}
.wj-final-cta__inner{min-height:196px;padding-top:36px;padding-bottom:36px;display:flex;align-items:center;justify-content:space-between;gap:52px;background:#eef4ff;border-left:4px solid var(--wj-blue);position:relative;}
.wj-final-cta__inner::before,.wj-final-cta__inner::after{content:"";position:absolute;top:0;bottom:0;width:9999px;background:#eef4ff;}
.wj-final-cta__inner::before{right:100%;}.wj-final-cta__inner::after{left:100%;}
.wj-final-cta__copy{position:relative;z-index:1;max-width:720px;}
.wj-final-cta__copy>span{display:block;margin-bottom:8px;color:var(--wj-blue);font-size:9.5px;font-weight:850;letter-spacing:.14em;}
.wj-final-cta h2{margin:0 0 7px;color:#0b2348;font-size:clamp(26px,2.4vw,36px);line-height:1.14;letter-spacing:-.035em;}
.wj-final-cta p{margin:0;color:#65758c;font-size:13px;line-height:1.6;}
.wj-final-cta__actions{position:relative;z-index:1;display:flex;align-items:center;gap:10px;flex:0 0 auto;}
.wj-final-cta__primary,.wj-final-cta__secondary{min-height:46px;padding:0 17px;display:inline-flex;align-items:center;justify-content:center;gap:10px;font-size:12px;font-weight:820;white-space:nowrap;}
.wj-final-cta__primary{background:#075cf6;border:1px solid #075cf6;color:#fff;}
.wj-final-cta__primary:hover{background:#0347b8;border-color:#0347b8;}
.wj-final-cta__secondary{background:#fff;border:1px solid #b9c8da;color:#17345f;}
.wj-final-cta__secondary:hover{border-color:#17345f;}

@media (max-width:1020px){
  .wj-showcase-products,.wj-product-philosophy,.wj-work-showcase,.wj-insights{padding-top:68px;padding-bottom:72px;}
  .wj-content-head--row,.wj-process__top{align-items:flex-start;flex-direction:column;gap:20px;}
  .wj-products-tools{width:100%;justify-content:space-between;}
  .wj-product-philosophy__grid{grid-template-columns:1fr;gap:38px;}
  .wj-product-philosophy__copy{max-width:760px;}
  .wj-work-grid{grid-template-columns:1fr;}
  .wj-work-stack{grid-template-columns:1fr 1fr;grid-template-rows:none;}
  .wj-work-stack .wj-work-card__visual{aspect-ratio:16/9;}
  .wj-process__steps{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 0;}
  .wj-process__steps li:nth-child(2){border-right:0;margin-right:0;padding-right:0;}
  .wj-insights__grid{grid-template-columns:1fr;}
  .wj-insights__side{grid-template-columns:1fr 1fr;grid-template-rows:none;}
  .wj-insight-row{grid-template-columns:1fr;}
  .wj-insight-row__media{aspect-ratio:16/9;border-right:0;border-bottom:1px solid var(--wj-line);}
  .wj-final-cta__inner{align-items:flex-start;flex-direction:column;gap:24px;}
}
@media (max-width:720px){
  .wj-showcase-products,.wj-product-philosophy,.wj-work-showcase,.wj-insights{padding-top:50px;padding-bottom:54px;}
  .wj-content-head{margin-bottom:24px;}
  .wj-content-head h2,.wj-product-philosophy h2,.wj-process h2{font-size:clamp(28px,8vw,34px);}
  .wj-content-head p,.wj-product-philosophy__lead{font-size:14px;}
  .wj-products-tools{align-items:flex-start;flex-direction:column;gap:14px;}
  .wj-products-nav{display:none;}
  .wj-product-card{width:min(84vw,340px)!important;}
  .wj-product-card__body{padding:19px;}
  .wj-product-card h3{font-size:20px;}
  .wj-product-philosophy__grid{gap:30px;}
  .wj-product-philosophy__media-label{min-width:210px;padding:11px 13px;}
  .wj-principle{grid-template-columns:36px 1fr;gap:12px;}
  .wj-work-stack{grid-template-columns:1fr;}
  .wj-work-card__meta{align-items:flex-start;flex-direction:column;gap:8px;padding:15px 16px;}
  .wj-work-card--large .wj-work-card__meta h3,.wj-work-card__meta h3{font-size:18px;}
  .wj-process{padding:58px 0 62px;}
  .wj-process__top{margin-bottom:30px;}
  .wj-process__steps{grid-template-columns:1fr;border-top:0;gap:0;}
  .wj-process__steps li,.wj-process__steps li:not(:last-child){margin:0;padding:20px 0 21px 46px;border-right:0;border-top:1px solid rgba(255,255,255,.16);}
  .wj-process__steps li::before{top:24px;left:0;width:26px;height:3px;}
  .wj-process__steps span{margin-bottom:7px;}
  .wj-insights__side{grid-template-columns:1fr;}
  .wj-insight-feature h3{font-size:21px;}
  .wj-insight-feature__body,.wj-insight-row>div{padding:17px;}
  .wj-final-cta__inner{min-height:0;padding-top:30px;padding-bottom:30px;}
  .wj-final-cta__actions{width:100%;align-items:stretch;flex-direction:column;}
  .wj-final-cta__primary,.wj-final-cta__secondary{width:100%;}
}
@media (max-width:480px){
  .wj-product-card{width:86vw!important;}
  .wj-product-card__body{padding:17px;}
  .wj-product-philosophy__media img{aspect-ratio:4/3;}
}

/* =========================================================
   WEBSITEJI HOMEPAGE CONTENT FLOW v4 — tighter / more tech
   Scope: ONLY .wj-content-flow. Header, hero, trust and footer untouched.
   ========================================================= */
.wj-content-flow{
  --wj-ink:#071a3d;
  --wj-copy:#53647b;
  --wj-line:#cdd8e7;
  --wj-blue:#075cf6;
  --wj-cyan:#12a8ff;
  background:#edf2f8;
  overflow:hidden;
}
.wj-content-flow .container{position:relative;z-index:2;}
.wj-content-eyebrow{margin-bottom:8px;font-size:10px;letter-spacing:.18em;}
.wj-content-eyebrow::before{width:20px;}
.wj-content-head{margin-bottom:24px;}
.wj-content-head--row{gap:22px;}
.wj-content-head h2,
.wj-product-philosophy h2,
.wj-process h2{font-size:clamp(27px,2.55vw,39px);line-height:1.09;letter-spacing:-.035em;margin-bottom:9px;}
.wj-content-head p{font-size:14px;line-height:1.58;}
.wj-text-link{font-size:12px;padding-bottom:4px;}

/* TECH SEPARATORS */
.wj-showcase-products,
.wj-product-philosophy,
.wj-work-showcase,
.wj-process,
.wj-insights,
.wj-final-cta{position:relative;isolation:isolate;}
.wj-showcase-products::after,
.wj-product-philosophy::after,
.wj-work-showcase::after,
.wj-process::after,
.wj-insights::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:1px;z-index:4;
  background:linear-gradient(90deg,transparent 0,rgba(7,92,246,.7) 18%,rgba(18,168,255,.25) 50%,rgba(7,92,246,.7) 82%,transparent 100%);
}
.wj-showcase-products::before,
.wj-work-showcase::before,
.wj-insights::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;opacity:.5;
  background-image:linear-gradient(rgba(17,55,101,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(17,55,101,.045) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 72%);
}

/* PRODUCTS — compact, 3 FULL CARDS, software dashboard feel */
.wj-showcase-products{padding:50px 0 54px;background:linear-gradient(135deg,#e9f2ff 0%,#f3f7fc 48%,#eaf0f8 100%);}
.wj-showcase-products .wj-content-head__copy{max-width:710px;}
.wj-products-tools{gap:14px;}
.wj-content-flow .home-products__arrow{width:38px!important;height:38px!important;background:rgba(255,255,255,.82)!important;border-color:#b7c7db!important;}
.wj-product-swiper{overflow:hidden!important;padding:1px 1px 2px;}
.wj-product-card{width:auto!important;min-width:0!important;border-color:#c4d1e2;background:#f9fbfe;box-shadow:0 8px 20px rgba(15,42,80,.045);transform:none!important;}
.wj-product-card:hover{border-color:#78a6ec;box-shadow:0 13px 28px rgba(16,50,98,.09);}
.wj-product-card__media{aspect-ratio:16/8.2;position:relative;background:#0b1e3d;border-bottom:1px solid #b8c7da;}
.wj-product-card__media::before{content:"";position:absolute;z-index:2;left:0;right:0;top:0;height:23px;background:linear-gradient(90deg,rgba(4,19,42,.92),rgba(9,45,93,.72));border-bottom:1px solid rgba(255,255,255,.14);}
.wj-product-card__media::after{content:"•••";position:absolute;z-index:3;top:1px;left:10px;color:#7eb7ff;font-size:13px;letter-spacing:3px;}
.wj-product-card__media img{filter:saturate(.92) contrast(1.02);}
.wj-product-card__body{padding:16px 17px 15px;}
.wj-product-card__type{margin-bottom:6px;font-size:8.5px;letter-spacing:.15em;}
.wj-product-card h3{font-size:19px;margin-bottom:6px;}
.wj-product-card p{font-size:12.6px;line-height:1.52;margin-bottom:15px;}
.wj-product-card__cta{min-height:39px;padding:0 12px;font-size:11.5px;background:#edf3fb;border-color:#c1cedf;}
.wj-product-card__cta:hover{background:#075cf6;border-color:#075cf6;}

/* APPROACH — DARK SOFTWARE SECTION */
.wj-product-philosophy{padding:58px 0 60px;background:#071a35;color:#fff;}
.wj-product-philosophy::before{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background:radial-gradient(circle at 82% 20%,rgba(7,92,246,.22),transparent 28%),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);background-size:auto,42px 42px,42px 42px;}
.wj-product-philosophy__grid{grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:42px;}
.wj-product-philosophy__media{border:1px solid rgba(90,157,255,.5);background:#0a2348;box-shadow:15px 15px 0 rgba(7,92,246,.13);}
.wj-product-philosophy__media img{aspect-ratio:16/9;}
.wj-product-philosophy__media-label{padding:11px 15px;min-width:215px;background:#075cf6;}
.wj-product-philosophy__media-label span{color:#dceaff;font-size:8px;}
.wj-product-philosophy__media-label strong{font-size:12px;}
.wj-product-philosophy .wj-content-eyebrow{color:#60a5ff;}
.wj-product-philosophy h2{color:#fff;}
.wj-product-philosophy__lead{margin-bottom:20px;color:#b9c8dc;font-size:14px;line-height:1.62;}
.wj-principle-list{border-color:rgba(255,255,255,.14);}
.wj-principle{grid-template-columns:38px 1fr;gap:13px;padding:13px 0;border-color:rgba(255,255,255,.12);}
.wj-principle>span{color:#58a1ff;font-size:10px;}
.wj-principle strong{color:#fff;font-size:13px;}
.wj-principle p{color:#9eb0c8;font-size:12px;line-height:1.5;}
.wj-primary-link{margin-top:19px;min-height:40px;padding:0 14px;font-size:11.5px;background:#075cf6;}

/* SHOWCASE — light slate, dense */
.wj-work-showcase{padding:52px 0 56px;background:linear-gradient(180deg,#e8edf4 0%,#f0f3f8 100%);}
.wj-work-showcase .wj-content-head{max-width:710px;}
.wj-work-grid{grid-template-columns:minmax(0,1.32fr) minmax(310px,.68fr);gap:12px;}
.wj-work-stack{gap:12px;}
.wj-work-card{border-color:#bcc9d9;background:#fff;box-shadow:none;}
.wj-work-card:hover{border-color:#7ba9eb;box-shadow:0 12px 24px rgba(10,34,71,.08);}
.wj-work-card--large .wj-work-card__visual{aspect-ratio:16/7.7;}
.wj-work-stack .wj-work-card__visual{aspect-ratio:16/6.4;}
.wj-work-card__meta{padding:13px 15px;gap:12px;background:#f9fbfe;}
.wj-work-card__meta span{font-size:8px;margin-bottom:3px;}
.wj-work-card__meta h3{font-size:16px;}
.wj-work-card--large .wj-work-card__meta h3{font-size:20px;}
.wj-work-card__meta b{font-size:10px;}

/* PROCESS — brighter tech blue, compact */
.wj-process{padding:50px 0 53px;background:linear-gradient(115deg,#075cf6 0%,#0a4fc7 45%,#092d6f 100%);}
.wj-process::before{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;background:linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(90deg,black,transparent 90%);}
.wj-process .wj-content-eyebrow{color:#d6e7ff;}
.wj-process__top{margin-bottom:28px;gap:30px;}
.wj-process__top>p{color:#d3e1f5;font-size:13px;line-height:1.55;}
.wj-process__steps{border-color:rgba(255,255,255,.3);}
.wj-process__steps li{padding-top:18px;}
.wj-process__steps li:not(:last-child){margin-right:18px;padding-right:18px;border-color:rgba(255,255,255,.22);}
.wj-process__steps li::before{width:25px;height:4px;background:#9ed0ff;}
.wj-process__steps span{margin-bottom:15px;color:#d8e9ff;font-size:9px;}
.wj-process__steps strong{font-size:13px;margin-bottom:5px;}
.wj-process__steps p{color:#c7d9f1;font-size:11.7px;line-height:1.5;}

/* BLOG — editorial with contrast, less white */
.wj-insights{padding:52px 0 56px;background:#e9eef5;}
.wj-insights__grid{grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);gap:12px;}
.wj-insights__side{gap:12px;}
.wj-insight-feature{border-color:#b9c7d9;background:#071a35;color:#fff;}
.wj-insight-feature__media{aspect-ratio:16/7.4;border-color:#28466f;}
.wj-insight-feature__body{padding:16px 18px 18px;}
.wj-insight-feature__body>span{font-size:8px;color:#67a9ff;margin-bottom:5px;}
.wj-insight-feature h3{font-size:20px;margin-bottom:7px;}
.wj-insight-feature h3 a{color:#fff;}
.wj-insight-feature p{font-size:12px;line-height:1.5;margin-bottom:11px;color:#afbed2;}
.wj-insight-feature .wj-insight-link{color:#8fc0ff;}
.wj-insight-row{grid-template-columns:40% 60%;border-color:#bdc9d8;background:#f8fafc;}
.wj-insight-row>div{padding:14px 15px;}
.wj-insight-row div>span{font-size:8px;margin-bottom:5px;}
.wj-insight-row h3{font-size:15px;margin-bottom:9px;line-height:1.28;}
.wj-insight-link{font-size:10.5px;}

/* CTA — dark terminal-like close, no large blank area */
.wj-final-cta{padding:0;background:#06152f;}
.wj-final-cta__inner{min-height:0;padding-top:27px;padding-bottom:27px;gap:30px;background:#06152f;border-left:3px solid #12a8ff;}
.wj-final-cta__inner::before,.wj-final-cta__inner::after{background:#06152f;}
.wj-final-cta__copy>span{font-size:8.5px;color:#64baff;margin-bottom:5px;}
.wj-final-cta h2{color:#fff;font-size:clamp(23px,2.1vw,31px);margin-bottom:5px;}
.wj-final-cta p{color:#a9b8cc;font-size:12px;}
.wj-final-cta__primary,.wj-final-cta__secondary{min-height:41px;padding:0 13px;font-size:11px;}
.wj-final-cta__secondary{background:transparent;border-color:#536985;color:#d9e5f5;}
.wj-final-cta__secondary:hover{border-color:#8ebcff;color:#fff;}

@media (max-width:1020px){
  .wj-showcase-products,.wj-product-philosophy,.wj-work-showcase,.wj-insights{padding-top:44px;padding-bottom:48px;}
  .wj-product-philosophy__grid{gap:30px;}
  .wj-work-grid{grid-template-columns:1fr;}
  .wj-work-stack{grid-template-columns:1fr 1fr;gap:12px;}
  .wj-work-stack .wj-work-card__visual{aspect-ratio:16/7.3;}
  .wj-insights__grid{grid-template-columns:1fr;}
  .wj-insights__side{grid-template-columns:1fr 1fr;gap:12px;}
  .wj-insight-row{grid-template-columns:1fr;}
  .wj-insight-row__media{aspect-ratio:16/7.2;}
}
@media (max-width:720px){
  .wj-showcase-products,.wj-product-philosophy,.wj-work-showcase,.wj-insights{padding-top:36px;padding-bottom:39px;}
  .wj-content-head{margin-bottom:19px;}
  .wj-content-head h2,.wj-product-philosophy h2,.wj-process h2{font-size:clamp(25px,7.5vw,31px);}
  .wj-products-tools{width:100%;flex-direction:row;align-items:center;justify-content:space-between;}
  .wj-products-nav{display:flex;}
  .wj-product-card{width:auto!important;}
  .wj-product-card__media{aspect-ratio:16/8.8;}
  .wj-product-card__body{padding:15px;}
  .wj-product-philosophy__grid{grid-template-columns:1fr;gap:25px;}
  .wj-product-philosophy__media{box-shadow:9px 9px 0 rgba(7,92,246,.14);}
  .wj-work-stack{grid-template-columns:1fr;}
  .wj-work-card__meta{padding:12px 13px;}
  .wj-process{padding:39px 0 42px;}
  .wj-process__top{margin-bottom:22px;}
  .wj-process__steps li,.wj-process__steps li:not(:last-child){padding-top:15px;padding-bottom:16px;}
  .wj-insights__side{grid-template-columns:1fr;}
  .wj-insight-row{grid-template-columns:38% 62%;}
  .wj-insight-row__media{aspect-ratio:auto;border-right:1px solid #bdc9d8;border-bottom:0;}
  .wj-final-cta__inner{padding-top:23px;padding-bottom:23px;gap:19px;}
}
@media (max-width:480px){
  .wj-content-head--row{gap:14px;}
  .wj-products-tools{align-items:flex-start;flex-direction:column;gap:10px;}
  .wj-product-card p{min-height:0;}
  .wj-product-philosophy__media-label{min-width:190px;}
  .wj-insight-row{grid-template-columns:1fr;}
  .wj-insight-row__media{aspect-ratio:16/7.8;border-right:0;border-bottom:1px solid #bdc9d8;}
}

/* =========================================================
   WEBSITEJI HOMEPAGE v5 — SVG TECH SEPARATORS + NO "PROJE" LANGUAGE
   Scope: content flow only. Navbar, hero and footer untouched.
   ========================================================= */
.wj-content-flow .wj-showcase-products::after,
.wj-content-flow .wj-product-philosophy::after,
.wj-content-flow .wj-work-showcase::after,
.wj-content-flow .wj-process::after,
.wj-content-flow .wj-insights::after{display:none!important;}

.wj-tech-separator{
  position:relative;
  z-index:5;
  height:34px;
  margin:0;
  line-height:0;
  overflow:hidden;
  pointer-events:none;
}
.wj-tech-separator svg{display:block;width:100%;height:34px;}
.wj-tech-separator path{vector-effect:non-scaling-stroke;}
.wj-tech-separator__line{fill:none;stroke-width:1.2;}

.wj-tech-separator--intro .wj-tech-separator__from{fill:#fff;}
.wj-tech-separator--intro .wj-tech-separator__to{fill:#e9f2ff;}
.wj-tech-separator--intro .wj-tech-separator__line{stroke:#8eb8f6;}

.wj-tech-separator--to-dark .wj-tech-separator__from{fill:#eaf0f8;}
.wj-tech-separator--to-dark .wj-tech-separator__to{fill:#071a35;}
.wj-tech-separator--to-dark .wj-tech-separator__line{stroke:#2e79ea;}

.wj-tech-separator--to-light .wj-tech-separator__from{fill:#071a35;}
.wj-tech-separator--to-light .wj-tech-separator__to{fill:#e8edf4;}
.wj-tech-separator--to-light .wj-tech-separator__line{stroke:#438ef8;}

.wj-tech-separator--to-blue .wj-tech-separator__from{fill:#e8edf4;}
.wj-tech-separator--to-blue .wj-tech-separator__to{fill:#075cf6;}
.wj-tech-separator--to-blue .wj-tech-separator__line{stroke:#8fc4ff;}

.wj-tech-separator--to-blog .wj-tech-separator__from{fill:#092d6f;}
.wj-tech-separator--to-blog .wj-tech-separator__to{fill:#e9eef5;}
.wj-tech-separator--to-blog .wj-tech-separator__line{stroke:#76b3ff;}

.wj-tech-separator--to-cta .wj-tech-separator__from{fill:#e9eef5;}
.wj-tech-separator--to-cta .wj-tech-separator__to{fill:#06152f;}
.wj-tech-separator--to-cta .wj-tech-separator__line{stroke:#3b8cff;}

/* tighter spacing: software/product page density */
.wj-showcase-products{padding:42px 0 44px!important;}
.wj-product-philosophy{padding:46px 0 48px!important;}
.wj-work-showcase{padding:42px 0 46px!important;}
.wj-process{padding:42px 0 44px!important;}
.wj-insights{padding:42px 0 46px!important;}
.wj-content-head{margin-bottom:20px!important;}
.wj-product-philosophy__grid{gap:34px!important;}
.wj-process__top{margin-bottom:23px!important;}
.wj-final-cta__inner{padding-top:24px!important;padding-bottom:24px!important;}

@media(max-width:720px){
  .wj-tech-separator,.wj-tech-separator svg{height:22px;}
  .wj-showcase-products,.wj-product-philosophy,.wj-work-showcase,.wj-insights{padding-top:31px!important;padding-bottom:34px!important;}
  .wj-process{padding:33px 0 35px!important;}
  .wj-content-head{margin-bottom:17px!important;}
  .wj-product-philosophy__grid{gap:22px!important;}
  .wj-process__top{margin-bottom:17px!important;}
}

/* =========================================================
   WEBSITEJI HOMEPAGE v7 — COMPACT SOFTWARE / PRODUCT FLOW
   Scope: middle content only. Navbar, hero and footer untouched.
   ========================================================= */
.wj-v7-flow{background:#fff;overflow:hidden;color:#0a1b33;}
.wj-v7-flow *{box-sizing:border-box;}
.wj-v7-flow a{text-decoration:none;}
.wj-v7-flow h2,.wj-v7-flow h3,.wj-v7-flow p{margin-top:0;}
.wj-v7-kicker{display:block;margin-bottom:5px;color:#075cf6;font-size:10px;font-weight:800;letter-spacing:.13em;}
.wj-v7-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:16px;}
.wj-v7-section-head h2,.wj-v7-needs h2,.wj-v7-tech h2,.wj-v7-blog h2,.wj-v7-cta h2{margin-bottom:0;font-size:clamp(22px,1.9vw,31px);line-height:1.14;letter-spacing:-.032em;}
.wj-v7-text-link{flex:0 0 auto;color:#075cf6;font-size:12px;font-weight:800;transition:opacity .18s ease;}
.wj-v7-text-link:hover{opacity:.68;}

.wj-v7-products{padding:28px 0 30px;background:#f1f6fc;border-top:1px solid #dfe8f3;}
.wj-v7-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.wj-v7-product{min-width:0;background:#fff;color:#0a1b33;box-shadow:0 7px 22px rgba(21,54,91,.065);transition:transform .2s ease,box-shadow .2s ease;}
.wj-v7-product:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(21,54,91,.10);}
.wj-v7-product__media{height:112px;overflow:hidden;background:#e4edf7;}
.wj-v7-product__media img{display:block;width:100%;height:100%;object-fit:cover;}
.wj-v7-product__body{padding:13px 14px 14px;}
.wj-v7-product__body>span{display:block;margin-bottom:4px;color:#6a829c;font-size:8px;font-weight:800;letter-spacing:.12em;}
.wj-v7-product__body h3{margin-bottom:4px;font-size:16px;line-height:1.2;letter-spacing:-.02em;}
.wj-v7-product__body p{margin-bottom:8px;color:#5d6d7f;font-size:11px;line-height:1.45;}
.wj-v7-product__body b{color:#075cf6;font-size:11px;}

.wj-v7-needs{padding:26px 0;background:#071a35;color:#fff;}
.wj-v7-needs__grid{display:grid;grid-template-columns:.74fr 1.26fr;gap:54px;align-items:start;}
.wj-v7-needs h2{color:#fff;max-width:420px;font-size:clamp(22px,1.85vw,30px);}
.wj-v7-needs__intro p{max-width:390px;margin:8px 0 0;color:#9db0c8;font-size:12px;line-height:1.5;}
.wj-v7-needs__links{border-top:1px solid rgba(150,178,213,.24);}
.wj-v7-needs__links a{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:46px;padding:8px 2px;color:#fff;border-bottom:1px solid rgba(150,178,213,.24);transition:padding .18s ease,color .18s ease;}
.wj-v7-needs__links a:hover{padding-left:6px;}
.wj-v7-needs__links span{font-size:12px;color:#d3dfed;}
.wj-v7-needs__links b{font-size:11px;color:#6eabff;white-space:nowrap;}
.wj-v7-needs__links i{font-style:normal;margin-left:5px;}

.wj-v7-tech{padding:26px 0;background:#fff;}
.wj-v7-tech__grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:42px;align-items:center;}
.wj-v7-tech__copy>span{display:block;margin-bottom:5px;color:#075cf6;font-size:11px;font-weight:700;}
.wj-v7-tech__copy h2{max-width:520px;font-size:clamp(22px,1.8vw,29px);}
.wj-v7-tech__features{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));}
.wj-v7-tech__features>div{position:relative;padding:3px 16px 3px 17px;min-height:74px;}
.wj-v7-tech__features>div+div:before{content:"";position:absolute;left:0;top:5px;bottom:5px;width:1px;background:#dce5ef;}
.wj-v7-tech__features b{display:block;margin-bottom:9px;color:#075cf6;font-size:10px;}
.wj-v7-tech__features strong{display:block;margin-bottom:3px;font-size:12px;line-height:1.3;}
.wj-v7-tech__features small{display:block;color:#708094;font-size:10px;line-height:1.4;}

.wj-v7-work{padding:25px 0 28px;background:#fff;border-top:1px solid #e5edf5;}
.wj-v7-section-head--plain{margin-bottom:13px;}
.wj-v7-section-head--plain h2{font-size:clamp(21px,1.75vw,28px);}
.wj-v7-work__list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.wj-v7-work__item{display:grid;grid-template-columns:112px minmax(0,1fr) auto;align-items:center;gap:14px;min-height:96px;padding:9px 13px 9px 9px;background:#f5f8fb;color:#0a1b33;transition:background .18s ease;}
.wj-v7-work__item:hover{background:#eef4fb;}
.wj-v7-work__item img{width:112px;height:78px;object-fit:cover;display:block;}
.wj-v7-work__item>div{min-width:0;}
.wj-v7-work__item span{display:block;margin-bottom:3px;color:#70859e;font-size:8px;font-weight:800;letter-spacing:.1em;}
.wj-v7-work__item strong{display:block;margin-bottom:3px;font-size:13px;line-height:1.25;}
.wj-v7-work__item p{margin-bottom:0;color:#68788a;font-size:10px;line-height:1.35;}
.wj-v7-work__item>b{color:#075cf6;font-size:10px;white-space:nowrap;}

.wj-v7-blog{padding:25px 0 27px;background:#f2f5f8;border-top:1px solid #e0e7ef;}
.wj-v7-blog__grid{display:grid;grid-template-columns:.46fr 1.54fr;gap:52px;align-items:start;}
.wj-v7-blog__head h2{margin-bottom:5px;font-size:clamp(21px,1.7vw,27px);}
.wj-v7-blog__head p{max-width:330px;margin-bottom:9px;color:#6c7b8c;font-size:11px;line-height:1.5;}
.wj-v7-blog__list{border-top:1px solid #d5dee8;}
.wj-v7-blog__list>a{display:grid;grid-template-columns:minmax(0,1fr) 20px;align-items:center;gap:18px;min-height:58px;padding:8px 2px;color:#0a1b33;border-bottom:1px solid #d5dee8;transition:padding .18s ease;}
.wj-v7-blog__list>a:hover{padding-left:5px;}
.wj-v7-blog__list span{display:inline-block;margin-right:8px;color:#6c829a;font-size:8px;font-weight:800;letter-spacing:.1em;}
.wj-v7-blog__list strong{display:inline;font-size:12px;line-height:1.35;}
.wj-v7-blog__list small{display:block;margin-top:2px;color:#7b8999;font-size:9px;line-height:1.35;}
.wj-v7-blog__list>a>b{color:#075cf6;font-size:14px;}

.wj-v7-cta{padding:18px 0;background:#071a35;color:#fff;}
.wj-v7-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:28px;}
.wj-v7-cta h2{color:#fff;max-width:690px;font-size:clamp(19px,1.55vw,25px);}
.wj-v7-cta__actions{display:flex;align-items:center;gap:16px;flex:0 0 auto;}
.wj-v7-cta__primary{display:inline-flex;align-items:center;min-height:36px;padding:0 13px;background:#075cf6;color:#fff;font-size:11px;font-weight:800;}
.wj-v7-cta__whatsapp{color:#b8c9dc;font-size:11px;font-weight:700;}
.wj-v7-cta__whatsapp:hover{color:#fff;}

@media(max-width:1050px){
  .wj-v7-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .wj-v7-needs__grid,.wj-v7-tech__grid{grid-template-columns:1fr;gap:17px;}
  .wj-v7-needs__intro{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;}
  .wj-v7-needs__intro p{margin:0;max-width:380px;}
  .wj-v7-tech__features>div{padding-left:14px;padding-right:14px;}
  .wj-v7-work__list{grid-template-columns:1fr;}
  .wj-v7-blog__grid{grid-template-columns:.62fr 1.38fr;gap:30px;}
}

@media(max-width:760px){
  .wj-v7-products{padding:22px 0 24px;}
  .wj-v7-needs,.wj-v7-tech{padding:22px 0;}
  .wj-v7-work{padding:21px 0 23px;}
  .wj-v7-blog{padding:21px 0 23px;}
  .wj-v7-cta{padding:16px 0;}
  .wj-v7-section-head{align-items:flex-start;gap:12px;margin-bottom:13px;}
  .wj-v7-section-head h2,.wj-v7-needs h2,.wj-v7-tech h2,.wj-v7-blog h2{font-size:21px;}
  .wj-v7-product-grid{grid-template-columns:1fr;gap:8px;}
  .wj-v7-product{display:grid;grid-template-columns:112px 1fr;box-shadow:0 4px 14px rgba(21,54,91,.06);}
  .wj-v7-product__media{height:100%;min-height:102px;}
  .wj-v7-product__body{padding:10px 11px;}
  .wj-v7-product__body h3{font-size:14px;}
  .wj-v7-product__body p{font-size:10px;margin-bottom:5px;}
  .wj-v7-needs__intro{display:block;}
  .wj-v7-needs__intro p{margin-top:6px;}
  .wj-v7-needs__links a{min-height:44px;gap:12px;}
  .wj-v7-needs__links span{font-size:11px;}
  .wj-v7-needs__links b{font-size:10px;}
  .wj-v7-tech__features{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:14px;}
  .wj-v7-tech__features>div:nth-child(3):before{display:none;}
  .wj-v7-tech__features>div{min-height:64px;padding-top:1px;padding-bottom:1px;}
  .wj-v7-work__item{grid-template-columns:92px minmax(0,1fr) auto;gap:10px;min-height:86px;padding:8px;}
  .wj-v7-work__item img{width:92px;height:68px;}
  .wj-v7-work__item p{display:none;}
  .wj-v7-blog__grid{grid-template-columns:1fr;gap:14px;}
  .wj-v7-blog__head p{max-width:none;}
  .wj-v7-cta__inner{align-items:flex-start;flex-direction:column;gap:10px;}
  .wj-v7-cta__actions{width:100%;justify-content:space-between;}
}

@media(max-width:460px){
  .wj-v7-section-head{display:block;}
  .wj-v7-section-head .wj-v7-text-link{display:inline-block;margin-top:7px;}
  .wj-v7-tech__features{grid-template-columns:1fr 1fr;}
  .wj-v7-tech__features>div{padding-left:11px;padding-right:9px;}
  .wj-v7-work__item{grid-template-columns:78px minmax(0,1fr);}
  .wj-v7-work__item img{width:78px;height:62px;}
  .wj-v7-work__item>b{grid-column:2;margin-top:-2px;}
  .wj-v7-blog__list strong{display:block;margin-top:2px;}
}


/* =========================================================
   WEBSITEJI HOME V8 — COMPACT SOFTWARE ARCHITECTURE
   Scope: hero sonrasi / footer oncesi. Navbar, hero ve footer etkilenmez.
   ========================================================= */
.wj-v8-flow{overflow:hidden;background:#fff;color:#0a1b33}
.wj-v8-flow *{box-sizing:border-box}
.wj-v8-flow a{text-decoration:none}
.wj-v8-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:20px}
.wj-v8-head>div{max-width:690px}
.wj-v8-head h2,.wj-v8-needs h2,.wj-v8-tech h2,.wj-v8-cta h2{margin:0;color:#0a1b33;font-size:clamp(23px,1.9vw,32px);line-height:1.12;letter-spacing:-.035em}
.wj-v8-head p,.wj-v8-tech__top p,.wj-v8-cta p{margin:7px 0 0;color:#68788c;font-size:12px;line-height:1.55}
.wj-v8-link{flex:0 0 auto;color:#075cf6;font-size:11px;font-weight:800;white-space:nowrap}
.wj-v8-link:hover{color:#0345c1}

/* Products */
.wj-v8-products{padding:34px 0 36px;background:#f4f7fb}
.wj-v8-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.wj-v8-product{position:relative;display:grid;grid-template-columns:minmax(0,1fr) 190px;min-height:206px;overflow:hidden;background:#fff;color:#0a1b33;box-shadow:0 7px 24px rgba(13,42,75,.055);transition:transform .2s ease,box-shadow .2s ease}
.wj-v8-product:hover{transform:translateY(-2px);box-shadow:0 11px 28px rgba(13,42,75,.09)}
.wj-v8-product__copy{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;padding:23px 12px 20px 22px}
.wj-v8-product__copy span,.wj-v8-work__copy span,.wj-v8-blog__copy span,.wj-v8-blog__side span{display:block;margin-bottom:7px;color:#6c8199;font-size:8px;font-weight:800;letter-spacing:.11em}
.wj-v8-product__copy h3{margin:0 0 6px;font-size:17px;line-height:1.2;letter-spacing:-.025em}
.wj-v8-product__copy p{max-width:340px;margin:0 0 15px;color:#6b7989;font-size:10.5px;line-height:1.52}
.wj-v8-product__copy b{margin-top:auto;color:#075cf6;font-size:10px}
.wj-v8-product__preview{position:relative;min-width:0;overflow:hidden;background:#eaf0f7}
.wj-v8-product__preview:before{content:"";position:absolute;z-index:1;inset:0;background:linear-gradient(90deg,#fff 0,rgba(255,255,255,.18) 28%,rgba(255,255,255,0) 58%);pointer-events:none}
.wj-v8-product__preview img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.wj-v8-product:hover .wj-v8-product__preview img{transform:scale(1.025)}

/* Need first */
.wj-v8-needs{padding:31px 0 33px;background:#071a35;color:#fff}
.wj-v8-needs__head{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:13px}
.wj-v8-needs h2{color:#fff}
.wj-v8-needs__head p{margin:0;color:#91a7c1;font-size:11px;line-height:1.5}
.wj-v8-needs__list{border-top:1px solid rgba(145,174,209,.22)}
.wj-v8-needs__list a{display:flex;align-items:center;justify-content:space-between;gap:26px;min-height:49px;padding:8px 0;color:#fff;border-bottom:1px solid rgba(145,174,209,.22);transition:padding .18s ease}
.wj-v8-needs__list a:hover{padding-left:7px}
.wj-v8-needs__list span{font-size:11.5px;color:#d5dfeb}
.wj-v8-needs__list strong{flex:0 0 auto;color:#67a7ff;font-size:10.5px;white-space:nowrap}
.wj-v8-needs__list i{font-style:normal;margin-left:6px}

/* Technology */
.wj-v8-tech{padding:32px 0 34px;background:#fff}
.wj-v8-tech__top{display:grid;grid-template-columns:.95fr 1.05fr;align-items:end;gap:70px;margin-bottom:25px}
.wj-v8-tech__top h2{max-width:610px}
.wj-v8-tech__top p{max-width:500px;margin:0}
.wj-v8-tech__features{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));padding-top:2px}
.wj-v8-tech__features>div{position:relative;min-height:88px;padding:3px 22px 1px 0}
.wj-v8-tech__features>div+div{padding-left:22px}
.wj-v8-tech__features>div+div:before{content:"";position:absolute;left:0;top:3px;bottom:3px;width:1px;background:#e4eaf1}
.wj-v8-tech__features b{display:block;margin-bottom:12px;color:#075cf6;font-size:10px}
.wj-v8-tech__features strong{display:block;margin-bottom:5px;font-size:12.5px;line-height:1.3}
.wj-v8-tech__features small{display:block;max-width:220px;color:#718093;font-size:10px;line-height:1.48}

/* Work examples */
.wj-v8-work{padding:31px 0 34px;background:#f4f7fb}
.wj-v8-head--compact{margin-bottom:17px}
.wj-v8-work__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.wj-v8-work__card{display:grid;grid-template-columns:150px minmax(0,1fr);min-height:150px;background:#fff;color:#0a1b33;box-shadow:0 6px 20px rgba(13,42,75,.045);transition:transform .18s ease,box-shadow .18s ease}
.wj-v8-work__card:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(13,42,75,.075)}
.wj-v8-work__preview{overflow:hidden;background:#eaf0f7}
.wj-v8-work__preview img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease}
.wj-v8-work__card:hover img{transform:scale(1.025)}
.wj-v8-work__copy{display:flex;flex-direction:column;align-items:flex-start;padding:20px 20px 18px}
.wj-v8-work__copy h3{margin:0 0 5px;font-size:15px;line-height:1.22;letter-spacing:-.02em}
.wj-v8-work__copy p{margin:0 0 10px;color:#6c7a8b;font-size:10px;line-height:1.45}
.wj-v8-work__copy b{margin-top:auto;color:#075cf6;font-size:10px}

/* Blog */
.wj-v8-blog{padding:31px 0 34px;background:#fff}
.wj-v8-blog__grid{display:grid;grid-template-columns:1.18fr .82fr;gap:12px}
.wj-v8-blog__featured{display:grid;grid-template-columns:180px minmax(0,1fr);min-height:212px;overflow:hidden;background:#f4f7fb;color:#0a1b33}
.wj-v8-blog__image{overflow:hidden;background:#e9eef5}
.wj-v8-blog__image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease}
.wj-v8-blog__featured:hover img{transform:scale(1.025)}
.wj-v8-blog__copy{display:flex;flex-direction:column;align-items:flex-start;padding:23px 22px 20px}
.wj-v8-blog__copy h3{margin:0 0 7px;font-size:18px;line-height:1.22;letter-spacing:-.025em}
.wj-v8-blog__copy p{margin:0 0 12px;color:#6c7b8d;font-size:10.5px;line-height:1.5}
.wj-v8-blog__copy b{margin-top:auto;color:#075cf6;font-size:10px}
.wj-v8-blog__side{display:grid;grid-template-rows:1fr 1fr;gap:10px}
.wj-v8-blog__side a{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;min-height:101px;padding:17px 46px 16px 19px;background:#f4f7fb;color:#0a1b33;transition:background .18s ease}
.wj-v8-blog__side a:hover{background:#eef3f9}
.wj-v8-blog__side h3{margin:0 0 4px;font-size:13px;line-height:1.28;letter-spacing:-.015em}
.wj-v8-blog__side p{margin:0;color:#718093;font-size:9.5px;line-height:1.4}
.wj-v8-blog__side b{position:absolute;right:18px;top:50%;transform:translateY(-50%);color:#075cf6;font-size:14px}

/* CTA */
.wj-v8-cta{padding:22px 0;background:#0a2141;color:#fff}
.wj-v8-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:34px}
.wj-v8-cta h2{color:#fff;font-size:clamp(20px,1.55vw,26px)}
.wj-v8-cta p{color:#9db0c8;font-size:10.5px}
.wj-v8-cta__actions{display:flex;align-items:center;gap:17px;flex:0 0 auto}
.wj-v8-cta__primary{display:inline-flex;align-items:center;min-height:38px;padding:0 14px;background:#075cf6;color:#fff;font-size:10.5px;font-weight:800}
.wj-v8-cta__primary:hover{background:#064ed0}
.wj-v8-cta__whatsapp{color:#c1d0df;font-size:10.5px;font-weight:700}
.wj-v8-cta__whatsapp:hover{color:#fff}

@media (max-width:1100px){
  .wj-v8-product{grid-template-columns:minmax(0,1fr) 155px}
  .wj-v8-tech__top{gap:35px}
  .wj-v8-work__card{grid-template-columns:130px minmax(0,1fr)}
  .wj-v8-blog__featured{grid-template-columns:150px minmax(0,1fr)}
}
@media (max-width:900px){
  .wj-v8-products,.wj-v8-needs,.wj-v8-tech,.wj-v8-work,.wj-v8-blog{padding-top:27px;padding-bottom:29px}
  .wj-v8-product-grid,.wj-v8-work__grid{grid-template-columns:1fr}
  .wj-v8-product{min-height:184px}
  .wj-v8-tech__top{grid-template-columns:1fr;gap:8px;margin-bottom:21px}
  .wj-v8-tech__features{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:20px}
  .wj-v8-tech__features>div:nth-child(3){padding-left:0}
  .wj-v8-tech__features>div:nth-child(3):before{display:none}
  .wj-v8-blog__grid{grid-template-columns:1fr}
  .wj-v8-blog__side{grid-template-columns:1fr 1fr;grid-template-rows:auto}
}
@media (max-width:640px){
  .wj-v8-head,.wj-v8-needs__head{align-items:flex-start;flex-direction:column;gap:8px;margin-bottom:15px}
  .wj-v8-head h2,.wj-v8-needs h2,.wj-v8-tech h2{font-size:22px}
  .wj-v8-head p{font-size:11px}
  .wj-v8-product{grid-template-columns:minmax(0,1fr) 118px;min-height:178px}
  .wj-v8-product__copy{padding:18px 10px 16px 17px}
  .wj-v8-product__copy h3{font-size:15px}
  .wj-v8-product__copy p{font-size:9.5px}
  .wj-v8-needs__list a{align-items:flex-start;flex-direction:column;gap:4px;padding:10px 0;min-height:0}
  .wj-v8-needs__list a:hover{padding-left:0}
  .wj-v8-needs__list span{font-size:10.5px;line-height:1.45}
  .wj-v8-tech__features{grid-template-columns:1fr 1fr;row-gap:17px}
  .wj-v8-tech__features>div{min-height:83px;padding-right:12px}
  .wj-v8-tech__features>div+div{padding-left:13px}
  .wj-v8-tech__features>div:nth-child(3){padding-left:0}
  .wj-v8-tech__features small{font-size:9.5px}
  .wj-v8-work__card{grid-template-columns:105px minmax(0,1fr);min-height:130px}
  .wj-v8-work__copy{padding:15px 14px}
  .wj-v8-work__copy p{font-size:9.5px}
  .wj-v8-blog__featured{grid-template-columns:105px minmax(0,1fr);min-height:190px}
  .wj-v8-blog__copy{padding:17px 15px}
  .wj-v8-blog__copy h3{font-size:15px}
  .wj-v8-blog__copy p{font-size:9.5px}
  .wj-v8-blog__side{grid-template-columns:1fr}
  .wj-v8-blog__side a{min-height:96px}
  .wj-v8-cta__inner{align-items:flex-start;flex-direction:column;gap:12px}
  .wj-v8-cta__actions{width:100%;justify-content:space-between}
}
@media (max-width:420px){
  .wj-v8-product{grid-template-columns:1fr;min-height:0}
  .wj-v8-product__preview{height:115px;grid-row:1}
  .wj-v8-product__copy{grid-row:2}
  .wj-v8-tech__features{grid-template-columns:1fr}
  .wj-v8-tech__features>div,.wj-v8-tech__features>div+div,.wj-v8-tech__features>div:nth-child(3){padding:8px 0 10px;min-height:0}
  .wj-v8-tech__features>div+div:before{top:0;right:0;bottom:auto;width:100%;height:1px}
  .wj-v8-tech__features>div:nth-child(3):before{display:block}
  .wj-v8-work__card{grid-template-columns:88px minmax(0,1fr)}
  .wj-v8-blog__featured{grid-template-columns:1fr}
  .wj-v8-blog__image{height:115px}
}

/* =========================================================
   WEBSITEJI HOME CONTENT V11 — neutral buttons, products + blog only
   Navbar, hero, trust bar and footer remain untouched.
   ========================================================= */
.wj-v10-flow{background:#fff;color:#0a1b33;overflow:hidden}
.wj-v10-flow *{box-sizing:border-box}
.wj-v10-flow a{text-decoration:none}

.wj-v10-products{padding:38px 0 42px;background:#f4f7fb}
.wj-v10-blog{padding:40px 0 42px;background:#fff}
.wj-v10-section-head{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:19px}
.wj-v10-section-head h2,.wj-v10-cta h2{margin:0;color:#0a1b33;font-size:clamp(25px,1.9vw,31px);line-height:1.1;letter-spacing:-.035em}
.wj-v10-all-link{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 13px;border:1px solid #cfd8e4;border-radius:4px;background:#fff;color:#172b43;font-size:10.5px;font-weight:800;white-space:nowrap;transition:background .18s ease,border-color .18s ease,color .18s ease}
.wj-v10-all-link:hover{background:#e9eef4;border-color:#b9c5d3;color:#0a1b33}
.wj-v10-kicker{display:block;margin-bottom:7px;color:#66809f;font-size:7.8px;font-weight:850;letter-spacing:.12em}

/* Products: four real cards in one desktop row */
.wj-v10-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.wj-v10-product-card{min-width:0;background:#fff;box-shadow:0 8px 24px rgba(15,42,76,.045);transition:transform .2s ease,box-shadow .2s ease}
.wj-v10-product-card:hover{transform:translateY(-3px);box-shadow:0 13px 30px rgba(15,42,76,.075)}
.wj-v10-product-card__media{display:block;height:136px;overflow:hidden;background:#e8edf4}
.wj-v10-product-card__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .32s ease}
.wj-v10-product-card:hover .wj-v10-product-card__media img{transform:scale(1.025)}
.wj-v10-product-card__body{display:flex;flex-direction:column;min-height:154px;padding:15px 16px 16px}
.wj-v10-product-card h3{margin:0 0 6px;font-size:15.2px;line-height:1.22;letter-spacing:-.02em}
.wj-v10-product-card h3 a{color:#0a1b33}
.wj-v10-product-card p{margin:0 0 14px;color:#6e7d8f;font-size:9.8px;line-height:1.48}
.wj-v10-card-link{display:inline-flex;align-items:center;justify-content:center;align-self:flex-start;min-height:31px;margin-top:auto;padding:0 10px;border:1px solid #d5dee8;border-radius:4px;background:#fff;color:#1a2d45;font-size:9.6px;font-weight:800;transition:background .18s ease,border-color .18s ease,color .18s ease}
.wj-v10-card-link:hover{background:#eef2f6;border-color:#bcc8d5;color:#0a1b33}

/* Blog: editorial three-card row, no explanatory paragraph blocks */
.wj-v10-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.wj-v10-blog-card{min-width:0}
.wj-v10-blog-card__media{display:block;height:158px;overflow:hidden;background:#edf1f5}
.wj-v10-blog-card__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .32s ease}
.wj-v10-blog-card:hover .wj-v10-blog-card__media img{transform:scale(1.025)}
.wj-v10-blog-card__body{padding:15px 2px 2px}
.wj-v10-blog-card h3{margin:0 0 15px;max-width:94%;font-size:15.5px;line-height:1.28;letter-spacing:-.02em}
.wj-v10-blog-card h3 a{color:#0a1b33}
.wj-v10-blog-card h3 a:hover{color:#0a1b33;opacity:.72}

/* Compact contact close; no marketing subtitle */
.wj-v10-cta{padding:0;background:#f4f7fb;border-top:1px solid #e4eaf2}
.wj-v10-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:28px;min-height:86px;padding-top:18px;padding-bottom:18px}
.wj-v10-cta h2{font-size:clamp(19px,1.45vw,24px)}
.wj-v10-cta__actions{display:flex;align-items:center;gap:17px;flex:0 0 auto}
.wj-v10-cta__primary{display:inline-flex;align-items:center;justify-content:center;min-height:39px;padding:0 15px;border-radius:4px;background:#075cf6;color:#fff;font-size:10px;font-weight:800;transition:background .18s ease}
.wj-v10-cta__primary:hover{background:#064ed0}
.wj-v10-cta__whatsapp{display:inline-flex;align-items:center;gap:7px;color:#1c3d5d;font-size:10px;font-weight:800}
.wj-v10-cta__whatsapp i{color:#12a85a;font-size:15px}
.wj-v10-cta__whatsapp:hover{color:#12864a}

@media (max-width:1050px){
  .wj-v10-product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
  .wj-v10-product-card__media{height:154px}
  .wj-v10-product-card__body{min-height:145px}
}
@media (max-width:760px){
  .wj-v10-products,.wj-v10-blog{padding-top:30px;padding-bottom:32px}
  .wj-v10-section-head{margin-bottom:15px}
  .wj-v10-blog-grid{grid-template-columns:1fr;gap:22px}
  .wj-v10-blog-card{display:grid;grid-template-columns:145px minmax(0,1fr);gap:15px;align-items:stretch}
  .wj-v10-blog-card__media{height:122px}
  .wj-v10-blog-card__body{padding:7px 0 4px}
  .wj-v10-blog-card h3{margin-bottom:11px;font-size:14.5px}
  .wj-v10-cta__inner{align-items:flex-start;flex-direction:column;gap:12px;padding-top:18px;padding-bottom:18px}
}
@media (max-width:560px){
  .wj-v10-section-head h2{font-size:23px}
  .wj-v10-product-grid{grid-template-columns:1fr;gap:13px}
  .wj-v10-product-card{display:grid;grid-template-columns:118px minmax(0,1fr)}
  .wj-v10-product-card__media{height:100%;min-height:132px}
  .wj-v10-product-card__body{min-height:132px;padding:14px 14px}
  .wj-v10-product-card p{font-size:9.5px;margin-bottom:9px}
  .wj-v10-blog-card{grid-template-columns:112px minmax(0,1fr);gap:12px}
  .wj-v10-blog-card__media{height:108px}
  .wj-v10-blog-card h3{font-size:13.5px;max-width:100%}
  .wj-v10-kicker{font-size:7.2px;margin-bottom:5px}
  .wj-v10-cta__actions{width:100%;justify-content:space-between}
}
@media (max-width:390px){
  .wj-v10-product-card{grid-template-columns:98px minmax(0,1fr)}
  .wj-v10-product-card__media{min-height:126px}
  .wj-v10-product-card__body{min-height:126px;padding:12px}
  .wj-v10-product-card h3{font-size:14px}
  .wj-v10-product-card p{display:none}
  .wj-v10-blog-card{grid-template-columns:96px minmax(0,1fr)}
  .wj-v10-blog-card__media{height:102px}
}

/* =========================================================
   WEBSITEJI HOME V12 — lighter typography + ticker + editorial blog
   Navbar, hero, trust band and footer intentionally untouched.
   ========================================================= */
.wj-v12-flow{background:#fff;color:#0a1b33;overflow:hidden}
.wj-v12-flow *{box-sizing:border-box}
.wj-v12-flow a{text-decoration:none}

.wj-v12-ticker{height:50px;background:#fff;border-top:1px solid #e7ecf2;border-bottom:1px solid #e7ecf2;overflow:hidden}
.wj-v12-ticker__viewport{height:100%;overflow:hidden}
.wj-v12-ticker__track{display:flex;align-items:center;width:max-content;height:100%;gap:23px;padding-left:23px;white-space:nowrap;animation:wjV12Ticker 30s linear infinite;will-change:transform}
.wj-v12-ticker__track span{color:#273b54;font-size:12px;font-weight:500;letter-spacing:.045em}
.wj-v12-ticker__track b{color:#9bb8e3;font-size:12px;font-weight:400}
@keyframes wjV12Ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.wj-v12-products{padding:38px 0 42px;background:#f4f7fb}
.wj-v12-blog{padding:40px 0 44px;background:#fff;border-top:1px solid #edf1f5}
.wj-v12-section-head{display:flex;align-items:center;justify-content:space-between;gap:22px;margin-bottom:18px}
.wj-v12-section-head h2,.wj-v12-cta h2{margin:0;color:#0a1b33;font-size:clamp(24px,1.85vw,30px);font-weight:600;line-height:1.16;letter-spacing:-.025em}
.wj-v12-secondary-btn{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 16px;border:1px solid #d5dde7;border-radius:4px;background:#fff;color:#1e3047;font-size:10.5px;font-weight:500;white-space:nowrap;transition:background .18s ease,border-color .18s ease,color .18s ease}
.wj-v12-secondary-btn:hover{background:#eef2f6;border-color:#c2ccd8;color:#0a1b33}

.wj-v12-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.wj-v12-product-card{min-width:0;background:#fff;transition:transform .2s ease}
.wj-v12-product-card:hover{transform:translateY(-2px)}
.wj-v12-product-card__media{display:block;height:132px;overflow:hidden;background:#e9eef4}
.wj-v12-product-card__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .32s ease}
.wj-v12-product-card:hover .wj-v12-product-card__media img{transform:scale(1.02)}
.wj-v12-product-card__body{display:flex;flex-direction:column;min-height:156px;padding:15px 15px 16px}
.wj-v12-label{display:block;margin-bottom:7px;color:#65768b;font-size:7.8px;font-weight:500;letter-spacing:.105em}
.wj-v12-product-card h3{margin:0 0 6px;font-size:14.8px;font-weight:600;line-height:1.25;letter-spacing:-.015em}
.wj-v12-product-card h3 a{color:#0a1b33}
.wj-v12-product-card p{margin:0 0 14px;color:#6f7d8e;font-size:9.7px;font-weight:400;line-height:1.48}
.wj-v12-card-btn{display:inline-flex;align-items:center;justify-content:center;align-self:flex-start;min-height:32px;margin-top:auto;padding:0 11px;border:1px solid #d5dde7;border-radius:4px;background:#fff;color:#203247;font-size:9.6px;font-weight:500;transition:background .18s ease,border-color .18s ease,color .18s ease}
.wj-v12-card-btn:hover{background:#eef2f6;border-color:#c2ccd8;color:#0a1b33}

.wj-v12-blog-layout{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);gap:30px;align-items:stretch}
.wj-v12-blog-featured{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);min-height:235px;background:#f5f7fa}
.wj-v12-blog-featured__media{display:block;min-height:235px;overflow:hidden;background:#e8edf2}
.wj-v12-blog-featured__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .32s ease}
.wj-v12-blog-featured:hover .wj-v12-blog-featured__media img{transform:scale(1.018)}
.wj-v12-blog-featured__body{display:flex;flex-direction:column;justify-content:center;padding:25px 24px}
.wj-v12-blog-featured h3{margin:0 0 9px;font-size:18px;font-weight:600;line-height:1.28;letter-spacing:-.02em}
.wj-v12-blog-featured h3 a{color:#0a1b33}
.wj-v12-read-time{display:block;margin-bottom:18px;color:#7b8796;font-size:9.5px;font-weight:400}

.wj-v12-blog-list{display:grid;grid-template-rows:1fr 1fr;border-top:1px solid #e4e9ef}
.wj-v12-blog-row{display:grid;grid-template-columns:128px minmax(0,1fr);gap:18px;align-items:center;padding:17px 0;border-bottom:1px solid #e4e9ef}
.wj-v12-blog-row__media{display:block;height:92px;overflow:hidden;background:#eef2f5}
.wj-v12-blog-row__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.wj-v12-blog-row:hover .wj-v12-blog-row__media img{transform:scale(1.02)}
.wj-v12-blog-row__body{display:flex;flex-direction:column;align-items:flex-start;min-width:0}
.wj-v12-blog-row h3{margin:0 0 12px;font-size:14.6px;font-weight:600;line-height:1.3;letter-spacing:-.015em}
.wj-v12-blog-row h3 a{color:#0a1b33}

.wj-v12-cta{padding:0;background:#f4f7fb;border-top:1px solid #e3e9f0}
.wj-v12-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:28px;min-height:82px;padding-top:17px;padding-bottom:17px}
.wj-v12-cta h2{font-size:clamp(18px,1.35vw,22px);font-weight:600}
.wj-v12-cta__actions{display:flex;align-items:center;gap:16px;flex:0 0 auto}
.wj-v12-cta__primary{display:inline-flex;align-items:center;justify-content:center;min-height:39px;padding:0 16px;border-radius:4px;background:#075cf6;color:#fff;font-size:10px;font-weight:500;transition:background .18s ease}
.wj-v12-cta__primary:hover{background:#064ed0}
.wj-v12-cta__whatsapp{display:inline-flex;align-items:center;gap:7px;color:#24405e;font-size:10px;font-weight:500}
.wj-v12-cta__whatsapp i{color:#12a85a;font-size:15px}
.wj-v12-cta__whatsapp:hover{color:#12864a}

@media (max-width:1024px){
  .wj-v12-product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
  .wj-v12-product-card__media{height:154px}
  .wj-v12-blog-layout{grid-template-columns:1fr;gap:22px}
  .wj-v12-blog-featured{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr)}
  .wj-v12-blog-list{grid-template-columns:1fr 1fr;grid-template-rows:auto;gap:18px;border-top:0}
  .wj-v12-blog-row{grid-template-columns:112px minmax(0,1fr);border-top:1px solid #e4e9ef}
}
@media (max-width:760px){
  .wj-v12-ticker{height:46px}
  .wj-v12-ticker__track{gap:18px;padding-left:18px;animation-duration:26s}
  .wj-v12-ticker__track span{font-size:11px}
  .wj-v12-products,.wj-v12-blog{padding-top:30px;padding-bottom:32px}
  .wj-v12-section-head{margin-bottom:15px}
  .wj-v12-product-grid{grid-template-columns:1fr;gap:13px}
  .wj-v12-product-card{display:grid;grid-template-columns:124px minmax(0,1fr)}
  .wj-v12-product-card__media{height:100%;min-height:132px}
  .wj-v12-product-card__body{min-height:132px;padding:14px}
  .wj-v12-product-card p{font-size:9.4px;margin-bottom:9px}
  .wj-v12-blog-featured{grid-template-columns:1fr;min-height:0}
  .wj-v12-blog-featured__media{min-height:180px;height:180px}
  .wj-v12-blog-featured__body{padding:20px}
  .wj-v12-blog-list{grid-template-columns:1fr;gap:0}
  .wj-v12-blog-row{grid-template-columns:108px minmax(0,1fr);gap:14px;padding:14px 0}
  .wj-v12-blog-row__media{height:88px}
  .wj-v12-cta__inner{align-items:flex-start;flex-direction:column;gap:12px;padding-top:18px;padding-bottom:18px}
}
@media (max-width:480px){
  .wj-v12-section-head h2{font-size:23px}
  .wj-v12-secondary-btn{min-height:35px;padding:0 12px;font-size:10px}
  .wj-v12-product-card{grid-template-columns:104px minmax(0,1fr)}
  .wj-v12-product-card__media{min-height:126px}
  .wj-v12-product-card__body{min-height:126px;padding:12px}
  .wj-v12-product-card h3{font-size:14px}
  .wj-v12-product-card p{display:none}
  .wj-v12-blog-featured__media{height:158px;min-height:158px}
  .wj-v12-blog-featured h3{font-size:16px}
  .wj-v12-blog-row{grid-template-columns:92px minmax(0,1fr);gap:12px}
  .wj-v12-blog-row__media{height:78px}
  .wj-v12-blog-row h3{font-size:13.5px}
  .wj-v12-card-btn{min-height:30px;font-size:9.2px}
  .wj-v12-cta__actions{width:100%;justify-content:space-between}
}
@media (prefers-reduced-motion:reduce){
  .wj-v12-ticker__track{animation:none}
  .wj-v12-product-card,.wj-v12-product-card__media img,.wj-v12-blog-featured__media img,.wj-v12-blog-row__media img{transition:none}
}


/* =========================================================
   WEBSITEJI HOME V13 — GEO + trust content architecture
   Scope: hero/trust sonrası, footer öncesi. Protected areas untouched.
   ========================================================= */
.wj-v13-flow{overflow:hidden;background:#fff;color:#0b1b31}
.wj-v13-flow *{box-sizing:border-box}
.wj-v13-flow a{text-decoration:none}
.wj-v13-flow h2,.wj-v13-flow h3,.wj-v13-flow p{font-weight:400}
.wj-v13-ticker{height:48px;background:#075cf6;border-top:1px solid #075cf6;border-bottom:1px solid #075cf6;overflow:hidden}
.wj-v13-ticker__viewport{height:100%;overflow:hidden}
.wj-v13-ticker__track{display:flex;align-items:center;width:max-content;height:100%;gap:22px;padding-left:22px;white-space:nowrap;animation:wjV13Ticker 32s linear infinite;will-change:transform}
.wj-v13-ticker__track span{color:#fff;font-size:11px;font-weight:500;letter-spacing:.045em}
.wj-v13-ticker__track b{color:rgba(255,255,255,.58);font-size:10px;font-weight:400}
@keyframes wjV13Ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.wj-v13-about{position:relative;padding:38px 0 34px;background-color:#fff;background-image:linear-gradient(rgba(15,45,80,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(15,45,80,.028) 1px,transparent 1px);background-size:30px 30px}
.wj-v13-about:after{content:"";position:absolute;right:5%;top:15%;width:220px;height:220px;border-radius:50%;background:rgba(44,115,230,.055);filter:blur(55px);pointer-events:none}
.wj-v13-about__top{position:relative;z-index:1;display:grid;grid-template-columns:210px minmax(0,720px);gap:48px;align-items:start}
.wj-v13-about__top h2,.wj-v13-section-head h2,.wj-v13-common h2,.wj-v13-featured h2,.wj-v13-cta h2{margin:0;color:#0b1b31;font-size:clamp(23px,1.75vw,29px);font-weight:600;line-height:1.18;letter-spacing:-.025em}
.wj-v13-about__top p{margin:0;color:#526276;font-size:12px;font-weight:400;line-height:1.75}
.wj-v13-about__facts{position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:28px;border-top:1px solid #dfe6ee}
.wj-v13-about__facts>div{position:relative;padding:20px 22px 4px 0}
.wj-v13-about__facts>div+div{padding-left:22px}
.wj-v13-about__facts>div+div:before{content:"";position:absolute;left:0;top:18px;bottom:0;width:1px;background:#e2e8ef}
.wj-v13-about__facts i{display:block;margin-bottom:13px;color:#30465f;font-size:17px}
.wj-v13-about__facts strong{display:block;margin-bottom:6px;color:#15283f;font-size:12px;font-weight:600}
.wj-v13-about__facts span{display:block;color:#69788a;font-size:9.8px;font-weight:400;line-height:1.52}

.wj-v13-products{position:relative;padding:37px 0 42px;background-color:#f5f8fc;background-image:linear-gradient(rgba(9,35,68,.024) 1px,transparent 1px),linear-gradient(90deg,rgba(9,35,68,.024) 1px,transparent 1px);background-size:26px 26px}
.wj-v13-section-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:18px}
.wj-v13-secondary-btn,.wj-v13-card-btn,.wj-v13-primary-btn{display:inline-flex;align-items:center;justify-content:center;border:1px solid #d2dbe6;border-radius:4px;background:#fff;color:#25384e;font-weight:500;transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease}
.wj-v13-secondary-btn{min-height:37px;padding:0 15px;font-size:10px}
.wj-v13-secondary-btn:hover,.wj-v13-card-btn:hover{background:#edf2f7;border-color:#bdc9d6;color:#102238}
.wj-v13-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:15px}
.wj-v13-product-card{min-width:0;background:#fff;box-shadow:0 8px 24px rgba(21,48,77,.045);transition:transform .22s ease,box-shadow .22s ease}
.wj-v13-product-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(21,48,77,.075)}
.wj-v13-product-card__media{display:block;height:136px;overflow:hidden;background:#e8eef5}
.wj-v13-product-card__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .32s ease}
.wj-v13-product-card:hover img{transform:scale(1.02)}
.wj-v13-product-card__body{display:flex;flex-direction:column;min-height:167px;padding:16px}
.wj-v13-label{display:block;margin-bottom:7px;color:#6b7888;font-size:7.7px;font-weight:500;letter-spacing:.095em}
.wj-v13-product-card h3,.wj-v13-blog-card h3{margin:0 0 7px;font-size:14.5px;font-weight:600;line-height:1.3;letter-spacing:-.012em}
.wj-v13-product-card h3 a,.wj-v13-blog-card h3 a{color:#10243b}
.wj-v13-product-card p,.wj-v13-blog-card p{margin:0;color:#6a7888;font-size:9.6px;font-weight:400;line-height:1.52}
.wj-v13-card-btn{align-self:flex-start;min-height:31px;margin-top:auto;padding:0 11px;font-size:9.4px}

.wj-v13-common{padding:26px 0;background:#0b1d36;color:#fff}
.wj-v13-common__inner{display:grid;grid-template-columns:225px minmax(0,1fr);gap:34px;align-items:center}
.wj-v13-common h2{color:#fff;font-size:21px}
.wj-v13-common__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr))}
.wj-v13-common__grid>div{position:relative;padding:2px 20px}
.wj-v13-common__grid>div+div:before{content:"";position:absolute;left:0;top:2px;bottom:2px;width:1px;background:rgba(180,204,232,.18)}
.wj-v13-common__grid strong{display:block;margin-bottom:5px;color:#f3f7fc;font-size:10.5px;font-weight:600}
.wj-v13-common__grid span{display:block;color:#9fb0c4;font-size:9px;font-weight:400;line-height:1.48}

.wj-v13-featured{padding:34px 0;background:#fff}
.wj-v13-featured__box{position:relative;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr);min-height:240px;overflow:hidden;background:#f2f6fb;border:1px solid #e2e8ef}
.wj-v13-featured__box:before{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(13,51,91,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(13,51,91,.025) 1px,transparent 1px);background-size:28px 28px}
.wj-v13-featured__copy{position:relative;z-index:1;padding:28px 30px}
.wj-v13-featured h2{font-size:24px;margin-bottom:9px}
.wj-v13-featured__copy>p{max-width:660px;margin:0 0 15px;color:#58687a;font-size:10.8px;font-weight:400;line-height:1.6}
.wj-v13-featured ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 22px;margin:0 0 18px;padding:0;list-style:none}
.wj-v13-featured li{position:relative;padding-left:15px;color:#344a61;font-size:9.5px;line-height:1.45}
.wj-v13-featured li:before{content:"";position:absolute;left:0;top:.52em;width:5px;height:5px;border-radius:50%;background:#74879d}
.wj-v13-primary-btn{min-height:36px;padding:0 14px;background:#0d2a4c;border-color:#0d2a4c;color:#fff;font-size:9.8px}
.wj-v13-primary-btn:hover{background:#153b67;border-color:#153b67;color:#fff}
.wj-v13-featured__media{position:relative;z-index:1;margin:20px 22px 20px 0;min-height:190px;overflow:hidden;background:#dfe7f0}
.wj-v13-featured__media img{display:block;width:100%;height:100%;object-fit:cover}

.wj-v13-blog{padding:38px 0 42px;background:#fff}
.wj-v13-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.wj-v13-blog-card{min-width:0;background:#fff}
.wj-v13-blog-card__media{display:block;height:150px;overflow:hidden;background:#eaf0f5}
.wj-v13-blog-card__media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.wj-v13-blog-card:hover .wj-v13-blog-card__media img{transform:scale(1.018)}
.wj-v13-blog-card__body{padding:15px 2px 2px}
.wj-v13-blog-card h3{font-size:15px;margin-bottom:7px}
.wj-v13-blog-card p{max-width:95%;font-size:9.8px;line-height:1.55}
.wj-v13-blog-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:13px;padding-top:11px;border-top:1px solid #e5eaf0}
.wj-v13-blog-meta span{color:#8390a0;font-size:8.7px;font-weight:400}
.wj-v13-blog-meta a{color:#273a50;font-size:9.3px;font-weight:500}
.wj-v13-blog-meta a:hover{color:#0b1b31}

.wj-v13-faq{position:relative;padding:37px 0 40px;background-color:#f5f8fc;background-image:linear-gradient(rgba(9,35,68,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(9,35,68,.022) 1px,transparent 1px);background-size:30px 30px}
.wj-v13-section-head--faq{margin-bottom:16px}
.wj-v13-faq__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 24px}
.wj-v13-faq details{border-top:1px solid #dce4ed}
.wj-v13-faq details:nth-last-child(-n+2){border-bottom:1px solid #dce4ed}
.wj-v13-faq summary{position:relative;display:flex;align-items:center;min-height:52px;padding:11px 34px 11px 0;cursor:pointer;list-style:none;color:#172a40;font-size:10.8px;font-weight:500;line-height:1.4}
.wj-v13-faq summary::-webkit-details-marker{display:none}
.wj-v13-faq summary:after{content:"+";position:absolute;right:3px;top:50%;transform:translateY(-50%);color:#62748a;font-size:17px;font-weight:400}
.wj-v13-faq details[open] summary:after{content:"−"}
.wj-v13-faq details p{margin:-3px 28px 15px 0;color:#627184;font-size:9.7px;font-weight:400;line-height:1.62}

.wj-v13-cta{background:#fff;border-top:1px solid #e6ebf1}
.wj-v13-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:28px;min-height:96px;padding-top:18px;padding-bottom:18px}
.wj-v13-cta h2{font-size:20px;margin-bottom:4px}
.wj-v13-cta p{margin:0;color:#708094;font-size:9.5px;font-weight:400}
.wj-v13-cta__actions{display:flex;align-items:center;gap:17px;flex:0 0 auto}
.wj-v13-cta__primary{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 16px;border-radius:4px;background:#075cf6;color:#fff;font-size:9.8px;font-weight:500;transition:background .18s ease}
.wj-v13-cta__primary:hover{background:#064fd2}
.wj-v13-cta__whatsapp{display:inline-flex;align-items:center;gap:7px;color:#30465e;font-size:9.8px;font-weight:500}
.wj-v13-cta__whatsapp i{color:#15a95d;font-size:15px}

@media (max-width:1050px){
 .wj-v13-about__top{grid-template-columns:180px minmax(0,1fr);gap:32px}
 .wj-v13-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
 .wj-v13-product-card__media{height:155px}
 .wj-v13-common__inner{grid-template-columns:180px minmax(0,1fr)}
 .wj-v13-featured__box{grid-template-columns:minmax(0,1.1fr) minmax(230px,.9fr)}
}
@media (max-width:820px){
 .wj-v13-about,.wj-v13-products,.wj-v13-featured,.wj-v13-blog,.wj-v13-faq{padding-top:30px;padding-bottom:32px}
 .wj-v13-about__top{grid-template-columns:1fr;gap:10px}
 .wj-v13-about__facts{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:16px}
 .wj-v13-about__facts>div:nth-child(3){padding-left:0}
 .wj-v13-about__facts>div:nth-child(3):before{display:none}
 .wj-v13-common__inner{grid-template-columns:1fr;gap:18px}
 .wj-v13-common__grid{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:16px}
 .wj-v13-common__grid>div:nth-child(3):before{display:none}
 .wj-v13-featured__box{grid-template-columns:1fr}
 .wj-v13-featured__media{height:175px;min-height:175px;margin:0 20px 20px}
 .wj-v13-blog-grid{grid-template-columns:1fr 1fr}
 .wj-v13-blog-card:last-child{grid-column:1/-1;display:grid;grid-template-columns:180px minmax(0,1fr);gap:15px;border-top:1px solid #e5eaf0;padding-top:16px}
 .wj-v13-blog-card:last-child .wj-v13-blog-card__media{height:120px}
 .wj-v13-blog-card:last-child .wj-v13-blog-card__body{padding-top:4px}
 .wj-v13-faq__grid{grid-template-columns:1fr}
 .wj-v13-faq details:nth-last-child(-n+2){border-bottom:0}
 .wj-v13-faq details:last-child{border-bottom:1px solid #dce4ed}
}
@media (max-width:580px){
 .wj-v13-ticker{height:44px}
 .wj-v13-ticker__track{gap:17px;padding-left:17px;animation-duration:27s}
 .wj-v13-ticker__track span{font-size:10px}
 .wj-v13-about__facts{grid-template-columns:1fr;margin-top:22px}
 .wj-v13-about__facts>div,.wj-v13-about__facts>div+div{padding:15px 0}
 .wj-v13-about__facts>div+div:before{top:0;right:0;bottom:auto;width:auto;height:1px}
 .wj-v13-about__facts>div:nth-child(3):before{display:block}
 .wj-v13-section-head h2,.wj-v13-about__top h2{font-size:22px}
 .wj-v13-secondary-btn{min-height:34px;padding:0 12px}
 .wj-v13-product-grid{grid-template-columns:1fr;gap:13px}
 .wj-v13-product-card{display:grid;grid-template-columns:112px minmax(0,1fr)}
 .wj-v13-product-card__media{height:100%;min-height:142px}
 .wj-v13-product-card__body{min-height:142px;padding:13px}
 .wj-v13-product-card p{font-size:9.2px}
 .wj-v13-common__grid{grid-template-columns:1fr 1fr}
 .wj-v13-common__grid>div{padding:2px 12px 2px 0}
 .wj-v13-common__grid>div+div{padding-left:12px}
 .wj-v13-common__grid>div:nth-child(3){padding-left:0}
 .wj-v13-featured__copy{padding:22px 20px}
 .wj-v13-featured ul{grid-template-columns:1fr;gap:6px}
 .wj-v13-blog-grid{grid-template-columns:1fr;gap:24px}
 .wj-v13-blog-card:last-child{display:block;grid-column:auto;border-top:0;padding-top:0}
 .wj-v13-blog-card:last-child .wj-v13-blog-card__media,.wj-v13-blog-card__media{height:145px}
 .wj-v13-blog-card:last-child .wj-v13-blog-card__body{padding-top:15px}
 .wj-v13-cta__inner{align-items:flex-start;flex-direction:column;gap:12px}
 .wj-v13-cta__actions{width:100%;justify-content:space-between}
}
@media (prefers-reduced-motion:reduce){.wj-v13-ticker__track{animation:none}.wj-v13-product-card,.wj-v13-product-card img,.wj-v13-blog-card img{transition:none}}

/* Websiteji v14 - Blog slider */
.wj-v14-blog{
    position:relative;
    overflow:hidden;
    padding:38px 0 42px;
    background:
        radial-gradient(circle at 8% 18%, rgba(40,101,255,.055), transparent 24%),
        radial-gradient(circle at 92% 82%, rgba(11,29,54,.035), transparent 24%),
        #f7f9fc;
}
.wj-v14-blog:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.5;
    background-image:
        linear-gradient(rgba(17,45,80,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,45,80,.026) 1px, transparent 1px);
    background-size:34px 34px;
    mask-image:linear-gradient(to bottom,transparent 0,#000 14%,#000 86%,transparent 100%);
}
.wj-v14-blog .container{position:relative;z-index:1}
.wj-v14-blog__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:16px;
}
.wj-v14-blog__head h2{
    margin:0;
    color:#10243b;
    font-size:26px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:-.025em;
}
.wj-v14-blog-swiper{
    width:100%;
    overflow:hidden;
    padding:2px 2px 32px;
}
.wj-v14-blog-card{
    height:auto;
    overflow:hidden;
    background:#fff;
    border:1px solid #e4eaf1;
    border-radius:6px;
    box-shadow:0 7px 24px rgba(16,36,59,.045);
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.wj-v14-blog-card:hover{
    transform:translateY(-3px);
    border-color:#d7e0ea;
    box-shadow:0 13px 34px rgba(16,36,59,.075);
}
.wj-v14-blog-card__media{
    position:relative;
    display:block;
    height:132px;
    overflow:hidden;
    background:#dfe6ed;
}
.wj-v14-blog-card__media:after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(5,20,39,.17),rgba(5,20,39,.29));
    transition:opacity .25s ease;
}
.wj-v14-blog-card:hover .wj-v14-blog-card__media:after{opacity:.72}
.wj-v14-blog-card__media img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(.84) contrast(.98);
    transform:scale(1.01);
    transition:transform .35s ease,filter .35s ease;
}
.wj-v14-blog-card:hover .wj-v14-blog-card__media img{
    transform:scale(1.035);
    filter:saturate(.92) contrast(1);
}
.wj-v14-blog-card__body{
    display:flex;
    flex-direction:column;
    min-height:190px;
    padding:15px 16px 14px;
}
.wj-v14-blog-card__category{
    display:block;
    margin-bottom:7px;
    color:#6f7e90;
    font-size:8px;
    font-weight:500;
    letter-spacing:.1em;
}
.wj-v14-blog-card h3{
    margin:0 0 7px;
    font-size:14.5px;
    font-weight:600;
    line-height:1.36;
    letter-spacing:-.012em;
}
.wj-v14-blog-card h3 a{color:#122a43}
.wj-v14-blog-card p{
    display:-webkit-box;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    margin:0;
    color:#6c7b8c;
    font-size:9.6px;
    font-weight:400;
    line-height:1.55;
}
.wj-v14-blog-card__footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:auto;
    padding-top:13px;
    border-top:1px solid #e8edf2;
}
.wj-v14-blog-card__footer span{
    color:#8a97a6;
    font-size:8.6px;
    font-weight:400;
}
.wj-v14-blog-card__footer a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:0 10px;
    border:1px solid #dbe3ec;
    border-radius:4px;
    background:#fff;
    color:#253a50;
    font-size:9px;
    font-weight:500;
    transition:background .18s ease,border-color .18s ease;
}
.wj-v14-blog-card__footer a:hover{
    background:#f1f4f8;
    border-color:#ccd7e2;
    color:#182e46;
}
.wj-v14-blog-pagination{
    bottom:2px!important;
    line-height:1;
}
.wj-v14-blog-pagination .swiper-pagination-bullet{
    width:18px;
    height:3px;
    margin:0 3px!important;
    border-radius:0;
    background:#b5c0cc;
    opacity:.5;
    transition:width .2s ease,opacity .2s ease,background .2s ease;
}
.wj-v14-blog-pagination .swiper-pagination-bullet-active{
    width:30px;
    background:#26415f;
    opacity:1;
}
@media (max-width:900px){
    .wj-v14-blog{padding:32px 0 36px}
    .wj-v14-blog-card__media{height:138px}
    .wj-v14-blog-card__body{min-height:188px}
}
@media (max-width:640px){
    .wj-v14-blog{padding:28px 0 32px}
    .wj-v14-blog__head{margin-bottom:13px}
    .wj-v14-blog__head h2{font-size:22px}
    .wj-v14-blog-swiper{padding-bottom:28px}
    .wj-v14-blog-card__media{height:142px}
    .wj-v14-blog-card__body{min-height:184px;padding:14px}
    .wj-v14-blog-card h3{font-size:14px}
}
@media (prefers-reduced-motion:reduce){
    .wj-v14-blog-card,.wj-v14-blog-card__media img{transition:none}
}

/* =========================================================
   v15 — Blog slider compact cards + single-column FAQ
   Only blog/FAQ presentation adjusted.
   ========================================================= */

/* Blog: narrower cards, denser rhythm, smaller media */
.wj-v14-blog-swiper{
    overflow:hidden;
    padding:2px 2px 30px;
}
.wj-v14-blog-card{
    border-color:#e2e8ef;
    box-shadow:0 5px 18px rgba(16,36,59,.038);
}
.wj-v14-blog-card__media{
    height:112px;
}
.wj-v14-blog-card__body{
    min-height:158px;
    padding:13px 14px 12px;
}
.wj-v14-blog-card__category{
    margin-bottom:6px;
    font-size:7.7px;
    letter-spacing:.095em;
}
.wj-v14-blog-card h3{
    margin-bottom:6px;
    font-size:13.4px;
    font-weight:550;
    line-height:1.34;
}
.wj-v14-blog-card p{
    font-size:9.2px;
    line-height:1.5;
}
.wj-v14-blog-card__footer{
    padding-top:10px;
    gap:8px;
}
.wj-v14-blog-card__footer a{
    min-height:28px;
    padding:0 9px;
    font-size:8.6px;
}
.wj-v14-blog-card__footer span{
    font-size:8.2px;
}

/* FAQ: true accordion, one item per row */
.wj-v13-faq__grid{
    display:block !important;
    max-width:100% !important;
}
.wj-v13-faq details{
    width:100%;
    border-top:1px solid #dce4ed;
    background:transparent;
}
.wj-v13-faq details:nth-last-child(-n+2){
    border-bottom:0;
}
.wj-v13-faq details:last-child{
    border-bottom:1px solid #dce4ed;
}
.wj-v13-faq summary{
    min-height:50px;
    padding:12px 38px 12px 0;
    font-size:11.5px;
    font-weight:500;
    line-height:1.4;
}
.wj-v13-faq details p{
    max-width:980px;
    margin:-2px 42px 16px 0;
    font-size:10.2px;
    line-height:1.65;
}

@media (max-width:1023px){
    .wj-v14-blog-card__media{height:118px;}
    .wj-v14-blog-card__body{min-height:164px;}
}
@media (max-width:639px){
    .wj-v14-blog-card__media{height:124px;}
    .wj-v14-blog-card__body{min-height:166px;padding:13px;}
    .wj-v14-blog-card h3{font-size:13.6px;}
    .wj-v13-faq summary{font-size:11.2px;}
    .wj-v13-faq details p{margin-right:18px;font-size:10px;}
}

/* =========================================================
   v16 - Blog cover image height adjustment only
   Keeps slider/card widths and FAQ layout untouched.
   ========================================================= */
.wj-v14-blog-card__media{
    height:150px !important;
}
@media (max-width: 960px){
    .wj-v14-blog-card__media{height:145px !important;}
}
@media (max-width: 640px){
    .wj-v14-blog-card__media{height:148px !important;}
}


/* Websiteji v18 - compact brand / trust section */
.wj-v18-about{
    position:relative;
    overflow:hidden;
    padding:34px 0 36px;
    background:
        radial-gradient(circle at 90% 18%,rgba(7,92,246,.075),transparent 29%),
        radial-gradient(circle at 12% 84%,rgba(35,126,255,.035),transparent 24%),
        linear-gradient(180deg,#f7faff 0%,#ffffff 100%);
}
.wj-v18-about::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.42;
    background-image:
        linear-gradient(rgba(22,55,91,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(22,55,91,.045) 1px,transparent 1px);
    background-size:32px 32px;
    -webkit-mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.62) 34%,rgba(0,0,0,.16) 72%,transparent 100%);
            mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.62) 34%,rgba(0,0,0,.16) 72%,transparent 100%);
}
.wj-v18-about__layout{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(250px,.9fr) minmax(0,1.55fr);
    gap:52px;
    align-items:stretch;
}
.wj-v18-about__brand{
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:190px;
    padding-right:8px;
}
.wj-v18-about__logo{
    display:block;
    width:154px;
    max-width:55%;
    height:auto;
    margin:0 0 20px;
}
.wj-v18-about__brand h2{
    max-width:390px;
    margin:0 0 11px;
    color:#0b1b31;
    font-size:clamp(20px,1.48vw,26px);
    font-weight:600;
    line-height:1.24;
    letter-spacing:-.025em;
}
.wj-v18-about__brand p{
    max-width:440px;
    margin:0;
    color:#5d6d80;
    font-size:11.5px;
    font-weight:400;
    line-height:1.7;
}
.wj-v18-about__facts{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    align-self:stretch;
}
.wj-v18-about__facts article{
    display:grid;
    grid-template-columns:36px minmax(0,1fr);
    gap:14px;
    align-content:center;
    min-height:96px;
    padding:20px 24px;
}
.wj-v18-about__facts article:nth-child(odd){border-right:1px solid rgba(30,60,95,.10)}
.wj-v18-about__facts article:nth-child(-n+2){border-bottom:1px solid rgba(30,60,95,.10)}
.wj-v18-about__facts i{
    display:grid;
    place-items:center;
    width:32px;
    height:32px;
    color:#075cf6;
    font-size:17px;
}
.wj-v18-about__facts h3{
    margin:0 0 5px;
    color:#142841;
    font-size:12px;
    font-weight:600;
    line-height:1.35;
}
.wj-v18-about__facts p{
    margin:0;
    color:#66778a;
    font-size:10px;
    font-weight:400;
    line-height:1.55;
}
@media (max-width:900px){
    .wj-v18-about{padding:30px 0 32px}
    .wj-v18-about__layout{grid-template-columns:1fr;gap:24px}
    .wj-v18-about__brand{min-height:0;padding-right:0}
    .wj-v18-about__logo{width:142px;margin-bottom:16px}
}
@media (max-width:620px){
    .wj-v18-about{padding:26px 0 28px}
    .wj-v18-about::before{background-size:26px 26px;opacity:.34}
    .wj-v18-about__facts{grid-template-columns:1fr}
    .wj-v18-about__facts article{min-height:0;padding:16px 0;border-right:0!important;border-bottom:1px solid rgba(30,60,95,.10)!important}
    .wj-v18-about__facts article:last-child{border-bottom:0!important}
    .wj-v18-about__brand h2{font-size:21px}
    .wj-v18-about__brand p{font-size:11px}
}
\n\n/* =========================================================\n   Websiteji v19 — lower-page refinement\n   Blog / FAQ / common product band / featured product / CTA only.\n   Navbar, hero, trust band and footer are untouched.\n   ========================================================= */\n\n/* 1) Common product qualities: readable, compact dark band */\n.wj-v13-common{\n    padding:34px 0;\n    background:\n        radial-gradient(circle at 88% 18%,rgba(40,112,255,.14),transparent 28%),\n        linear-gradient(90deg,#091b32 0%,#0b213d 100%);\n}\n.wj-v13-common__inner{\n    grid-template-columns:220px minmax(0,1fr);\n    gap:38px;\n}\n.wj-v13-common h2{\n    font-size:22px;\n    font-weight:600;\n    line-height:1.22;\n}\n.wj-v13-common__grid>div{padding:4px 22px;}\n.wj-v13-common__grid strong{\n    margin-bottom:7px;\n    color:#fff;\n    font-size:11.5px;\n    font-weight:500;\n}\n.wj-v13-common__grid span{\n    color:#b8c7d8;\n    font-size:9.8px;\n    line-height:1.55;\n}\n.wj-v13-common__grid>div+div:before{background:rgba(198,218,240,.16);}\n\n/* 2) Featured product: clearer contrast, compact but not flat */\n.wj-v13-featured{padding:38px 0;background:#fff;}\n.wj-v13-featured__box{\n    grid-template-columns:minmax(0,1.16fr) minmax(300px,.84fr);\n    min-height:248px;\n    border:1px solid #dfe7f0;\n    background:\n        radial-gradient(circle at 86% 20%,rgba(7,92,246,.09),transparent 31%),\n        linear-gradient(135deg,#f3f7fd 0%,#f9fbfe 58%,#eef5ff 100%);\n}\n.wj-v13-featured__box:before{\n    opacity:.5;\n    background-image:linear-gradient(rgba(26,74,126,.026) 1px,transparent 1px),linear-gradient(90deg,rgba(26,74,126,.026) 1px,transparent 1px);\n    background-size:30px 30px;\n}\n.wj-v13-featured__copy{padding:30px 34px;}\n.wj-v13-featured h2{font-size:25px;font-weight:600;margin-bottom:10px;}\n.wj-v13-featured__copy>p{\n    max-width:690px;\n    margin-bottom:17px;\n    color:#53667a;\n    font-size:11.2px;\n    line-height:1.65;\n}\n.wj-v13-featured ul{gap:9px 28px;margin-bottom:20px;}\n.wj-v13-featured li{\n    padding-left:16px;\n    color:#30475e;\n    font-size:10px;\n    font-weight:400;\n}\n.wj-v13-featured li:before{width:4px;height:4px;background:#075cf6;}\n.wj-v13-featured__media{\n    align-self:center;\n    height:188px;\n    min-height:188px;\n    margin:18px 20px 18px 0;\n    border:1px solid rgba(33,72,114,.10);\n    box-shadow:0 12px 28px rgba(22,52,86,.08);\n}\n\n/* 3) Blog: 3 balanced cards on desktop, visible covers, cleaner surface */\n.wj-v14-blog{\n    padding:40px 0 44px;\n    background:\n        radial-gradient(circle at 10% 16%,rgba(7,92,246,.055),transparent 24%),\n        radial-gradient(circle at 94% 86%,rgba(11,29,54,.035),transparent 24%),\n        #f5f8fc;\n}\n.wj-v14-blog:before{opacity:.22;background-size:38px 38px;}\n.wj-v14-blog__head{margin-bottom:18px;}\n.wj-v14-blog__head h2{font-size:26px;font-weight:600;}\n.wj-v14-blog-swiper{padding:3px 3px 34px;}\n.wj-v14-blog-card{\n    border:1px solid #dde5ee;\n    border-radius:5px;\n    box-shadow:0 8px 24px rgba(16,36,59,.05);\n}\n.wj-v14-blog-card__media{height:170px !important;background:#dfe7ef;}\n.wj-v14-blog-card__media:after{\n    background:linear-gradient(180deg,rgba(5,20,39,.08),rgba(5,20,39,.18));\n}\n.wj-v14-blog-card:hover .wj-v14-blog-card__media:after{opacity:.64;}\n.wj-v14-blog-card__media img{filter:saturate(.94) contrast(1);}\n.wj-v14-blog-card__body{\n    min-height:202px;\n    padding:17px 18px 15px;\n}\n.wj-v14-blog-card__category{\n    margin-bottom:8px;\n    color:#6e7e91;\n    font-size:8px;\n    font-weight:500;\n}\n.wj-v14-blog-card h3{\n    margin-bottom:8px;\n    font-size:14.8px;\n    font-weight:550;\n    line-height:1.38;\n}\n.wj-v14-blog-card p{\n    font-size:9.8px;\n    line-height:1.58;\n    color:#647589;\n}\n.wj-v14-blog-card__footer{padding-top:13px;}\n.wj-v14-blog-card__footer span{font-size:8.7px;}\n.wj-v14-blog-card__footer a{\n    min-height:31px;\n    padding:0 11px;\n    font-size:9px;\n    font-weight:500;\n}\n\n/* 4) FAQ: centered, single-column, true accordion cards, no grid background */\n.wj-v13-faq{\n    padding:44px 0 48px;\n    background:#fff;\n    background-image:none;\n}\n.wj-v13-faq .container{max-width:1060px;}\n.wj-v13-section-head--faq{\n    max-width:960px;\n    margin:0 auto 18px;\n}\n.wj-v13-section-head--faq h2{font-size:26px;font-weight:600;}\n.wj-v13-faq__grid{\n    display:block !important;\n    width:100%;\n    max-width:960px !important;\n    margin:0 auto;\n}\n.wj-v13-faq details{\n    width:100%;\n    margin:0 0 9px;\n    overflow:hidden;\n    border:1px solid #e0e7ef !important;\n    border-radius:5px;\n    background:#fff;\n    box-shadow:0 3px 12px rgba(17,42,70,.025);\n    transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;\n}\n.wj-v13-faq details[open]{\n    border-color:#ccd9e7 !important;\n    background:#f9fbfe;\n    box-shadow:0 7px 20px rgba(17,42,70,.045);\n}\n.wj-v13-faq summary{\n    min-height:60px;\n    padding:16px 54px 16px 18px;\n    color:#172a40;\n    font-size:12.4px;\n    font-weight:500;\n    line-height:1.45;\n}\n.wj-v13-faq summary:after{\n    right:18px;\n    width:26px;\n    height:26px;\n    display:grid;\n    place-items:center;\n    border:1px solid #d7e0e9;\n    border-radius:50%;\n    color:#4e647b;\n    background:#fff;\n    font-size:16px;\n    line-height:1;\n}\n.wj-v13-faq details[open] summary:after{\n    color:#075cf6;\n    border-color:#b8cef2;\n    background:#f3f7ff;\n}\n.wj-v13-faq details p{\n    max-width:820px;\n    margin:-3px 56px 18px 18px;\n    padding-top:0;\n    color:#617287;\n    font-size:10.6px;\n    font-weight:400;\n    line-height:1.7;\n}\n\n/* 5) CTA: stronger final step without becoming a hero */\n.wj-v13-cta{\n    border-top:1px solid #dce7f4;\n    border-bottom:1px solid #dce7f4;\n    background:\n        radial-gradient(circle at 82% 20%,rgba(7,92,246,.08),transparent 26%),\n        #eef4fd;\n}\n.wj-v13-cta__inner{min-height:112px;padding-top:22px;padding-bottom:22px;}\n.wj-v13-cta h2{font-size:21px;font-weight:600;margin-bottom:5px;}\n.wj-v13-cta p{font-size:10px;color:#637589;}\n\n/* Keep middle-page typography restrained */\n.wj-v13-common strong,\n.wj-v13-featured h2,\n.wj-v14-blog-card h3,\n.wj-v13-faq summary,\n.wj-v13-cta h2{font-weight:600;}\n\n@media (max-width:1023px){\n    .wj-v13-common{padding:30px 0;}\n    .wj-v13-common__inner{grid-template-columns:1fr;gap:20px;}\n    .wj-v13-common__grid{grid-template-columns:repeat(2,minmax(0,1fr));}\n    .wj-v13-common__grid>div:nth-child(3):before{display:none;}\n    .wj-v13-featured__box{grid-template-columns:1fr;}\n    .wj-v13-featured__media{height:190px;min-height:190px;margin:0 24px 22px;}\n    .wj-v14-blog-card__media{height:160px !important;}\n    .wj-v14-blog-card__body{min-height:190px;}\n}\n@media (max-width:640px){\n    .wj-v13-common{padding:27px 0;}\n    .wj-v13-common__grid{grid-template-columns:1fr 1fr;row-gap:18px;}\n    .wj-v13-common__grid>div{padding:2px 12px 2px 0;}\n    .wj-v13-common__grid>div+div{padding-left:12px;}\n    .wj-v13-common__grid>div:nth-child(3){padding-left:0;}\n    .wj-v13-featured{padding:30px 0;}\n    .wj-v13-featured__copy{padding:24px 20px;}\n    .wj-v13-featured__media{height:165px;min-height:165px;margin:0 18px 18px;}\n    .wj-v14-blog{padding:32px 0 36px;}\n    .wj-v14-blog-card__media{height:154px !important;}\n    .wj-v14-blog-card__body{min-height:184px;padding:15px;}\n    .wj-v13-faq{padding:34px 0 38px;}\n    .wj-v13-section-head--faq{margin-bottom:14px;}\n    .wj-v13-section-head--faq h2{font-size:23px;}\n    .wj-v13-faq details{margin-bottom:8px;}\n    .wj-v13-faq summary{min-height:56px;padding:14px 50px 14px 14px;font-size:11.5px;}\n    .wj-v13-faq summary:after{right:14px;width:24px;height:24px;}\n    .wj-v13-faq details p{margin:-2px 44px 16px 14px;font-size:10px;}\n    .wj-v13-cta__inner{min-height:0;}\n}\n
/* =========================================================
   Websiteji v21 — FAQ single-card redesign
   One calm card, one-column accordion, clearer section surface.
   ========================================================= */
.wj-v13-faq{
    position:relative;
    overflow:hidden;
    padding:46px 0 50px;
    background:
        radial-gradient(circle at 12% 18%,rgba(7,92,246,.08),transparent 28%),
        radial-gradient(circle at 88% 82%,rgba(34,112,255,.045),transparent 30%),
        linear-gradient(180deg,#eef4fb 0%,#f6f9fd 100%);
}
.wj-v13-faq::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.24;
    background-image:
        linear-gradient(rgba(24,62,103,.028) 1px,transparent 1px),
        linear-gradient(90deg,rgba(24,62,103,.028) 1px,transparent 1px);
    background-size:34px 34px;
    -webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.35) 42%,transparent 76%);
            mask-image:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.35) 42%,transparent 76%);
}
.wj-v13-faq .container{
    position:relative;
    z-index:1;
    max-width:1120px;
}
.wj-v21-faq-card{
    width:min(100%,1000px);
    margin:0 auto;
    overflow:hidden;
    border:1px solid #dbe5f0;
    border-radius:8px;
    background:rgba(255,255,255,.96);
    box-shadow:0 18px 46px rgba(26,56,92,.075);
}
.wj-v13-section-head--faq{
    max-width:none;
    margin:0;
    padding:25px 28px 20px;
    border-bottom:1px solid #e6edf5;
    background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}
.wj-v13-section-head--faq h2{
    margin:0;
    color:#10243b;
    font-size:25px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:-.025em;
}
.wj-v13-faq__grid{
    display:block !important;
    width:100%;
    max-width:none !important;
    margin:0;
    padding:0 28px 7px;
}
.wj-v13-faq details,
.wj-v13-faq details:last-child,
.wj-v13-faq details:nth-last-child(-n+2){
    width:100%;
    margin:0;
    overflow:visible;
    border:0 !important;
    border-bottom:1px solid #e7edf4 !important;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    transition:background .18s ease;
}
.wj-v13-faq details:last-child{border-bottom:0 !important;}
.wj-v13-faq details[open]{
    border-color:#e7edf4 !important;
    background:#f7faff;
    box-shadow:none;
}
.wj-v13-faq summary{
    min-height:58px;
    padding:16px 46px 16px 4px;
    color:#1b3048;
    font-size:12.2px;
    font-weight:500;
    line-height:1.45;
}
.wj-v13-faq summary:hover{color:#0e2239;}
.wj-v13-faq summary:after{
    right:4px;
    width:27px;
    height:27px;
    display:grid;
    place-items:center;
    border:1px solid #d6e0eb;
    border-radius:5px;
    color:#456079;
    background:#fff;
    font-size:15px;
    font-weight:400;
    line-height:1;
    box-shadow:0 2px 7px rgba(31,63,96,.035);
}
.wj-v13-faq details[open] summary:after{
    color:#075cf6;
    border-color:#bfd1ee;
    background:#eef4ff;
}
.wj-v13-faq details p{
    max-width:820px;
    margin:-2px 52px 18px 4px;
    padding:0;
    color:#617287;
    font-size:10.6px;
    font-weight:400;
    line-height:1.72;
}
@media (max-width:640px){
    .wj-v13-faq{padding:32px 0 36px;}
    .wj-v21-faq-card{border-radius:6px;}
    .wj-v13-section-head--faq{padding:20px 17px 16px;}
    .wj-v13-section-head--faq h2{font-size:22px;}
    .wj-v13-faq__grid{padding:0 17px 5px;}
    .wj-v13-faq summary{min-height:56px;padding:14px 42px 14px 1px;font-size:11.4px;}
    .wj-v13-faq summary:after{right:1px;width:25px;height:25px;}
    .wj-v13-faq details p{margin:-2px 38px 16px 1px;font-size:10px;line-height:1.68;}
}

/* =========================================================
   Websiteji v22 — Blog cover size rule
   Blog cover images must not be visually tiny.
   Responsive 16:9 media instead of short fixed-height strips.
   ========================================================= */
.wj-v14-blog-card__media{
    height:auto !important;
    min-height:210px;
    aspect-ratio:16 / 9;
}
.wj-v14-blog-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}
@media (max-width:1023px){
    .wj-v14-blog-card__media{
        height:auto !important;
        min-height:192px;
        aspect-ratio:16 / 9;
    }
}
@media (max-width:640px){
    .wj-v14-blog-card__media{
        height:auto !important;
        min-height:186px;
        aspect-ratio:16 / 9;
    }
}

/* =========================================================
   Websiteji v23 — mobile-first refinement
   Desktop layout is untouched. Mobile gets its own composition,
   not a squeezed desktop layout.
   ========================================================= */
@media (max-width:640px){
  /* Global mobile rhythm */
  .wj-v13-flow .container,
  .wj-v18-about .container,
  .wj-v14-blog .container,
  .wj-v13-faq .container,
  .wj-v13-cta .container{width:calc(100% - 28px);}

  /* Hero trust strip: 2x2 instead of four tall rows */
  .wj-home-trust{padding:8px 0 14px;}
  .wj-home-trust .container{width:calc(100% - 24px);}
  .wj-home-trust__grid{grid-template-columns:repeat(2,minmax(0,1fr));border-radius:8px;}
  .wj-home-trust__item,
  .wj-home-trust__item:nth-child(2){
    min-height:88px;
    grid-template-columns:32px minmax(0,1fr);
    gap:9px;
    padding:13px 11px;
    border-right:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  .wj-home-trust__item:nth-child(even){border-right:0;}
  .wj-home-trust__item:nth-child(n+3){border-bottom:0;}
  .wj-home-trust__icon{width:32px;height:32px;border-radius:8px;}
  .wj-home-trust__icon svg{width:18px;height:18px;}
  .wj-home-trust__item strong{margin-bottom:3px;font-size:10.5px;font-weight:600;line-height:1.25;}
  .wj-home-trust__item small{font-size:8.4px;line-height:1.4;}

  /* Ticker */
  .wj-v13-ticker{height:40px;}
  .wj-v13-ticker__track{gap:15px;padding-left:15px;animation-duration:29s;}
  .wj-v13-ticker__track span{font-size:9px;font-weight:500;}

  /* Brand explanation: compact 2x2 facts */
  .wj-v18-about{padding:27px 0 29px;}
  .wj-v18-about__layout{gap:19px;}
  .wj-v18-about__logo{width:132px;max-width:48%;margin-bottom:13px;}
  .wj-v18-about__brand h2{max-width:310px;margin-bottom:8px;font-size:20px;line-height:1.24;}
  .wj-v18-about__brand p{max-width:330px;font-size:10.6px;line-height:1.58;}
  .wj-v18-about__facts{grid-template-columns:repeat(2,minmax(0,1fr));}
  .wj-v18-about__facts article{
    grid-template-columns:28px minmax(0,1fr);
    gap:9px;
    min-height:92px;
    padding:13px 10px;
    border-bottom:1px solid rgba(30,60,95,.10)!important;
  }
  .wj-v18-about__facts article:nth-child(odd){border-right:1px solid rgba(30,60,95,.10)!important;}
  .wj-v18-about__facts article:nth-child(even){border-right:0!important;}
  .wj-v18-about__facts article:nth-child(n+3){border-bottom:0!important;}
  .wj-v18-about__facts i{width:26px;height:26px;font-size:14px;}
  .wj-v18-about__facts h3{margin-bottom:3px;font-size:10.5px;line-height:1.3;}
  .wj-v18-about__facts p{font-size:8.8px;line-height:1.46;}

  /* Section heads */
  .wj-v13-section-head,.wj-v14-blog__head{margin-bottom:14px;}
  .wj-v13-section-head h2,.wj-v14-blog__head h2{font-size:22px;}
  .wj-v13-secondary-btn{min-height:34px;padding:0 12px;font-size:9px;}

  /* Products: one complete vertical card per viewport, horizontally scrollable */
  .wj-v13-products{padding:29px 0 32px;overflow:hidden;}
  .wj-v13-product-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:0 0 5px;
  }
  .wj-v13-product-grid::-webkit-scrollbar{display:none;}
  .wj-v13-product-card{
    display:flex;
    flex:0 0 100%;
    flex-direction:column;
    scroll-snap-align:start;
    border:1px solid #e1e8f0;
    border-radius:5px;
    overflow:hidden;
    box-shadow:0 7px 20px rgba(20,45,74,.045);
  }
  .wj-v13-product-card__media{height:auto;min-height:0;aspect-ratio:16/9;}
  .wj-v13-product-card__body{min-height:154px;padding:15px 15px 14px;}
  .wj-v13-label{margin-bottom:6px;font-size:7.8px;}
  .wj-v13-product-card h3{margin-bottom:6px;font-size:15px;font-weight:600;}
  .wj-v13-product-card p{display:block;font-size:9.8px;line-height:1.5;}
  .wj-v13-card-btn{min-height:34px;margin-top:14px;padding:0 12px;font-size:9.3px;}

  /* Common product qualities: readable 2x2 */
  .wj-v13-common{padding:25px 0 27px;}
  .wj-v13-common__inner{gap:15px;}
  .wj-v13-common h2{font-size:19px;}
  .wj-v13-common__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:0;}
  .wj-v13-common__grid>div,
  .wj-v13-common__grid>div+div{min-height:86px;padding:12px 11px!important;}
  .wj-v13-common__grid>div:before{display:none!important;}
  .wj-v13-common__grid>div:nth-child(odd){border-right:1px solid rgba(198,218,240,.14);}
  .wj-v13-common__grid>div:nth-child(-n+2){border-bottom:1px solid rgba(198,218,240,.14);}
  .wj-v13-common__grid strong{margin-bottom:5px;font-size:10.5px;}
  .wj-v13-common__grid span{font-size:8.8px;line-height:1.48;}

  /* Featured product: text first, clear image after it */
  .wj-v13-featured{padding:29px 0;}
  .wj-v13-featured__box{display:flex;flex-direction:column;min-height:0;border-radius:5px;}
  .wj-v13-featured__copy{padding:21px 17px 18px;}
  .wj-v13-featured h2{font-size:21px;margin-bottom:8px;}
  .wj-v13-featured__copy>p{margin-bottom:13px;font-size:10.2px;line-height:1.55;}
  .wj-v13-featured ul{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 12px;margin-bottom:15px;}
  .wj-v13-featured li{font-size:9px;padding-left:12px;}
  .wj-v13-featured__media{
    order:2;
    width:100%;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/9;
    margin:0!important;
    border:0;
    border-top:1px solid #dfe7f0;
    box-shadow:none;
  }
  .wj-v13-primary-btn{min-height:36px;font-size:9.5px;}

  /* Blog: exactly one complete card, no partial neighbouring card */
  .wj-v14-blog{padding:30px 0 34px;}
  .wj-v14-blog-swiper{padding:2px 0 27px;overflow:hidden;}
  .wj-v14-blog-card{border-radius:5px;}
  .wj-v14-blog-card__media{
    width:100%;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/9!important;
  }
  .wj-v14-blog-card__body{min-height:190px;padding:15px 15px 14px;}
  .wj-v14-blog-card h3{font-size:14.7px;line-height:1.36;}
  .wj-v14-blog-card p{font-size:9.7px;line-height:1.55;}
  .wj-v14-blog-card__footer{padding-top:12px;}
  .wj-v14-blog-pagination{margin-top:10px;}

  /* FAQ: better touch size / reading size */
  .wj-v13-faq{padding:30px 0 33px;}
  .wj-v21-faq-card{border-radius:6px;}
  .wj-v13-section-head--faq{padding:20px 16px 15px;}
  .wj-v13-section-head--faq h2{font-size:21px;}
  .wj-v13-faq__grid{padding:0 16px 4px;}
  .wj-v13-faq summary{min-height:58px;padding:15px 43px 15px 0;font-size:13.2px;line-height:1.4;}
  .wj-v13-faq summary:after{right:0;width:28px;height:28px;font-size:16px;}
  .wj-v13-faq details p{margin:-2px 36px 17px 0;font-size:11.6px;line-height:1.65;}

  /* CTA: two deliberate mobile actions */
  .wj-v13-cta__inner{gap:16px;padding-top:22px;padding-bottom:22px;}
  .wj-v13-cta h2{font-size:18px;line-height:1.3;}
  .wj-v13-cta p{font-size:9.5px;line-height:1.5;}
  .wj-v13-cta__actions{display:grid;width:100%;grid-template-columns:1fr 1fr;gap:9px;}
  .wj-v13-cta__primary,.wj-v13-cta__whatsapp{min-height:42px;justify-content:center;border-radius:4px;font-size:9.5px;}
  .wj-v13-cta__whatsapp{border:1px solid #d4e2da;background:#fff;color:#286046;}

  /* Floating controls stay away from content / each other */
  .floating-whatsapp{left:auto;right:14px;bottom:72px;width:48px;min-height:48px;padding:3px;}
  .floating-whatsapp__icon{flex-basis:40px;width:40px;height:40px;}
  .floating-whatsapp__icon svg{width:23px;height:23px;}
  .back-to-top{right:14px;bottom:14px;width:44px;height:44px;}
  body.wj-mobile-featured-visible .floating-whatsapp{opacity:0;pointer-events:none;transform:translateY(8px);}

  /* Footer: compact mobile accordion */
  .footer{padding:32px 0 18px;}
  .footer-main{width:calc(100% - 28px);}
  .footer-grid{display:block;padding-bottom:22px;}
  .footer-brand{padding-bottom:20px;}
  .footer-brand__logo{display:inline-block;margin-bottom:12px;}
  .footer-brand p{max-width:310px;margin-bottom:10px;font-size:11px;line-height:1.55;}
  .footer-column:not(.footer-contact){border-top:1px solid rgba(255,255,255,.10);}
  .footer-column:not(.footer-contact)>h3{
    position:relative;
    min-height:50px;
    display:flex;
    align-items:center;
    margin:0;
    padding:0 32px 0 0;
    cursor:pointer;
    font-size:12px;
    user-select:none;
  }
  .footer-column:not(.footer-contact)>h3:after{
    content:"+";
    position:absolute;
    right:2px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(255,255,255,.68);
    font-size:18px;
    font-weight:400;
  }
  .footer-column.is-mobile-open>h3:after{content:"−";}
  .footer-column:not(.footer-contact) .footer-links,
  .footer-column:not(.footer-contact) .footer-service-links{display:none;padding:0 0 16px;gap:8px;}
  .footer-column.is-mobile-open .footer-links,
  .footer-column.is-mobile-open .footer-service-links{display:grid;}
  .footer-column:not(.footer-contact) a{font-size:11px;line-height:1.45;}
  .footer-contact{padding-top:20px;border-top:1px solid rgba(255,255,255,.10);}
  .footer-contact h3{margin-bottom:12px;font-size:12px;}
  .footer-contact address{display:grid;gap:0;}
  .footer-contact address a{padding:10px 0;}
  .footer-bottom{gap:12px;padding-top:17px;font-size:9.5px;}
  .footer-bottom nav{display:none;}
}

/* MVC v23 entegrasyonu: ikon fontu olmadan kullanılan inline SVG'ler aynı ölçüyü korur. */
.wj-v18-about__facts article > svg{
    display:grid;
    place-items:center;
    width:32px;
    height:32px;
    color:#075cf6;
}
@media (max-width:700px){
    .wj-v18-about__facts article > svg{width:26px;height:26px;}
}
/* Ana sayfada v23 CTA zaten bulunduğundan mevcut layout footer CTA'sı yinelenmez. */
.wj-home-v23-page .footer-cta{display:none!important;}

.wj-v13-cta__wa-icon{width:15px;height:15px;color:#15a95d;flex:0 0 auto;}

.wj-home-slide__visual picture{display:block;width:100%;height:100%;}


/* 2026-08-17: Homepage blog mobile media height guard. */
@media (max-width: 640px) {
    .wj-v14-blog-card__media {
        width: 100%;
        height: auto !important;
        max-height: 170px;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }
    .wj-v14-blog-card__media img {
        display: block;
        width: 100%;
        height: 100% !important;
        max-height: 170px;
        object-fit: cover;
        object-position: center;
    }
    .wj-v14-blog-card__body {
        min-height: 0;
    }
}
@media (max-width: 420px) {
    .wj-v14-blog-card__media,
    .wj-v14-blog-card__media img { max-height: 155px; }
}
