:root {
    --en-navy-950: #06172b;
    --en-navy-900: #081f39;
    --en-navy-800: #0d3156;
    --en-blue-700: #184fb8;
    --en-blue-600: #2467e8;
    --en-blue-500: #3483f8;
    --en-cyan-500: #18b9d1;
    --en-ink: #10233f;
    --en-muted: #5b6f89;
    --en-line: #dce7f2;
    --en-soft: #f3f7fb;
    --en-white: #fff;
    --en-success: #168365;
    --en-danger: #bc3142;
    --en-warning: #9b6b12;
    --en-radius-sm: 12px;
    --en-radius: 20px;
    --en-radius-lg: 30px;
    --en-shadow: 0 24px 70px rgba(10, 41, 78, .12);
    --en-shell: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.en-site {
    margin: 0;
    background: var(--en-white);
    color: var(--en-ink);
    font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.en-site img {
    display: block;
    max-width: 100%;
}

.en-site a {
    color: inherit;
    text-decoration: none;
}

.en-site button,
.en-site input,
.en-site select,
.en-site textarea {
    font: inherit;
}

.en-site h1,
.en-site h2,
.en-site h3,
.en-site h4 {
    margin: 0;
    color: var(--en-ink);
    font-family: "Fira Sans", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.en-site p {
    margin: 0;
}

.en-shell {
    width: min(calc(100% - 40px), var(--en-shell));
    margin-inline: auto;
}

.visually-hidden {
    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;
}

.en-skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 11px 18px;
    border-radius: 10px;
    background: var(--en-white);
    color: var(--en-navy-950);
    box-shadow: var(--en-shadow);
    transform: translateY(-150%);
}

.en-skip-link:focus {
    transform: translateY(0);
}

.en-site :focus-visible {
    outline: 3px solid rgba(52, 131, 248, .5);
    outline-offset: 3px;
}

.en-topbar {
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #58697c;
    font-size: 13px;
}

.en-topbar__inner {
    display: flex;
    min-height: 53px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.en-topbar__contact {
    display: flex;
    align-items: center;
    gap: 22px;
}

.en-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .2s ease;
}

.en-topbar a:hover {
    color: var(--en-blue-700);
}

.en-header {
    position: fixed;
    z-index: 1000;
    top: 53px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(220, 231, 242, .78);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease;
}

.en-header.is-scrolled {
    box-shadow: 0 12px 40px rgba(6, 35, 70, .08);
}

.en-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 123px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.en-header__inner::before {
    position: absolute;
    z-index: -1;
    right: 0;
    left: 215px;
    height: 86px;
    content: "";
    border-radius: 18px;
    background: #216db9;
}

.en-header .en-shell,
.en-topbar .en-shell {
    width: min(calc(100% - 48px), 1800px);
}

.en-brand {
    flex: 0 0 auto;
}

.en-brand img {
    width: 168px;
    height: auto;
}

.en-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 12px;
    border-radius: 18px;
    background: transparent;
}

.en-nav > a,
.en-nav__group > button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 5px;
    padding: 0 13px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.en-nav > a:hover,
.en-nav__group > button:hover,
.en-nav > a.is-active,
.en-nav__group > button.is-active {
    background: rgba(39, 197, 223, .18);
    color: #5ce4ef;
}

.en-nav__group {
    position: relative;
}

.en-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    min-width: 245px;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--en-line);
    border-radius: 16px;
    background: var(--en-white);
    box-shadow: var(--en-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.en-nav__dropdown--wide {
    min-width: 300px;
}

.en-nav__group:hover .en-nav__dropdown,
.en-nav__group:focus-within .en-nav__dropdown,
.en-nav__group.is-open .en-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.en-nav__dropdown a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #40566f;
    font-size: 14px;
    font-weight: 600;
}

.en-nav__dropdown a:hover {
    background: var(--en-soft);
    color: var(--en-blue-700);
}

.en-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.en-language {
    display: inline-flex;
    width: auto;
    min-width: 76px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 11px;
    border: 1px solid var(--en-line);
    border-radius: 50%;
    color: var(--en-navy-800);
    font-size: 13px;
    font-weight: 800;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.en-language img,
.en-mobile-language img {
    display: block;
    width: 24px;
    height: 16px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 3px;
    box-shadow: 0 2px 7px rgba(10, 41, 78, .16);
    object-fit: cover;
}

.en-mobile-language {
    display: flex !important;
    align-items: center;
    gap: 9px;
}

.en-language:hover {
    border-color: var(--en-blue-500);
    color: var(--en-blue-700);
    transform: translateY(-2px);
}

.en-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border: 1px solid var(--en-blue-600);
    border-radius: 13px;
    background: linear-gradient(135deg, var(--en-blue-700), var(--en-blue-500));
    box-shadow: 0 13px 30px rgba(36, 103, 232, .24);
    color: var(--en-white) !important;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.en-button:hover {
    box-shadow: 0 16px 34px rgba(36, 103, 232, .32);
    transform: translateY(-2px);
}

.en-button--small {
    min-height: 42px;
    padding-inline: 18px;
    border-radius: 11px;
    font-size: 14px;
}

.en-button--ghost {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    color: var(--en-white) !important;
}

.en-button--ghost:hover {
    border-color: rgba(255, 255, 255, .56);
    background: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.en-button--outline {
    border-color: #b9cce1;
    background: var(--en-white);
    box-shadow: none;
    color: var(--en-navy-800) !important;
}

.en-button--outline:hover {
    border-color: var(--en-blue-500);
    background: #f6f9ff;
    box-shadow: none;
}

.en-button--light {
    border-color: var(--en-white);
    background: var(--en-white);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .14);
    color: var(--en-blue-700) !important;
}

.en-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--en-line);
    border-radius: 12px;
    background: var(--en-white);
    color: var(--en-navy-900);
    cursor: pointer;
    font-size: 23px;
}

