:root {
    --navy-950: #0a1238;
    --navy-900: #10184d;
    --navy-800: #141f5c;
    --navy-700: #1d2d78;
    --navy-600: #30449b;
    --mint-700: #179978;
    --mint-600: #22ad88;
    --mint-500: #3cc39a;
    --mint-300: #9fe6d2;
    --mint-100: #e7f8f2;
    --orange-600: #ef7300;
    --orange-500: #ff8a00;
    --orange-300: #ffb65b;
    --orange-100: #fff0de;
    --charcoal: #33363d;
    --slate-700: #4c5768;
    --slate-600: #647083;
    --slate-500: #7d8898;
    --line: #e2e7ef;
    --surface: #f6f8fc;
    --surface-mint: #f1faf7;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(13, 26, 75, 0.08);
    --shadow-md: 0 18px 52px rgba(13, 26, 75, 0.12);
    --shadow-lg: 0 32px 90px rgba(10, 22, 71, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --container: 1240px;
    --header-height: 86px;

    /* FONT CONFIGURATION
       Change these two variables to update typography site-wide.
       Vietnamese / English: Be Vietnam Pro + safe system fallbacks.
       Simplified Chinese: native CJK font stack. */
    --font-primary: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-cjk: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, sans-serif;

    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--charcoal);
    background: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Prevent mixed Latin/CJK glyphs on the Chinese version. */
html[lang="zh-CN"] body {
    font-family: var(--font-cjk);
}

/* Give Vietnamese diacritics enough space at display sizes. */
html[lang="vi"] h1,
html[lang="vi"] h2,
html[lang="vi"] h3 {
    letter-spacing: -0.022em;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3 {
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-900);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    font-weight: 760;
}

h3 {
    font-size: 1.25rem;
    font-weight: 720;
}

p {
    color: var(--slate-600);
}

::selection {
    color: var(--navy-950);
    background: var(--mint-300);
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy-900);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

.topbar {
    position: relative;
    z-index: 101;
    color: rgba(255, 255, 255, 0.82);
    background: var(--navy-950);
    font-size: 0.78rem;
}

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

.topbar__ecosystem,
.topbar__support {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.topbar__support {
    color: var(--white);
    transition: color var(--transition);
}

.topbar__support:hover {
    color: var(--mint-300);
}

.topbar__support svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.topbar__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint-500);
    box-shadow: 0 0 0 5px rgba(60, 195, 154, 0.14);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(218, 224, 235, 0.68);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 36px rgba(15, 28, 73, 0.09);
}

.header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 210px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.7vw, 28px);
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 650;
    white-space: nowrap;
    transition: color var(--transition);
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--mint-500), var(--orange-500));
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: var(--mint-700);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

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

.language-switcher {
    position: relative;
}

.language-switcher__button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--navy-900);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
}

.language-switcher__button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.language-switcher__button .chevron {
    width: 13px;
    height: 13px;
    transition: transform var(--transition);
}

.language-switcher.is-open .chevron {
    transform: rotate(180deg);
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: 190px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity var(--transition), transform var(--transition);
}

.language-switcher.is-open .language-switcher__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switcher__menu a {
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--slate-700);
    font-size: 0.86rem;
    font-weight: 600;
}

.language-switcher__menu a:hover,
.language-switcher__menu a[aria-current="page"] {
    color: var(--navy-900);
    background: var(--mint-100);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    border-radius: 3px;
    background: var(--navy-900);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 720;
    line-height: 1;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button--small {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 11px;
    color: var(--white);
    background: var(--navy-900);
    font-size: 0.82rem;
}

.button--small:hover {
    background: var(--navy-700);
    box-shadow: 0 10px 22px rgba(20, 31, 92, 0.22);
}

.button--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    box-shadow: 0 14px 30px rgba(20, 31, 92, 0.22);
}

.button--primary:hover {
    box-shadow: 0 18px 38px rgba(20, 31, 92, 0.3);
}

.button--ghost {
    border-color: var(--line);
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.7);
}

.button--ghost:hover {
    border-color: var(--mint-500);
    color: var(--mint-700);
    background: var(--white);
}