.en-mobile-nav {
    display: grid;
    gap: 4px;
    padding: 14px 20px 20px;
    border-top: 1px solid var(--en-line);
    background: var(--en-white);
}

.en-mobile-nav__top,
.en-mobile-overlay {
    display: none;
}

.en-site > main {
    padding-top: 176px;
}

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

.en-mobile-nav a {
    padding: 11px 12px;
    border-radius: 10px;
    color: #304863;
    font-weight: 600;
}

.en-mobile-nav a:hover {
    background: var(--en-soft);
    color: var(--en-blue-700);
}

.en-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(125deg, rgba(6, 23, 43, .98), rgba(8, 43, 78, .96)),
        url("../images/hero/hero3.png") center/cover;
    color: var(--en-white);
}

.en-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.en-hero__glow--one {
    top: -170px;
    right: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(24, 185, 209, .22), transparent 66%);
}

.en-hero__glow--two {
    bottom: -280px;
    left: 18%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(52, 131, 248, .21), transparent 68%);
}

.en-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
    align-items: center;
    gap: 72px;
    padding-block: 84px;
}

.en-hero--home .en-hero__grid {
    min-height: max(760px, calc(100vh - 176px));
}

.en-eyebrow,
.en-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--en-cyan-500);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.en-hero h1 {
    max-width: 780px;
    margin-top: 20px;
    color: var(--en-white);
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 1.02;
}

.en-hero__content > p {
    max-width: 720px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.68;
}

.en-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.en-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 600;
}

.en-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.en-hero__trust i {
    color: var(--en-cyan-500);
    font-size: 17px;
}

.en-hero__trust svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--en-cyan-500);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.en-hero__visual {
    position: relative;
}

.en-hero__visual::before {
    position: absolute;
    inset: -22px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 34px;
    content: "";
    transform: rotate(3deg);
}

.en-hero__visual-card {
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 27px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .26);
    backdrop-filter: blur(16px);
}

.en-hero__visual-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 4px 13px;
}

.en-hero__visual-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
}

.en-hero__visual-top b {
    margin-left: 6px;
    color: rgba(255, 255, 255, .55);
    font-family: monospace;
    font-size: 11px;
    font-weight: 400;
}

.en-hero__visual-card > img {
    width: 100%;
    min-height: 330px;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(9, 35, 62, .18));
}

.en-hero__code-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 13px;
}

.en-hero__code-tags span {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 700;
}

.en-metrics {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    background: var(--en-white);
}

.en-metrics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 1px solid var(--en-line);
    border-bottom: 1px solid var(--en-line);
    border-left: 1px solid var(--en-line);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 50px rgba(10, 41, 78, .06);
}

.en-metrics__grid > div {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 22px 32px;
    border-right: 1px solid var(--en-line);
}

.en-metrics__grid > div:last-child {
    border-right: 0;
}

.en-metrics strong {
    color: var(--en-navy-900);
    font-family: "Fira Sans", sans-serif;
    font-size: 21px;
}

.en-metrics span {
    color: var(--en-muted);
    font-size: 13px;
}

.en-section {
    padding-block: 108px;
}

.en-section--soft {
    background: var(--en-soft);
}

.en-section-heading {
    max-width: 710px;
    margin-bottom: 48px;
}

.en-section-heading--wide {
    max-width: 820px;
}

.en-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.en-section-heading h2 {
    margin-top: 13px;
    font-size: clamp(34px, 4.2vw, 52px);
}

.en-section-heading p {
    margin-top: 18px;
    color: var(--en-muted);
    font-size: 17px;
}

.en-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.en-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.en-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 30px;
    border: 1px solid var(--en-line);
    border-radius: var(--en-radius);
    background: var(--en-white);
    box-shadow: 0 13px 45px rgba(10, 41, 78, .045);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.en-card::after {
    position: absolute;
    right: -55px;
    bottom: -75px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 131, 248, .09), transparent 68%);
    content: "";
}

.en-card:hover {
    border-color: #bdd2ea;
    box-shadow: 0 23px 58px rgba(10, 41, 78, .1);
    transform: translateY(-5px);
}

.en-card__icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, #eaf3ff, #f6faff);
    color: var(--en-blue-700);
    font-size: 26px;
}

.en-card__icon svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.en-card__number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #c5d4e4;
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.en-card h3,
.en-card h2 {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    font-size: 23px;
}

.en-card p {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    color: var(--en-muted);
    font-size: 15px;
}

.en-text-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: var(--en-blue-700) !important;
    font-weight: 700;
}

.en-text-link i {
    transition: transform .2s ease;
}

.en-text-link:hover i {
    transform: translateX(4px);
}

.en-check-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.en-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #40566f;
    font-size: 14px;
}

.en-check-list i {
    margin-top: 3px;
    color: var(--en-success);
}

.en-deliverables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.en-deliverables > div {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    border: 1px solid var(--en-line);
    border-radius: 14px;
    background: var(--en-white);
    color: #304863;
    font-weight: 600;
}

.en-deliverables i {
    color: var(--en-success);
    font-size: 21px;
}

.en-card--listing {
    display: flex;
    flex-direction: column;
}

.en-card--listing .en-text-link {
    margin-top: auto;
    padding-top: 24px;
}

.en-card__visual {
    display: grid;
    min-height: 185px;
    place-items: center;
    margin: -14px -14px 24px;
    border-radius: 16px;
    background: linear-gradient(145deg, #edf5ff, #f8fbff);
}

.en-card__visual img {
    width: 180px;
    height: 135px;
    object-fit: contain;
}

.en-card__meta,
.en-card__date span {
    color: var(--en-blue-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.en-card__date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.en-card__date time {
    color: #8191a5;
    font-size: 12px;
}

.en-legal-page .en-section {
    padding-block: 78px;
}

.en-legal-page .en-section + .en-section {
    padding-top: 0;
}

.en-legal-page .en-section-heading {
    max-width: 900px;
    margin-bottom: 0;
    padding: 36px;
    border-left: 4px solid var(--en-blue-600);
    border-radius: 0 var(--en-radius) var(--en-radius) 0;
    background: var(--en-soft);
}

.en-legal-page .en-section-heading h2 {
    font-size: 31px;
}

.en-legal-page .en-section-heading p {
    line-height: 1.85;
}

.en-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 78px;
}

.en-section-heading--sticky {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
}

.en-faq-list {
    display: grid;
    gap: 13px;
}

.en-faq-list details {
    overflow: hidden;
    border: 1px solid var(--en-line);
    border-radius: 15px;
    background: var(--en-white);
}

.en-faq-list summary {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 23px;
    color: var(--en-ink);
    cursor: pointer;
    font-family: "Fira Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    list-style: none;
}

.en-faq-list summary::-webkit-details-marker {
    display: none;
}

.en-faq-list summary i {
    flex: 0 0 auto;
    color: var(--en-blue-600);
    font-size: 22px;
    transition: transform .2s ease;
}

.en-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.en-faq-list details p {
    padding: 0 23px 24px;
    color: var(--en-muted);
}

.en-page-cta,
.en-footer-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--en-blue-700), #164697 55%, #0d6f88);
    color: var(--en-white);
}

.en-page-cta::after,
.en-footer-cta::after {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    content: "";
}

.en-page-cta__inner,
.en-footer-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 58px;
}

.en-page-cta span,
.en-footer-cta span {
    color: #a8f0f7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.en-page-cta h2,
.en-footer-cta h2 {
    max-width: 740px;
    margin-top: 10px;
    color: var(--en-white);
    font-size: clamp(31px, 3.8vw, 48px);
}

.en-page-cta p {
    max-width: 680px;
    margin-top: 13px;
    color: rgba(255, 255, 255, .75);
}

.en-detail-hero,
.en-contact-hero,
.en-tool-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, var(--en-navy-950), #0b355e);
    color: var(--en-white);
}

.en-detail-hero::after,
.en-contact-hero::after,
.en-tool-hero::after {
    position: absolute;
    right: -160px;
    bottom: -250px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 185, 209, .21), transparent 68%);
    content: "";
}

.en-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    padding-top: 38px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.en-breadcrumb a:hover {
    color: var(--en-white);
}

.en-detail-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 500px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    align-items: center;
    gap: 70px;
    padding-block: 55px 80px;
}

.en-detail-hero h1,
.en-contact-hero h1,
.en-tool-hero h1 {
    margin-top: 18px;
    color: var(--en-white);
    font-size: clamp(41px, 5vw, 66px);
}

.en-detail-hero__grid > div > p,
.en-contact-hero__grid > div > p,
.en-tool-hero__inner > p {
    max-width: 760px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .72);
    font-size: 19px;
}

.en-detail-hero__visual {
    display: grid;
    min-height: 310px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 28px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
}