.button--white {
    color: var(--navy-900);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(6, 13, 45, 0.2);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.38);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.button--outline-light:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.14);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background:
        radial-gradient(circle at 76% 28%, rgba(60, 195, 154, 0.15), transparent 24%),
        radial-gradient(circle at 82% 70%, rgba(255, 138, 0, 0.09), transparent 23%),
        linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 100%;
    background-image: radial-gradient(rgba(20, 31, 92, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    mask-image: linear-gradient(90deg, rgba(0,0,0,.45), transparent 88%);
}

.hero__mesh {
    position: absolute;
    top: -220px;
    right: -140px;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(20, 31, 92, 0.07);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(20, 31, 92, 0.025),
        0 0 0 160px rgba(60, 195, 154, 0.02),
        0 0 0 240px rgba(255, 138, 0, 0.015);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
    align-items: center;
    gap: clamp(35px, 5vw, 82px);
    padding-block: 74px 64px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mint-700);
    font-size: 0.75rem;
    font-weight: 790;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 13px;
    border: 1px solid rgba(60, 195, 154, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 26px rgba(17, 35, 84, 0.05);
}

.eyebrow__icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--mint-500);
}

.eyebrow__icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.hero h1 {
    max-width: 690px;
    margin: 27px 0 24px;
    font-size: clamp(3.4rem, 6.4vw, 5.7rem);
    font-weight: 780;
    letter-spacing: -0.062em;
}

html[lang="vi"] .hero h1 {
    letter-spacing: -0.038em;
}

html[lang="zh-CN"] .hero h1 {
    letter-spacing: -0.01em;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    color: transparent;
    background: linear-gradient(100deg, var(--navy-800) 12%, var(--mint-600) 58%, var(--orange-500) 98%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 800;
}

.hero__lead {
    max-width: 650px;
    margin-bottom: 32px;
    font-size: clamp(1.02rem, 1.5vw, 1.17rem);
    line-height: 1.78;
}

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

.hero__proofs {
    display: grid;
    max-width: 690px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.proof-item {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 11px;
    padding-right: 16px;
    border-right: 1px solid var(--line);
}

.proof-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.proof-item__mark {
    display: grid;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(60, 195, 154, 0.26);
    border-radius: 9px;
    color: var(--mint-700);
    background: var(--mint-100);
    font-size: 0.68rem;
    font-weight: 800;
}

.proof-item div {
    display: grid;
    min-width: 0;
}

.proof-item strong {
    color: var(--navy-900);
    font-size: 0.86rem;
}

.proof-item span:not(.proof-item__mark) {
    overflow: hidden;
    color: var(--slate-500);
    font-size: 0.73rem;
    text-overflow: ellipsis;
}

.hero-visual {
    position: relative;
    width: min(100%, 610px);
    aspect-ratio: 1 / 1;
    justify-self: end;
}

.hero-visual__glow {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 195, 154, 0.24), rgba(35, 54, 126, 0.04) 58%, transparent 72%);
    filter: blur(8px);
}

.orbit {
    position: absolute;
    inset: 10%;
    border: 1px dashed rgba(20, 31, 92, 0.2);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.orbit::before,
.orbit::after {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    content: "";
}

.orbit::before {
    top: 13%;
    right: 13%;
    background: var(--orange-500);
    box-shadow: 0 0 0 7px rgba(255, 138, 0, 0.12);
}

.orbit::after {
    bottom: 7%;
    left: 27%;
    background: var(--mint-500);
    box-shadow: 0 0 0 7px rgba(60, 195, 154, 0.12);
}

.orbit--middle {
    inset: 23%;
    border-style: solid;
    border-color: rgba(60, 195, 154, 0.18);
    animation-direction: reverse;
    animation-duration: 24s;
}

.orbit--middle::before {
    top: auto;
    right: auto;
    bottom: 8%;
    left: 14%;
    width: 8px;
    height: 8px;
    background: var(--navy-700);
}

.orbit--middle::after {
    top: 9%;
    right: 11%;
    bottom: auto;
    left: auto;
    width: 8px;
    height: 8px;
    background: var(--mint-500);
}

.hero-visual__core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 230px;
    height: 230px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg), inset 0 0 0 9px rgba(241, 248, 246, 0.95);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(14px);
}

.hero-visual__core img {
    width: 102px;
    margin-bottom: 5px;
}

.hero-visual__core strong {
    color: var(--navy-900);
    font-size: 1.04rem;
}

.hero-visual__core span {
    color: var(--mint-700);
    font-size: 0.76rem;
    font-weight: 700;
}

.hero-visual__badge {
    position: absolute;
    z-index: 5;
    top: 3%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(20, 31, 92, 0.08);
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    font-size: 0.72rem;
    font-weight: 750;
    transform: translateX(-50%);
    white-space: nowrap;
}

.hero-visual__badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-500);
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 150px;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(226, 231, 239, 0.82);
    border-radius: 16px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.91);
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 730;
    backdrop-filter: blur(12px);
    animation: float 5.6s ease-in-out infinite;
}

.floating-card__icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy-800);
    background: var(--surface);
}

.floating-card__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.floating-card--one {
    top: 17%;
    left: 0;
}

.floating-card--two {
    top: 21%;
    right: -2%;
    animation-delay: -1.6s;
}

.floating-card--three {
    bottom: 20%;
    left: -1%;
    animation-delay: -2.8s;
}

.floating-card--four {
    right: 0;
    bottom: 18%;
    animation-delay: -3.8s;
}

.hero-visual__status {
    position: absolute;
    z-index: 5;
    bottom: 3%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid rgba(60, 195, 154, 0.18);
    border-radius: 999px;
    color: var(--mint-700);
    background: rgba(245, 255, 251, 0.92);
    box-shadow: var(--shadow-sm);
    font-size: 0.73rem;
    font-weight: 760;
    transform: translateX(-50%);
    white-space: nowrap;
}

.status-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint-500);
}

.status-pulse::after {
    position: absolute;
    inset: -5px;
    border: 1px solid var(--mint-500);
    border-radius: 50%;
    content: "";
    animation: pulse 1.8s ease-out infinite;
}

.industry-strip {
    position: relative;
    z-index: 4;
    border-top: 1px solid rgba(218, 224, 235, 0.75);
    border-bottom: 1px solid rgba(218, 224, 235, 0.75);
    background: var(--white);
}

.industry-strip .container {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
    gap: 36px;
    padding-block: 24px;
}

.industry-strip p {
    margin: 0;
    color: var(--navy-900);
    font-size: 0.83rem;
    font-weight: 730;
    line-height: 1.45;
}

.industry-strip__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
}

.industry-strip__items span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-600);
    font-size: 0.78rem;
    font-weight: 620;
    white-space: nowrap;
}

.industry-strip__items i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-500), var(--orange-500));
}

.section {
    position: relative;
    padding-block: 112px;
}

.section-heading {
    margin-bottom: 54px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.68fr);
    align-items: end;
    gap: 60px;
}

.section-heading--split h2 {
    max-width: 790px;
    margin-top: 15px;
}

.section-heading--split > p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.8;
}

.section-heading--center {
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center h2 {
    margin-top: 15px;
}

.section-heading--center p {
    max-width: 800px;
    margin: 24px auto 0;
    font-size: 1.02rem;
}

.section-kicker::before {
    width: 30px;
    height: 2px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--mint-500), var(--orange-500));
    content: "";
}

.section-kicker--light {
    color: var(--mint-300);
}

.section--services {
    overflow: hidden;
    background: var(--white);
}

.section--services::before {
    position: absolute;
    top: 70px;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(60, 195, 154, 0.16);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(60, 195, 154, 0.03), 0 0 0 140px rgba(20, 31, 92, 0.018);
}

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

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 356px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff, #fbfcfe);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(60, 195, 154, 0.14);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 30px rgba(60, 195, 154, 0.03), 0 0 0 60px rgba(255, 138, 0, 0.02);
    transition: transform 500ms ease;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(60, 195, 154, 0.42);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.service-card:hover::after {
    transform: scale(1.18);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    background: linear-gradient(155deg, #f9fcff, #f3faf8);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    background: linear-gradient(155deg, #fff, #fff9f2);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card__number {
    color: var(--mint-700);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-card__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--navy-900);
    background: var(--white);
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.service-card:hover .service-card__arrow {
    color: var(--white);
    background: var(--navy-900);
    transform: rotate(8deg);
}

.service-card__arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 42px 0 16px;
    font-size: 1.35rem;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
    font-size: 0.91rem;
    line-height: 1.75;
}