.en-detail-hero__visual img {
    width: 82%;
    max-height: 270px;
    object-fit: contain;
}

.en-article-section {
    padding-block: 94px 112px;
}

.en-article-layout {
    display: grid;
    grid-template-columns: 265px minmax(0, 790px);
    justify-content: center;
    gap: 78px;
}

.en-article-aside {
    position: sticky;
    top: 120px;
    align-self: start;
}

.en-article-aside > span {
    color: var(--en-blue-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.en-article-aside nav {
    display: grid;
    gap: 0;
    margin-top: 18px;
    border-left: 1px solid var(--en-line);
}

.en-article-aside nav a {
    padding: 8px 0 8px 18px;
    color: var(--en-muted);
    font-size: 14px;
    line-height: 1.4;
}

.en-article-aside nav a:hover {
    color: var(--en-blue-700);
}

.en-notice {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 26px !important;
    padding: 14px;
    border: 1px solid #cce0f4;
    border-radius: 12px;
    background: #f2f8ff;
    color: #4b6785;
    font-size: 12px;
    line-height: 1.55;
}

.en-notice i {
    margin-top: 2px;
    color: var(--en-blue-700);
    font-size: 17px;
}

.en-article__lead {
    margin-bottom: 58px !important;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--en-line);
    color: #324b66 !important;
    font-size: 23px !important;
    line-height: 1.65 !important;
}

.en-article section {
    position: relative;
    margin-bottom: 54px;
}

.en-article__number {
    display: block;
    margin-bottom: 12px;
    color: var(--en-blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.en-article h2 {
    font-size: clamp(28px, 3vw, 38px);
}

.en-article p {
    margin-top: 18px;
    color: var(--en-muted);
    font-size: 17px;
    line-height: 1.9;
}

.en-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.en-highlight-grid span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 16px;
    border: 1px solid var(--en-line);
    border-radius: 12px;
    color: #40566f;
    font-size: 14px;
    font-weight: 600;
}

.en-highlight-grid i {
    color: var(--en-success);
}

.en-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-radius: 14px;
    background: var(--en-soft);
}

.en-stack strong {
    width: 100%;
    margin-bottom: 5px;
    color: var(--en-navy-800);
}

.en-stack span {
    padding: 6px 10px;
    border: 1px solid #cadbeb;
    border-radius: 999px;
    background: var(--en-white);
    color: #4c6179;
    font-size: 12px;
    font-weight: 700;
}

.en-contact-hero {
    padding-block: 88px;
}

.en-contact-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    align-items: start;
    gap: 74px;
}

.en-contact-points {
    display: grid;
    gap: 18px;
    margin-top: 36px;
}

.en-contact-points > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.en-contact-points i {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 11px;
    background: rgba(255, 255, 255, .07);
    color: var(--en-cyan-500);
    font-size: 20px;
}

.en-contact-points span {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.en-contact-points strong {
    display: block;
    color: var(--en-white);
    font-size: 16px;
}

.en-contact-direct {
    display: grid;
    gap: 6px;
    margin-top: 42px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
}

.en-contact-direct span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.en-contact-direct a {
    color: var(--en-white);
    font-weight: 600;
}

.en-contact-form-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    background: var(--en-white);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .25);
    color: var(--en-ink);
}

.en-contact-form-card__heading h2 {
    margin-top: 8px;
    font-size: 33px;
}

.en-contact-form-card__heading p {
    margin-top: 10px;
    color: var(--en-muted);
    font-size: 14px;
}

.en-form {
    display: grid;
    gap: 18px;
    margin-top: 27px;
}

.en-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.en-form label {
    display: grid;
    gap: 7px;
    color: #304863;
    font-size: 13px;
    font-weight: 700;
}

.en-form label > span[aria-hidden="true"] {
    display: inline;
    color: var(--en-danger);
}