.service-card__tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.service-card__tags span {
    padding: 6px 9px;
    border: 1px solid rgba(20, 31, 92, 0.08);
    border-radius: 999px;
    color: var(--slate-600);
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.67rem;
    font-weight: 650;
}

.section--manufacturing {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 28%, rgba(60, 195, 154, 0.18), transparent 25%),
        radial-gradient(circle at 82% 75%, rgba(255, 138, 0, 0.12), transparent 23%),
        linear-gradient(145deg, var(--navy-950), #111e59 62%, #14275a);
}

.manufacturing__decor {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, black 10%, transparent 78%);
}

.section--manufacturing h2,
.section--manufacturing h3 {
    color: var(--white);
}

.section--manufacturing .section-heading p {
    color: rgba(255, 255, 255, 0.67);
}

.role-map {
    position: relative;
    display: grid;
    grid-template-columns: 330px 1fr;
    align-items: center;
    gap: 58px;
}

.role-map__core {
    position: sticky;
    top: 145px;
    display: grid;
    width: 310px;
    height: 310px;
    place-items: center;
    align-content: center;
    justify-self: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 70%);
    box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.018), 0 30px 80px rgba(4, 9, 31, 0.25);
}

.role-map__core img {
    width: 118px;
    margin-bottom: 13px;
}

.role-map__core strong {
    color: var(--white);
    font-size: 1.25rem;
}

.role-map__core > span:not(.role-map__ring) {
    color: var(--mint-300);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.role-map__ring {
    position: absolute;
    inset: -28px;
    border: 1px dashed rgba(60, 195, 154, 0.23);
    border-radius: 50%;
    animation: spin 28s linear infinite;
}

.role-map__ring::after {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange-500);
    box-shadow: 0 0 0 7px rgba(255, 138, 0, 0.12);
    content: "";
}

.role-map__ring--two {
    inset: -65px;
    border-color: rgba(255, 255, 255, 0.09);
    animation-direction: reverse;
    animation-duration: 38s;
}

.role-map__ring--two::after {
    top: auto;
    right: auto;
    bottom: 18%;
    left: 7%;
    background: var(--mint-500);
    box-shadow: 0 0 0 7px rgba(60, 195, 154, 0.12);
}

.role-map__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.role-group {
    position: relative;
    overflow: hidden;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
    transition-delay: var(--delay, 0ms);
}

.role-group:hover {
    border-color: rgba(60, 195, 154, 0.36);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.role-group__title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.role-group__title > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    color: var(--mint-300);
    background: rgba(60, 195, 154, 0.11);
    font-size: 0.68rem;
    font-weight: 800;
}

.role-group h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: -0.015em;
}

.role-group ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.role-group li {
    position: relative;
    padding-left: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    line-height: 1.45;
}

.role-group li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange-500);
    content: "";
}

.coverage-panel {
    display: flex;
    max-width: 920px;
    align-items: center;
    gap: 18px;
    margin: 55px auto 0;
    padding: 22px 25px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.coverage-panel__icon {
    display: grid;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--orange-300);
    background: rgba(255, 138, 0, 0.12);
}

.coverage-panel__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.coverage-panel strong {
    color: var(--white);
}

.coverage-panel p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

.section--use-cases {
    overflow: hidden;
    background: var(--surface);
}

.section--use-cases::before {
    position: absolute;
    bottom: -210px;
    left: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 195, 154, 0.12), transparent 66%);
    content: "";
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.use-case {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.use-case:hover {
    border-color: rgba(60, 195, 154, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.use-case::after {
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(60, 195, 154, 0.08), rgba(255, 138, 0, 0.08));
    content: "";
}

.use-case__index {
    color: var(--slate-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.use-case__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin: 34px 0 28px;
    border-radius: 15px;
    color: var(--navy-800);
    background: linear-gradient(145deg, var(--mint-100), var(--orange-100));
}

.use-case__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.use-case h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 13px;
    font-size: 1.12rem;
}

.use-case p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.7;
}

.section--process {
    background: var(--white);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: 78px;
}

.process-intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.process-intro h2 {
    margin: 15px 0 23px;
}

.process-intro > p {
    max-width: 530px;
    font-size: 1rem;
}

.process-intro__visual {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--surface), var(--surface-mint));
}

.process-intro__visual img {
    width: 100%;
    height: auto;
}

.process-steps {
    position: relative;
    display: grid;
    gap: 15px;
}

.process-steps::before {
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 31px;
    width: 1px;
    background: linear-gradient(var(--mint-500), var(--line), var(--orange-500));
    content: "";
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 23px;
    padding: 27px 28px 27px 0;
    border: 1px solid transparent;
    border-radius: 18px;
    transition: padding var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.process-step:hover {
    padding-left: 18px;
    border-color: var(--line);
    background: var(--surface);
    transform: translateX(4px);
}

.process-step__number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(60, 195, 154, 0.26);
    border-radius: 18px;
    color: var(--mint-700);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(20, 31, 92, 0.07);
    font-size: 0.74rem;
    font-weight: 800;
}

.process-step h3 {
    margin: 4px 0 8px;
    font-size: 1.14rem;
}

.process-step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
}

.section--why {
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #f2f6fb);
}

.section--why::after {
    position: absolute;
    top: -120px;
    right: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(20, 31, 92, 0.06);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(60, 195, 154, 0.025), 0 0 0 140px rgba(255, 138, 0, 0.02);
}

.why-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
}

.why-copy h2 {
    margin: 15px 0 34px;
    font-size: clamp(2.05rem, 3.6vw, 3.25rem);
}

.why-copy blockquote {
    position: relative;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(60, 195, 154, 0.24);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.why-copy blockquote > span {
    position: absolute;
    top: 4px;
    right: 20px;
    color: rgba(60, 195, 154, 0.19);
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
}

.why-copy blockquote p {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--navy-900);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.6;
}

.why-copy blockquote cite {
    color: var(--slate-500);
    font-size: 0.75rem;
    font-style: normal;
}

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

.why-card {
    position: relative;
    min-height: 260px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(20, 31, 92, 0.045);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover {
    border-color: rgba(60, 195, 154, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--navy-800);
    background: var(--mint-100);
}

.why-card:nth-child(even) .why-card__icon {
    color: var(--orange-600);
    background: var(--orange-100);
}

.why-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.why-card__index {
    position: absolute;
    top: 29px;
    right: 27px;
    color: var(--slate-500);
    font-size: 0.7rem;
    font-weight: 800;
}

.why-card h3 {
    margin: 42px 0 12px;
    font-size: 1.11rem;
}

.why-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.7;
}

.cta-band {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(110deg, var(--navy-950), var(--navy-700) 70%, #174e74);
}

.cta-band::before {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, black 65%);
}

.cta-band__rings {
    position: absolute;
    top: -250px;
    right: -150px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(60, 195, 154, 0.05), 0 0 0 140px rgba(255, 138, 0, 0.035);
}

.cta-band__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding-block: 82px;
}

.cta-band h2 {
    max-width: 760px;
    margin: 13px 0 18px;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.55rem);
}

.cta-band p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.section--contact {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
    gap: 24px;
}

.contact-form-panel {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.contact-form-panel h2 {
    max-width: 650px;
    margin: 14px 0 18px;
    font-size: clamp(2.1rem, 3.7vw, 3.25rem);
}

.contact-form-panel__intro {
    max-width: 720px;
    margin-bottom: 34px;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field > span {
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dce2eb;
    border-radius: 13px;
    outline: none;
    color: var(--navy-900);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
    min-height: 52px;
    padding: 0 15px;
}

.field textarea {
    min-height: 136px;
    padding: 13px 15px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa4b3;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--mint-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(60, 195, 154, 0.11);
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 23px;
}

.contact-form__footer > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
    font-size: 0.7rem;
}

.contact-form__footer > span svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--mint-700);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.contact-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 42px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 90% 15%, rgba(60, 195, 154, 0.22), transparent 24%),
        linear-gradient(155deg, var(--navy-950), var(--navy-800));
    box-shadow: var(--shadow-lg);
}