.en-form input,
.en-form select,
.en-form textarea {
    width: 100%;
    border: 1px solid #cbd9e8;
    border-radius: 11px;
    background: #fbfdff;
    color: var(--en-ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.en-form input,
.en-form select {
    min-height: 50px;
    padding: 0 14px;
}

.en-form textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.en-form input:focus,
.en-form select:focus,
.en-form textarea:focus {
    border-color: var(--en-blue-500);
    background: var(--en-white);
    box-shadow: 0 0 0 4px rgba(52, 131, 248, .12);
}

.en-consent-check {
    display: flex !important;
    align-items: flex-start;
    gap: 10px !important;
    font-weight: 500 !important;
}

.en-consent-check input {
    width: 18px;
    height: 18px;
    min-height: 0;
    flex: 0 0 auto;
    margin-top: 2px;
}

.en-consent-check a {
    color: var(--en-blue-700);
    text-decoration: underline;
}

.en-button--submit {
    width: 100%;
    border: 0;
}

.en-form__security {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #718297;
    font-size: 11px;
}

.en-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.en-alert {
    margin-top: 20px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 13px;
}

.en-alert ul {
    margin: 7px 0 0;
    padding-left: 18px;
}

.en-alert--error {
    border-color: #f0b9c0;
    background: #fff4f5;
    color: #8b2634;
}

.en-alert--success {
    display: flex;
    align-items: center;
    gap: 8px;
    border-color: #a9dccc;
    background: #f0fbf7;
    color: #12644f;
}

.en-alert--warning {
    border-color: #ead099;
    background: #fff9eb;
    color: #7d5812;
}

.en-tool-hero__inner {
    position: relative;
    z-index: 2;
    padding-block: 95px;
    text-align: center;
}

.en-tool-hero__inner h1 {
    max-width: 920px;
    margin-inline: auto;
}

.en-tool-hero__inner > p {
    margin-inline: auto;
}

.en-search-form,
.en-domain-form {
    display: flex;
    width: min(100%, 820px);
    align-items: center;
    gap: 10px;
    margin: 34px auto 0;
    padding: 8px 8px 8px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(13px);
}

.en-search-form > i,
.en-domain-form > i {
    color: var(--en-cyan-500);
    font-size: 23px;
}

.en-search-form input,
.en-domain-form input,
.en-domain-form select {
    min-width: 0;
    min-height: 48px;
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--en-white);
    outline: none;
}

.en-search-form input::placeholder,
.en-domain-form input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.en-domain-form select {
    max-width: 120px;
    padding-inline: 10px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.en-domain-form select option {
    color: var(--en-ink);
}

.en-domain-form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px !important;
    color: rgba(255, 255, 255, .55) !important;
    font-size: 12px !important;
}

.en-results-shell {
    max-width: 980px;
}

.en-empty-state {
    padding: 66px 30px;
    border: 1px dashed #bfd0e2;
    border-radius: 22px;
    background: var(--en-soft);
    text-align: center;
}

.en-empty-state > i {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 20px;
    background: var(--en-white);
    color: var(--en-blue-700);
    font-size: 34px;
    box-shadow: 0 12px 32px rgba(10, 41, 78, .08);
}

.en-empty-state h2 {
    font-size: 30px;
}

.en-empty-state p {
    margin: 10px 0 23px;
    color: var(--en-muted);
}

.en-search-results {
    display: grid;
    gap: 12px;
}

.en-search-results article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--en-line);
    border-radius: 15px;
    transition: border-color .2s ease, transform .2s ease;
}

.en-search-results article:hover {
    border-color: #b7cde4;
    transform: translateY(-2px);
}

.en-search-results article > span {
    color: #a6b7ca;
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.en-search-results h2 {
    font-size: 21px;
}

.en-search-results h2 a:hover {
    color: var(--en-blue-700);
}

.en-search-results p {
    margin-top: 5px;
    color: var(--en-muted);
    font-size: 14px;
}

.en-search-results__arrow {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--en-soft);
    color: var(--en-blue-700) !important;
}

.en-site-map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.en-site-map-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 30px;
    border: 1px solid var(--en-line);
    border-radius: var(--en-radius);
    background: var(--en-white);
}

.en-site-map-card h2 {
    margin-bottom: 16px;
    padding-right: 35px;
    font-size: 25px;
}

.en-site-map-card a {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    color: #4b6077;
    font-size: 14px;
}

.en-site-map-card a:last-child {
    border-bottom: 0;
}

.en-site-map-card a:hover {
    color: var(--en-blue-700);
}

.en-simulator {
    max-width: 940px;
    margin-inline: auto;
    padding: 42px;
    border: 1px solid var(--en-line);
    border-radius: var(--en-radius-lg);
    background: var(--en-white);
    box-shadow: var(--en-shadow);
}

.en-simulator__progress {
    height: 7px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 999px;
    background: #eaf0f6;
}

.en-simulator__progress span {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--en-blue-600), var(--en-cyan-500));
    transition: width .3s ease;
}

.en-simulator fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.en-simulator fieldset[hidden] {
    display: none;
}

.en-simulator legend {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    color: var(--en-ink);
    font-family: "Fira Sans", sans-serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.3;
}

.en-simulator legend span {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: #edf4ff;
    color: var(--en-blue-700);
    font-size: 13px;
}