.contact-card__brand {
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card__brand img {
    width: 230px;
}

.contact-card__brand p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
}

.contact-card__details {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 21px;
    margin-top: 31px;
}

.contact-detail {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 14px;
    transition: transform var(--transition);
}

a.contact-detail:hover {
    transform: translateX(4px);
}

.contact-detail__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--mint-300);
    background: rgba(255, 255, 255, 0.06);
}

.contact-detail__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.contact-detail div {
    display: grid;
    gap: 3px;
}

.contact-detail small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.68rem;
    font-weight: 680;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-detail strong {
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 620;
    line-height: 1.55;
}

.contact-card__graphic {
    position: absolute;
    right: -150px;
    bottom: -140px;
    width: 360px;
    height: 360px;
}

.contact-card__ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.contact-card__ring--two {
    inset: 50px;
    border-color: rgba(60, 195, 154, 0.16);
}

.contact-card__ring--three {
    inset: 100px;
    border-color: rgba(255, 138, 0, 0.14);
}

.section--faq {
    padding-top: 10px;
    background: var(--white);
}

.faq-list {
    display: grid;
    max-width: 930px;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
    border-color: rgba(60, 195, 154, 0.35);
    box-shadow: 0 12px 30px rgba(20, 31, 92, 0.06);
}

.faq-item summary {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 23px;
    color: var(--navy-900);
    cursor: pointer;
    font-weight: 710;
    list-style: none;
}

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

.faq-item summary i {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--surface);
}

.faq-item summary i::before,
.faq-item summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1.5px;
    border-radius: 3px;
    background: var(--navy-900);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
    padding: 0 23px 21px;
}

.faq-item__answer p {
    max-width: 800px;
    margin: 0;
    font-size: 0.89rem;
    line-height: 1.75;
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.7fr 1fr;
    gap: 58px;
    padding-block: 72px 56px;
}

.footer__brand img {
    width: 225px;
}

.footer__brand p {
    max-width: 340px;
    margin: 20px 0 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
}

.footer__parent {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    color: var(--mint-300);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.68rem;
    font-weight: 700;
}

.footer__column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer__column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.86rem;
    letter-spacing: -0.01em;
}

.footer__column a,
.footer__column span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.77rem;
    line-height: 1.65;
    transition: color var(--transition);
}

.footer__column a:hover {
    color: var(--mint-300);
}

.footer__column--contact {
    gap: 12px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom p {
    margin: 0 0 3px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.73rem;
}

.footer__bottom small {
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.64rem;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mint-300);
    font-size: 0.73rem;
    font-weight: 700;
}

.back-to-top svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes pulse {
    0% { opacity: 0.85; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(1.7); }
}

@media (max-width: 1180px) {
    .primary-nav {
        gap: 15px;
    }

    .primary-nav a {
        font-size: 0.8rem;
    }

    .brand img {
        width: 184px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    }

    .floating-card {
        min-width: 136px;
        padding: 10px 12px;
    }

    .role-map {
        grid-template-columns: 280px 1fr;
        gap: 46px;
    }

    .role-map__core {
        width: 260px;
        height: 260px;
    }

    .role-group ul {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1024px) {
    :root {
        --header-height: 76px;
    }

    .header__inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .primary-nav {
        position: fixed;
        top: calc(38px + var(--header-height));
        right: 18px;
        left: 18px;
        display: grid;
        align-content: start;
        gap: 0;
        max-height: calc(100vh - 140px);
        padding: 17px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
        font-size: 0.93rem;
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .primary-nav a::after {
        display: none;
    }

    .header__actions {
        margin-left: auto;
    }

    .header__actions .button--small {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 65px;
        padding-block: 70px 80px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero-visual {
        width: min(100%, 610px);
        justify-self: center;
    }

    .industry-strip .container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-strip p {
        text-align: center;
    }

    .industry-strip__items {
        justify-content: center;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .role-map {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .role-map__core {
        position: relative;
        top: auto;
    }

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

    .process-intro {
        position: relative;
        top: auto;
    }

    .process-intro__visual {
        max-width: 620px;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-copy {
        max-width: 780px;
    }

    .cta-band__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-band__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .contact-card {
        min-height: 520px;
    }

    .footer__grid {
        grid-template-columns: 1.3fr 0.7fr 0.7fr;
    }

    .footer__column--contact {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer__column--contact h3 {
        grid-column: 1 / -1;
    }
}

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

    .topbar__inner {
        min-height: 34px;
        justify-content: center;
    }

    .topbar__ecosystem {
        font-size: 0.7rem;
        text-align: center;
    }

    .topbar__support {
        display: none;
    }

    .brand img {
        width: 168px;
    }

    .language-switcher__button {
        min-height: 40px;
        padding: 0 10px;
    }

    .language-switcher__button svg:first-child {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px;
    }

    .primary-nav {
        top: calc(34px + var(--header-height));
    }

    .hero__grid {
        gap: 48px;
        padding-block: 54px 65px;
    }

    .hero h1 {
        margin-top: 22px;
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .hero__lead {
        font-size: 0.98rem;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__proofs {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-top: 36px;
    }

    .proof-item {
        padding: 0 0 13px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .hero-visual {
        width: 100%;
        max-width: 520px;
    }

    .hero-visual__core {
        width: 175px;
        height: 175px;
    }

    .hero-visual__core img {
        width: 76px;
    }

    .floating-card {
        min-width: 118px;
        gap: 7px;
        padding: 8px 10px;
        border-radius: 12px;
        font-size: 0.68rem;
    }

    .floating-card__icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .floating-card__icon svg {
        width: 16px;
        height: 16px;
    }

    .floating-card--one {
        left: -2%;
    }

    .floating-card--two {
        right: -2%;
    }

    .floating-card--three {
        left: -2%;
    }

    .floating-card--four {
        right: -2%;
    }

    .hero-visual__badge,
    .hero-visual__status {
        font-size: 0.62rem;
    }

    .industry-strip__items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .section {
        padding-block: 82px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

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

    .service-card {
        min-height: auto;
    }

    .role-map__core {
        width: 215px;
        height: 215px;
    }

    .role-map__ring {
        inset: -20px;
    }

    .role-map__ring--two {
        inset: -43px;
    }

    .role-map__core img {
        width: 91px;
    }

    .role-map__groups {
        grid-template-columns: 1fr;
    }

    .role-group ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coverage-panel {
        align-items: flex-start;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .use-case {
        min-height: auto;
    }

    .process-steps::before {
        left: 25px;
    }

    .process-step {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        padding-right: 0;
    }

    .process-step__number {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .process-step:hover {
        padding-left: 0;
        background: transparent;
        transform: none;
    }

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

    .why-card {
        min-height: auto;
    }

    .cta-band__inner {
        padding-block: 64px;
    }

    .cta-band__actions {
        display: grid;
        width: 100%;
    }

    .contact-form-panel,
    .contact-card {
        padding: 28px;
        border-radius: 22px;
    }

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

    .field--full {
        grid-column: auto;
    }

    .contact-form__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form__footer .button {
        width: 100%;
    }

    .contact-card {
        min-height: 520px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 28px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__column--contact {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .footer__column--contact h3 {
        grid-column: auto;
    }

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

@media (max-width: 440px) {
    .brand img {
        width: 150px;
    }

    .language-switcher__button {
        padding: 0 8px;
    }

    .hero-visual__core {
        width: 148px;
        height: 148px;
    }

    .hero-visual__core img {
        width: 64px;
        margin-bottom: 2px;
    }

    .hero-visual__core strong {
        font-size: 0.84rem;
    }

    .hero-visual__core span {
        font-size: 0.62rem;
    }

    .floating-card--one,
    .floating-card--three {
        left: -5%;
    }

    .floating-card--two,
    .floating-card--four {
        right: -5%;
    }

    .industry-strip__items {
        grid-template-columns: 1fr;
    }

    .role-group ul {
        grid-template-columns: 1fr;
    }

    .contact-card__brand img,
    .footer__brand img {
        width: 200px;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