.en-simulator fieldset > label {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.en-simulator input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.en-simulator label > span {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    column-gap: 15px;
    padding: 18px 20px;
    border: 1px solid var(--en-line);
    border-radius: 15px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.en-simulator label:hover > span {
    border-color: #adc7e3;
    transform: translateX(3px);
}

.en-simulator input:checked + span {
    border-color: var(--en-blue-500);
    background: #f2f7ff;
    box-shadow: 0 0 0 3px rgba(52, 131, 248, .1);
}

.en-simulator label i {
    grid-row: span 2;
    color: var(--en-blue-700);
    font-size: 29px;
}

.en-simulator label b {
    color: var(--en-ink);
    font-family: "Fira Sans", sans-serif;
    font-size: 17px;
}

.en-simulator label small {
    color: var(--en-muted);
}

.en-simulator__controls {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 32px;
}

.en-simulator__controls [data-simulator-next] {
    margin-left: auto;
}

.en-simulator__controls button:disabled {
    cursor: not-allowed;
    opacity: .45;
    transform: none;
}

.en-simulator__result {
    padding: 28px;
    text-align: center;
}

.en-simulator__result[hidden] {
    display: none;
}

.en-simulator__result-icon {
    display: grid;
    width: 88px;
    height: 88px;
    margin: 22px auto;
    place-items: center;
    border-radius: 25px;
    background: linear-gradient(145deg, #e7f1ff, #f5faff);
    color: var(--en-blue-700);
    font-size: 44px;
}

.en-simulator__result h2 {
    font-size: 39px;
}

.en-simulator__result > p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--en-muted);
    font-size: 17px;
}

.en-simulator__result-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 29px;
}

.en-text-button {
    margin-top: 23px;
    border: 0;
    background: transparent;
    color: var(--en-blue-700);
    cursor: pointer;
    font-weight: 700;
}

.en-domain-status {
    max-width: 920px;
    margin-inline: auto;
}

.en-domain-results {
    display: grid;
    max-width: 920px;
    gap: 10px;
    margin-inline: auto;
}

.en-domain-result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid var(--en-line);
    border-radius: 14px;
    background: var(--en-white);
}

.en-domain-result strong {
    color: var(--en-navy-900);
    font-size: 17px;
}

.en-domain-result__status {
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef3f8;
    color: #607289;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.en-domain-result__status.is-available {
    background: #e7f8f1;
    color: var(--en-success);
}

.en-domain-result__status.is-unavailable {
    background: #fff0f2;
    color: var(--en-danger);
}

.en-domain-result a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--en-blue-700);
    font-size: 13px;
    font-weight: 700;
}

.en-domain-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 65px;
}

.en-domain-info-grid article {
    padding: 26px;
    border-radius: 18px;
    background: var(--en-soft);
}

.en-domain-info-grid i {
    color: var(--en-blue-700);
    font-size: 30px;
}

.en-domain-info-grid h2 {
    margin-top: 17px;
    font-size: 21px;
}

.en-domain-info-grid p {
    margin-top: 10px;
    color: var(--en-muted);
    font-size: 14px;
}

.en-footer {
    background: var(--en-navy-950);
    color: rgba(255, 255, 255, .64);
}

.en-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .75fr);
    gap: 58px;
    padding-block: 75px 60px;
}

.en-footer__brand img {
    width: 180px;
    height: auto;
}

.en-footer__brand p {
    max-width: 360px;
    margin-top: 22px;
    font-size: 14px;
}

.en-footer__social {
    display: flex;
    gap: 9px;
    margin-top: 24px;
}

.en-footer__social a {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 11px;
    color: rgba(255, 255, 255, .78);
    transition: background .2s ease, color .2s ease;
}

.en-footer__social a:hover {
    background: var(--en-blue-600);
    color: var(--en-white);
}

.en-footer nav {
    display: grid;
    align-content: start;
    gap: 9px;
}

.en-footer nav h3 {
    margin-bottom: 13px;
    color: var(--en-white);
    font-family: "Fira Sans", sans-serif;
    font-size: 17px;
    letter-spacing: 0;
}

.en-footer nav a,
.en-footer nav span {
    font-size: 13px;
}

.en-footer nav a:hover {
    color: var(--en-white);
}

.en-footer__bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.en-footer__bottom div {
    display: flex;
    gap: 18px;
}

.en-footer__bottom a:hover {
    color: var(--en-white);
}

@media (max-width: 1180px) {
    .en-nav,
    .en-header__actions > .en-button {
        display: none;
    }

    .en-menu-toggle {
        display: grid;
    }

    .en-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
        gap: 45px;
    }

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

    .en-footer__grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .en-topbar__inner > span {
        display: none;
    }

    .en-topbar__inner {
        justify-content: center;
    }

    .en-hero__grid,
    .en-detail-hero__grid,
    .en-contact-hero__grid,
    .en-faq-layout,
    .en-article-layout {
        grid-template-columns: 1fr;
    }

    .en-hero__grid {
        padding-block: 72px;
    }

    .en-hero__visual {
        max-width: 570px;
    }

    .en-detail-hero__grid {
        gap: 35px;
    }

    .en-section-heading--sticky,
    .en-article-aside {
        position: static;
    }

    .en-article-aside nav {
        display: none;
    }

    .en-page-cta__inner,
    .en-footer-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
    }

    .en-contact-hero__grid {
        gap: 48px;
    }

    .en-site-map-grid,
    .en-domain-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {
    .en-shell {
        width: min(calc(100% - 28px), var(--en-shell));
    }

    .en-topbar__contact {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .en-topbar__contact a {
        font-size: 11px;
    }

    .en-header__inner {
        min-height: 70px;
    }

    .en-brand img {
        width: 145px;
    }

    .en-language {
        width: auto;
        min-width: 70px;
        height: 37px;
    }

    .en-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .en-menu-toggle svg {
        display: block;
    }

    .en-hero__grid,
    .en-hero--home .en-hero__grid {
        min-height: auto;
        gap: 34px;
        padding-block: 42px;
    }

    .en-hero h1,
    .en-detail-hero h1,
    .en-contact-hero h1,
    .en-tool-hero h1 {
        font-size: clamp(31px, 9.2vw, 37px);
        line-height: 1.05;
    }

    .en-hero h1 {
        margin-top: 14px;
    }

    .en-eyebrow,
    .en-kicker {
        font-size: 10px;
        letter-spacing: .1em;
    }

    .en-hero__content > p,
    .en-detail-hero__grid > div > p,
    .en-contact-hero__grid > div > p,
    .en-tool-hero__inner > p {
        font-size: 15px;
        line-height: 1.55;
    }

    .en-hero__content > p {
        margin-top: 17px;
    }

    .en-hero__actions,
    .en-hero__actions .en-button,
    .en-simulator__result-actions .en-button {
        width: 100%;
    }

    .en-hero__actions {
        gap: 10px;
        margin-top: 23px;
    }

    .en-hero__actions .en-button {
        min-height: 47px;
        padding: 0 18px;
        border-radius: 12px;
        font-size: 14px;
    }

    .en-hero__trust {
        display: flex;
        gap: 8px 14px;
        margin-top: 22px;
        font-size: 11px;
    }

    .en-hero__trust span {
        gap: 5px;
    }

    .en-hero__trust svg {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }

    .en-hero__visual::before {
        display: none;
    }

    .en-hero__visual-card > img {
        min-height: 230px;
    }

    .en-metrics__grid,
    .en-card-grid,
    .en-card-grid--three,
    .en-deliverables,
    .en-site-map-grid,
    .en-domain-info-grid,
    .en-footer__grid {
        grid-template-columns: 1fr;
    }

    .en-metrics__grid > div {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid var(--en-line);
    }

    .en-metrics__grid > div:last-child {
        border-bottom: 0;
    }

    .en-section {
        padding-block: 74px;
    }

    .en-section-heading {
        margin-bottom: 34px;
    }

    .en-section-heading h2 {
        font-size: 34px;
    }

    .en-card {
        padding: 25px;
    }

    .en-page-cta__inner,
    .en-footer-cta__inner {
        min-height: 320px;
    }

    .en-detail-hero__grid {
        min-height: auto;
        padding-block: 45px 65px;
    }

    .en-detail-hero__visual {
        min-height: 230px;
    }

    .en-article-section {
        padding-block: 65px 78px;
    }

    .en-article__lead {
        font-size: 19px !important;
    }

    .en-highlight-grid,
    .en-form__row {
        grid-template-columns: 1fr;
    }

    .en-contact-hero {
        padding-block: 65px;
    }

    .en-contact-form-card {
        padding: 24px;
    }

    .en-contact-form-card__heading h2 {
        font-size: 28px;
    }

    .en-tool-hero__inner {
        padding-block: 72px;
    }

    .en-search-form,
    .en-domain-form {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        padding: 13px;
    }

    .en-search-form .en-button,
    .en-domain-form .en-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .en-domain-form select {
        grid-column: 1 / -1;
        max-width: none;
        border-top: 1px solid rgba(255, 255, 255, .15);
        border-left: 0;
    }

    .en-search-results article {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .en-search-results__arrow {
        display: none;
    }

    .en-simulator {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .en-simulator legend {
        align-items: flex-start;
        font-size: 23px;
    }

    .en-simulator label > span {
        grid-template-columns: 39px minmax(0, 1fr);
        padding: 15px;
    }

    .en-domain-result {
        grid-template-columns: 1fr auto;
    }

    .en-domain-result a {
        grid-column: 1 / -1;
    }

    .en-footer__grid {
        gap: 38px;
    }

    .en-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

/* Türkçe siteyle aynı sabit header ve sağdan açılan mobil menü davranışı. */
@media (max-width: 1180px) {
    .en-site > main {
        padding-top: 153px;
    }

    .en-header__inner {
        min-height: 100px;
    }

    .en-header__inner::before {
        display: none;
    }

    .en-header .en-shell {
        width: min(calc(100% - 32px), 1800px);
    }

    .en-mobile-nav {
        position: fixed;
        z-index: 1102;
        top: 0;
        right: 0;
        display: flex;
        width: min(88vw, 380px);
        height: 100dvh;
        padding: 18px 18px 30px;
        overflow-y: auto;
        flex-direction: column;
        gap: 3px;
        border: 0;
        background: #fff;
        box-shadow: -24px 0 70px rgba(6, 23, 43, .24);
    }

    .en-mobile-nav[hidden],
    .en-mobile-overlay[hidden] {
        display: none !important;
    }

    .en-mobile-nav__top {
        display: flex;
        min-height: 64px;
        margin-bottom: 8px;
        padding-bottom: 14px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--en-line);
    }

    .en-mobile-nav__brand {
        padding: 0 !important;
    }

    .en-mobile-nav__brand img {
        width: 154px;
        height: auto;
    }

    .en-mobile-nav__close {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        color: var(--en-navy-900);
        border: 1px solid var(--en-line);
        border-radius: 50%;
        background: #fff;
        place-items: center;
    }

    .en-mobile-nav > a {
        min-height: 44px;
        padding: 10px 12px;
        border-bottom: 1px solid #edf2f7;
        border-radius: 8px;
    }

    .en-mobile-overlay {
        position: fixed;
        z-index: 1101;
        inset: 0;
        display: block;
        padding: 0;
        border: 0;
        background: rgba(4, 19, 37, .58);
        backdrop-filter: blur(3px);
    }

    body.en-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .en-topbar {
        display: none;
    }

    .en-header {
        top: 0;
    }

    .en-header__inner {
        min-height: 88px;
    }

    .en-site > main {
        padding-top: 88px;
    }

    .en-hero__grid,
    .en-hero--home .en-hero__grid {
        min-height: auto;
        padding-block: 48px;
    }
}
/* English visual parity: Turkish page illustrations on tool/contact heroes. */
.en-tool-hero__inner {
    position: relative;
}

.en-tool-hero__visual {
    display: flex;
    justify-content: center;
    margin: 0 auto 30px;
    max-width: 420px;
}

.en-tool-hero__visual img,
.en-contact-hero__visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.en-contact-hero__visual {
    display: flex;
    justify-content: center;
    margin-top: 34px;
    max-width: 460px;
}

/* English home animated software studio. */
.en-hero-terminal {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 12%, rgba(24, 185, 209, .17), transparent 31%),
        linear-gradient(145deg, #07192d, #0b2948);
}

.en-hero-terminal::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
    pointer-events: none;
}

.en-hero-terminal__status,
.en-hero-terminal__output,
.en-hero-terminal__pulse {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.en-hero-terminal__status {
    justify-content: space-between;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.en-hero-terminal__status span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.en-hero-terminal__status i,
.en-hero-terminal__pulse > i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30db9b;
    box-shadow: 0 0 0 5px rgba(48, 219, 155, .1), 0 0 18px rgba(48, 219, 155, .65);
}

.en-hero-terminal__code {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
    padding: 26px 8px 18px;
    color: rgba(255, 255, 255, .68);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.en-hero-terminal__line {
    display: block;
    font-size: 13px;
    line-height: 1.9;
}

.en-hero-terminal__line b {
    display: inline-block;
    width: 30px;
    color: rgba(255, 255, 255, .2);
    font-weight: 500;
}

.en-hero-terminal__line i {
    color: #6ce7f2;
    font-style: normal;
}

.en-hero-terminal__line em {
    color: #c59cff;
    font-style: normal;
}

.en-typing-text {
    display: block;
    min-height: 3.1em;
    margin: 9px 0 9px 30px;
    color: #fff;
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(21px, 2.4vw, 31px);
    line-height: 1.25;
    letter-spacing: -.025em;
}

.en-typing-text::after {
    display: inline-block;
    width: 2px;
    height: .95em;
    margin-left: 5px;
    background: #67e3ef;
    content: "";
    vertical-align: -.08em;
    animation: enCursorBlink .78s steps(1) infinite;
}

.en-hero-terminal__output {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.en-hero-terminal__output span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border: 1px solid rgba(91, 223, 234, .14);
    border-radius: 999px;
    background: rgba(91, 223, 234, .06);
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 700;
}

.en-hero-terminal__output i {
    color: #30db9b;
}

.en-hero-terminal__pulse {
    gap: 10px;
    margin-top: 17px;
    color: rgba(255, 255, 255, .47);
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.en-hero-terminal__pulse > i {
    animation: enStatusPulse 1.8s ease-in-out infinite;
}

@keyframes enCursorBlink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

@keyframes enStatusPulse {
    0%, 100% { opacity: .45; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
    .en-hero-terminal {
        min-height: 330px;
        padding: 19px;
    }

    .en-typing-text {
        margin-left: 25px;
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .en-typing-text::after,
    .en-hero-terminal__pulse > i {
        animation: none;
    }
}

@media (min-width: 992px) {
    .en-tool-hero__inner {
        padding-right: min(42vw, 500px);
        text-align: left;
    }

    .en-tool-hero__inner h1,
    .en-tool-hero__inner > p {
        margin-right: 0;
        margin-left: 0;
    }

    .en-tool-hero__visual {
        position: absolute;
        top: 50%;
        right: 0;
        width: min(38vw, 460px);
        margin: 0;
        transform: translateY(-50%);
    }
}
