:root {
    --color-primary: #102d2d;
    --color-primary-dark: #071f1f;
    --color-accent: #1be2c3;
    --color-ink: #102d2d;
    --color-heading: #102d2d;
    --color-text: #365351;
    --color-muted: #647d79;
    --color-border: #d7e5e2;
    --color-background: #ffffff;
    --color-soft: #f2f8f6;
    --color-warm: #f7f3ea;
    --color-surface: #ffffff;
    --color-navy: #102d2d;
    --color-navy-light: #1b4744;
    --color-violet: #7568e8;
    --color-amber: #f0ad4e;
    --color-coral: #ee7b67;
    --shadow-sm: 0 10px 30px rgba(16, 45, 45, 0.07);
    --shadow-lg: 0 28px 70px rgba(16, 45, 45, 0.16);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --section-spacing: clamp(5rem, 8vw, 8rem);
    --container-width: 1240px;
    --header-height: 82px;
    --transition: 180ms ease;
}

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

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: rgba(27, 226, 195, 0.28);
    color: var(--color-ink);
}

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

a {
    color: var(--color-primary);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--color-primary-dark);
}

h1,
h2,
h3,
h4 {
    color: var(--color-heading);
    font-weight: 720;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

.site-container {
    max-width: var(--container-width);
}

.section-space {
    padding-block: var(--section-spacing);
}

.bg-soft {
    background: var(--color-soft);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 0.7rem 1rem;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--color-ink);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition);
}

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

:focus-visible {
    outline: 3px solid rgba(27, 226, 195, 0.55);
    outline-offset: 3px;
}

.btn {
    --bs-btn-padding-x: 1.45rem;
    --bs-btn-padding-y: 0.76rem;
    --bs-btn-font-size: 0.94rem;
    --bs-btn-font-weight: 700;
    --bs-btn-border-radius: 10px;
    letter-spacing: -0.01em;
    transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background-color var(--transition), border-color var(--transition);
}

.btn-lg {
    --bs-btn-padding-x: 1.65rem;
    --bs-btn-padding-y: 0.92rem;
    --bs-btn-font-size: 1rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary-dark);
    --bs-btn-hover-border-color: var(--color-primary-dark);
    --bs-btn-active-bg: var(--color-primary-dark);
    --bs-btn-active-border-color: var(--color-primary-dark);
    box-shadow: 0 10px 24px rgba(16, 45, 45, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(16, 45, 45, 0.28);
}

.btn-secondary {
    --bs-btn-color: var(--color-heading);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: var(--color-border);
    --bs-btn-hover-color: var(--color-primary);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #b8cbd1;
    box-shadow: var(--shadow-sm);
}

.btn-light {
    --bs-btn-color: var(--color-ink);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: var(--color-ink);
    --bs-btn-hover-bg: var(--color-warm);
    --bs-btn-hover-border-color: var(--color-warm);
}

.btn-link-arrow {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    color: var(--color-heading);
    text-decoration: none;
    box-shadow: none;
}

.btn-link-arrow span,
.text-link span {
    transition: transform var(--transition);
}

.btn-link-arrow:hover span,
.text-link:hover span {
    transform: translateX(4px);
}

.text-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    color: var(--color-primary);
    font-weight: 750;
    text-decoration: none;
}

.section-kicker,
.eyebrow {
    margin-bottom: 1.05rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
}

.eyebrow > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 5px rgba(27, 226, 195, 0.16);
}

.section-title {
    max-width: 720px;
    margin-bottom: 1.35rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-copy {
    max-width: 620px;
    margin-bottom: 1.8rem;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.section-heading-row .section-title,
.section-heading-row .section-copy {
    margin-bottom: 0;
}

.section-heading {
    margin-bottom: 4rem;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered > * {
    margin-right: auto;
    margin-left: auto;
}

.section-heading.narrow {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.kicker-light {
    color: var(--color-accent);
}

.text-light-muted {
    color: rgba(232, 243, 246, 0.7) !important;
}

/* Header and navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(219, 229, 232, 0.8);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.navbar {
    min-height: var(--header-height);
    padding-block: 0.8rem;
}

.brand-lockup {
    display: inline-flex;
    gap: 0.72rem;
    align-items: center;
    color: var(--color-heading);
    text-decoration: none;
}

.brand-lockup:hover {
    color: var(--color-heading);
}

.brand-logo {
    display: block;
    width: clamp(150px, 13vw, 188px);
    height: auto;
}

.navbar-nav {
    gap: 0.15rem;
}

.navbar .nav-link {
    position: relative;
    padding: 0.65rem 0.85rem !important;
    color: #49616b;
    font-size: 0.93rem;
    font-weight: 680;
}

.navbar .nav-link::after {
    position: absolute;
    right: 0.85rem;
    bottom: 0.32rem;
    left: 0.85rem;
    height: 2px;
    transform: scaleX(0);
    border-radius: 2px;
    background: var(--color-primary);
    content: "";
    transition: transform var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--color-heading);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav {
    --bs-btn-padding-x: 1.15rem;
    --bs-btn-padding-y: 0.62rem;
}

.language-link,
.portal-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.language-link:hover,
.portal-link:hover {
    border-color: var(--color-accent);
    background: rgba(27, 226, 195, 0.12);
    color: var(--color-heading);
}

.language-link:focus-visible,
.portal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.portal-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(27, 226, 195, 0.22);
}

/* Homepage hero */
.hero,
.subpage-hero {
    position: relative;
    overflow: hidden;
    background: #fbfdfd;
}

.hero::before,
.subpage-hero::before {
    position: absolute;
    top: -320px;
    right: -240px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 226, 195, 0.13), rgba(27, 226, 195, 0) 68%);
    content: "";
    pointer-events: none;
}

.hero-home {
    padding-block: clamp(5rem, 8vw, 8rem) clamp(5rem, 7vw, 7rem);
}

.hero h1,
.subpage-hero h1,
.contact-intro h1 {
    max-width: 760px;
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 5.5vw, 5.15rem);
    letter-spacing: -0.055em;
}

.hero-home h1 {
    font-size: clamp(3.2rem, 5.6vw, 5.4rem);
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 2rem;
    color: #58707a;
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin: 2rem 0 0;
    padding: 0;
    color: var(--color-muted);
    font-size: 0.87rem;
    font-weight: 650;
    list-style: none;
}

.hero-proof li {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.hero-proof li span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: rgba(27, 226, 195, 0.16);
    color: #0d7969;
    font-size: 0.67rem;
}

.dashboard-wrap {
    position: relative;
    z-index: 1;
    min-height: 510px;
    padding: 2.5rem 0 1.5rem 1.5rem;
}

.dashboard-glow {
    position: absolute;
    inset: 5% -5% 0 8%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(27, 226, 195, 0.09);
    filter: blur(45px);
}

.dashboard-frame {
    overflow: hidden;
    width: 106%;
    min-height: 438px;
    border: 1px solid rgba(216, 227, 231, 0.9);
    border-radius: 18px;
    background: #eef3f4;
    box-shadow: var(--shadow-lg);
}

.dashboard-topbar {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    height: 42px;
    padding: 0 0.9rem;
    border-bottom: 1px solid #e0e8ea;
    background: #fff;
}

.dashboard-dots {
    display: flex;
    gap: 4px;
}

.dashboard-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4dee1;
}

.dashboard-address {
    flex: 1;
    max-width: 220px;
    margin: 0 auto;
    padding: 0.28rem 0.7rem;
    border-radius: 5px;
    background: #f4f6f7;
    color: #9aa9af;
    font-size: 0.56rem;
    text-align: center;
}

.dashboard-avatar {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #dce9ff;
    color: var(--color-primary);
    font-size: 0.48rem;
    font-weight: 800;
}

.dashboard-body {
    display: flex;
    min-height: 396px;
}

.dashboard-sidebar {
    display: flex;
    flex: 0 0 54px;
    flex-direction: column;
    gap: 17px;
    align-items: center;
    padding: 14px 0;
    background: var(--color-navy);
}

.mini-brand {
    display: grid;
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 7px;
    background: var(--color-accent);
    color: var(--color-navy);
    font-size: 0.6rem;
    font-weight: 900;
}

.sidebar-item {
    position: relative;
    width: 19px;
    height: 16px;
    border: 2px solid #66808b;
    border-radius: 4px;
}

.sidebar-item::after {
    position: absolute;
    top: 4px;
    right: 3px;
    left: 3px;
    height: 2px;
    background: #66808b;
    content: "";
}

.sidebar-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 7px rgba(27, 226, 195, 0.1);
}

.sidebar-item.active::after {
    background: var(--color-accent);
}

.sidebar-spacer {
    flex: 1;
}

.sidebar-item.small {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.dashboard-content {
    flex: 1;
    min-width: 0;
    padding: 1.35rem;
}

.dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dashboard-heading div {
    display: flex;
    flex-direction: column;
}

.dashboard-heading div span {
    color: #83969e;
    font-size: 0.55rem;
}

.dashboard-heading div strong {
    color: var(--color-heading);
    font-size: 0.9rem;
}

.dashboard-filter {
    padding: 0.38rem 0.6rem;
    border: 1px solid #d8e1e4;
    border-radius: 6px;
    background: #fff;
    color: #61767f;
    font-size: 0.58rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.metric-card,
.chart-card,
.activity-card {
    border: 1px solid #e0e7e9;
    border-radius: 9px;
    background: #fff;
}

.metric-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 0.8rem;
}

.metric-card > span {
    overflow: hidden;
    color: #768a92;
    font-size: 0.54rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.metric-card strong {
    margin-block: 0.16rem;
    color: var(--color-heading);
    font-size: 1.18rem;
}

.metric-card small {
    color: #8a9aa0;
    font-size: 0.47rem;
}

.metric-card small.positive {
    color: #11816d;
}

.metric-card small.warning {
    color: #be7514;
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.chart-card,
.activity-card {
    min-height: 205px;
    padding: 0.8rem;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-row strong {
    color: var(--color-heading);
    font-size: 0.61rem;
}

.card-title-row small {
    color: #92a0a5;
    font-size: 0.49rem;
}

.bar-chart {
    display: flex;
    gap: 7px;
    align-items: end;
    height: 126px;
    margin-top: 0.8rem;
    padding: 0 0.35rem;
    border-bottom: 1px solid #e6ecee;
    background-image: linear-gradient(to bottom, transparent 32%, #edf1f2 33%, transparent 34%, transparent 65%, #edf1f2 66%, transparent 67%);
}

.bar-chart span {
    flex: 1;
    border-radius: 4px 4px 1px 1px;
    background: #c5d8ef;
}

.bar-chart span:nth-child(1) {
    height: 42%;
}

.bar-chart span:nth-child(2) {
    height: 58%;
}

.bar-chart span:nth-child(3) {
    height: 49%;
}

.bar-chart span:nth-child(4) {
    height: 72%;
}

.bar-chart span:nth-child(5) {
    height: 64%;
}

.bar-chart span:nth-child(6) {
    height: 88%;
}

.bar-chart span:nth-child(7) {
    height: 78%;
}

.bar-chart span.today {
    background: var(--color-primary);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    padding-top: 0.4rem;
    color: #a0adb2;
    font-size: 0.42rem;
}

.live-dot {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    color: #13836e;
    font-size: 0.45rem;
}

.live-dot::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
    content: "";
}

.activity-row {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid #edf1f2;
}

.activity-row:last-child {
    border-bottom: 0;
}

.activity-icon {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    border-radius: 6px;
    background: #e1f8f3;
}

.activity-icon.blue {
    background: #e7effc;
}

.activity-icon.amber {
    background: #fff3dc;
}

.activity-row div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.activity-row strong,
.activity-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-row strong {
    color: #3f5964;
    font-size: 0.52rem;
}

.activity-row small {
    color: #94a3a9;
    font-size: 0.43rem;
}

.floating-status {
    position: absolute;
    display: flex;
    gap: 0.65rem;
    align-items: center;
    min-width: 160px;
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(218, 228, 231, 0.9);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(20, 51, 63, 0.14);
}

.floating-status-top {
    top: 0;
    right: -2rem;
}

.floating-status-bottom {
    right: 1rem;
    bottom: 0;
}

.floating-status > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.floating-status small {
    color: #84969d;
    font-size: 0.56rem;
}

.floating-status strong {
    color: var(--color-heading);
    font-size: 0.7rem;
}

.status-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: #dff8f2;
    color: #11816d;
    font-size: 0.72rem;
    font-weight: 900;
}

.status-pulse {
    width: 12px;
    height: 12px;
    margin-inline: 7px;
    border: 3px solid #dff8f2;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(27, 226, 195, 0.14);
}

.trust-strip {
    border-top: 1px solid #e6edef;
    border-bottom: 1px solid #e6edef;
    background: #fff;
}

.trust-strip .site-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    min-height: 94px;
}

.trust-strip p {
    margin: 0;
    color: #8a9ba2;
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-items {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 2rem;
}

.trust-items span {
    color: #405962;
    font-size: 0.98rem;
    font-weight: 750;
}

/* Platform overview visual */
.operations-map {
    position: relative;
    min-height: 470px;
}

.map-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed #cbdadd;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 310px;
    height: 310px;
}

.orbit-two {
    width: 450px;
    height: 450px;
    opacity: 0.55;
}

.map-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 145px;
    height: 145px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    border: 10px solid #e6f3f2;
    border-radius: 50%;
    background: var(--color-navy);
    box-shadow: 0 18px 40px rgba(10, 37, 49, 0.18);
    color: #fff;
}

.map-logo {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.map-core small {
    color: #9bb4bd;
    font-size: 0.65rem;
}

.map-node {
    position: absolute;
    display: grid;
    grid-template-columns: 38px auto;
    gap: 0 0.65rem;
    align-items: center;
    min-width: 145px;
    padding: 0.72rem 0.85rem;
    border: 1px solid #deeaec;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.node-symbol {
    grid-row: 1 / 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 9px;
    background: #e6effc;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 850;
}

.map-node strong {
    color: var(--color-heading);
    font-size: 0.78rem;
}

.map-node small {
    color: #87999f;
    font-size: 0.61rem;
}

.node-stores {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.node-products {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.node-orders {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.node-suppliers {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.node-products .node-symbol {
    background: #e1f8f3;
    color: #12846f;
}

.node-orders .node-symbol {
    background: #fff1dd;
    color: #b66a0b;
}

.node-suppliers .node-symbol {
    background: #ece9ff;
    color: #6659d1;
}

/* Capability cards */
.capability-card {
    height: 100%;
    padding: 2rem;
    border: 1px solid #e0e9eb;
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.capability-card:hover {
    transform: translateY(-4px);
    border-color: #cbdcdf;
    box-shadow: var(--shadow-sm);
}

.icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 1.45rem;
    place-items: center;
    border-radius: 12px;
    background: #e6effc;
    color: var(--color-primary);
}

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

.icon-blue {
    background: rgba(27, 226, 195, 0.14);
    color: var(--color-primary);
}

.icon-mint {
    background: rgba(27, 226, 195, 0.2);
    color: #0d7969;
}

.icon-amber {
    background: #fff2dc;
    color: #b86c0e;
}

.icon-violet {
    background: #ece9ff;
    color: #6658d2;
}

.icon-coral {
    background: #ffebe7;
    color: #cc5f4c;
}

.icon-slate {
    background: #e8eef0;
    color: #395865;
}

.capability-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.capability-card p {
    color: var(--color-muted);
    font-size: 0.94rem;
}

.section-link-row {
    margin-top: 2.5rem;
    text-align: center;
}

/* Process and benefits */
.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-grid::before {
    position: absolute;
    top: 70px;
    right: 16%;
    left: 16%;
    z-index: -1;
    border-top: 1px dashed #c8dadd;
    content: "";
}

.process-step {
    position: relative;
    padding: 0 1.5rem;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    margin-left: 35px;
    color: #9fb0b6;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.step-icon {
    position: relative;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 92px;
    height: 92px;
    margin: 0 auto 1.6rem;
    border: 8px solid #edf4f5;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(16, 47, 60, 0.08);
}

.step-icon span {
    width: 13px;
    height: 28px;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
}

.step-icon-central span:first-child,
.step-icon-central span:last-child {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.step-icon-central span:nth-child(2) {
    width: 22px;
    height: 22px;
    border-color: #11816d;
    border-radius: 7px;
    background: #e1f8f3;
}

.step-icon-growth {
    align-items: end;
    padding-bottom: 24px;
}

.step-icon-growth span {
    width: 10px;
    height: 13px;
    border: 0;
    border-radius: 2px 2px 0 0;
    background: var(--color-primary);
}

.step-icon-growth span:nth-child(2) {
    height: 23px;
}

.step-icon-growth span:nth-child(3) {
    height: 34px;
    background: var(--color-accent);
}

.process-step h3 {
    font-size: 1.22rem;
}

.process-step p {
    max-width: 330px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 0.94rem;
}

.benefits-section,
.fit-section {
    position: relative;
    overflow: hidden;
    background: var(--color-navy);
}

.benefits-section::after,
.fit-section::after {
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(27, 226, 195, 0.2);
    border-radius: 50%;
    content: "";
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 1.5rem;
    margin-top: 2.2rem;
}

.benefit-list div {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: #fff;
}

.benefit-list span {
    display: grid;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: rgba(27, 226, 195, 0.16);
    color: var(--color-accent);
    font-size: 0.7rem;
}

.benefit-list strong {
    font-size: 0.9rem;
}

.flow-visual {
    position: relative;
    z-index: 1;
    max-width: 530px;
    margin-left: auto;
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.045);
}

.flow-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0.5rem;
    align-items: center;
}

.flow-card {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: #123442;
}

.flow-card-accent {
    border-color: rgba(27, 226, 195, 0.38);
    background: #123b42;
}

.flow-card span {
    margin-bottom: 0.45rem;
    color: var(--color-accent);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.flow-card strong {
    color: #fff;
    font-size: 0.9rem;
}

.flow-card small {
    color: #8ea9b3;
    font-size: 0.68rem;
}

.flow-arrow {
    color: var(--color-accent);
    font-size: 1.4rem;
    text-align: center;
}

.flow-connector {
    width: 1px;
    height: 36px;
    margin: 0 auto;
    border-left: 1px dashed rgba(27, 226, 195, 0.48);
}

/* CTA and footer */
.cta-section {
    background: #fff;
}

.cta-panel {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    border: 1px solid #dce7e9;
    border-radius: var(--radius-lg);
    background: var(--color-warm);
}

.cta-panel h2 {
    max-width: 760px;
    margin-bottom: 0.9rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-panel p:not(.section-kicker) {
    max-width: 690px;
    color: var(--color-muted);
}

.cta-panel-compact h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.site-footer {
    padding-top: 5.5rem;
    background: #071f1f;
    color: #a5bbc3;
}

.footer-description {
    max-width: 390px;
    margin-top: 1.4rem;
    color: #8fa6af;
}

.footer-heading {
    margin-bottom: 1.3rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: #98afb8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #98afb8;
    font-size: 0.9rem;
    text-align: left;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-link-button:hover {
    color: #fff;
}

.footer-link-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.footer-contact {
    overflow-wrap: anywhere;
    color: #98afb8;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 4.5rem;
    padding-block: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #6f8993;
    font-size: 0.76rem;
}

.footer-bottom p {
    margin: 0;
}

/* Shared subpage hero */
.subpage-hero {
    padding-block: clamp(5rem, 8vw, 7.5rem);
    border-bottom: 1px solid #e4ecee;
}

.subpage-hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.9rem);
}

/* About page */
.about-hero .hero-lead {
    max-width: 790px;
}

.about-story-copy {
    max-width: 760px;
}

.about-story-copy > p {
    color: var(--color-muted);
    font-size: 1.12rem;
    line-height: 1.85;
}

.about-story-copy > p + p {
    margin-top: 1.75rem;
}

.about-conclusion {
    position: relative;
    margin-top: 2.5rem;
    padding: clamp(1.6rem, 4vw, 2.4rem);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-heading);
    box-shadow: var(--shadow-sm);
}

.about-conclusion::after {
    position: absolute;
    right: -55px;
    bottom: -85px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(27, 226, 195, 0.12);
    content: "";
}

.about-conclusion p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 700;
    line-height: 1.45;
}

/* Platform page */
.architecture-hero {
    display: grid;
    grid-template-columns: 1fr 48px 1.1fr 48px 1fr;
    align-items: center;
    min-height: 410px;
    padding: 2.2rem 1.3rem;
    border: 1px solid #dce7ea;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.arch-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.arch-label {
    color: #8b9da4;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.arch-card {
    display: flex;
    flex-direction: column;
    padding: 0.8rem;
    border: 1px solid #e1e9eb;
    border-radius: 10px;
    background: #fbfdfd;
}

.arch-card strong {
    margin-top: 0.35rem;
    color: var(--color-heading);
    font-size: 0.7rem;
}

.arch-card small {
    color: #87999f;
    font-size: 0.52rem;
}

.arch-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-primary);
}

.arch-dot.violet {
    background: var(--color-violet);
}

.arch-dot.mint {
    background: var(--color-accent);
}

.arch-dot.amber {
    background: var(--color-amber);
}

.arch-lines {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.arch-lines span {
    display: block;
    width: 100%;
    border-top: 1px solid #bfd0d5;
}

.arch-lines span:nth-child(2) {
    transform: scaleX(1.3);
}

.arch-core {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 22px;
    background: var(--color-navy);
    box-shadow: 0 15px 35px rgba(10, 37, 49, 0.2);
    text-align: center;
}

.arch-core-mark {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 0.75rem;
    place-items: center;
    border-radius: 14px;
    background: var(--color-accent);
    color: var(--color-navy);
    font-size: 0.86rem;
    font-weight: 900;
}

.arch-core strong {
    color: #fff;
    font-size: 0.84rem;
}

.arch-core small {
    color: #8eabb6;
    font-size: 0.55rem;
}

.layer-stack {
    max-width: 970px;
    margin: 0 auto;
}

.platform-layer {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
    gap: 2rem;
    align-items: center;
    padding: 1.8rem 2rem;
    border: 1px solid #dce6e9;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.layer-core {
    border-color: #214857;
    background: var(--color-navy);
}

.layer-heading {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.layer-heading > span {
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.layer-heading h3 {
    margin-bottom: 0.35rem;
    font-size: 1.12rem;
}

.layer-heading p {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.layer-core .layer-heading h3 {
    color: #fff;
}

.layer-core .layer-heading p {
    color: #93aeb8;
}

.layer-core .layer-heading > span {
    color: var(--color-accent);
}

.layer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

.layer-tags span {
    padding: 0.45rem 0.75rem;
    border: 1px solid #dce5e8;
    border-radius: 999px;
    background: #f8fafb;
    color: #506872;
    font-size: 0.71rem;
    font-weight: 700;
}

.layer-core .layer-tags span {
    border-color: #2a505e;
    background: #123442;
    color: #c7d9df;
}

.layer-link {
    display: flex;
    justify-content: space-around;
    width: 55%;
    height: 34px;
    margin: 0 auto;
}

.layer-link span {
    border-left: 1px dashed #b9cdd2;
}

.sticky-copy {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.benefit-detail-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d8e4e6;
}

.benefit-detail-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1.2rem;
    padding-block: 2rem;
    border-bottom: 1px solid #d8e4e6;
}

.detail-number {
    padding-top: 0.2rem;
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.benefit-detail-list h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.benefit-detail-list p {
    color: var(--color-muted);
}

.workflow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-track::before {
    position: absolute;
    top: 83px;
    right: 12%;
    left: 12%;
    z-index: -1;
    border-top: 1px dashed #b8cdd2;
    content: "";
}

.workflow-track li {
    position: relative;
    padding: 1.4rem;
    border: 1px solid #e0e8ea;
    border-radius: var(--radius-md);
    background: #fff;
}

.workflow-number {
    display: block;
    margin-bottom: 1rem;
    color: #91a3aa;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.workflow-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 1.2rem;
    place-items: center;
    border-radius: 13px;
    font-size: 0.76rem;
    font-weight: 850;
}

.workflow-track h3 {
    font-size: 1.05rem;
}

.workflow-track p {
    color: var(--color-muted);
    font-size: 0.86rem;
}

/* Feature page */
.features-hero {
    padding-bottom: 5.5rem;
}

.feature-nav-section {
    position: relative;
    z-index: 2;
    margin-top: -25px;
}

.feature-nav {
    display: flex;
    overflow-x: auto;
    padding: 0.35rem;
    border: 1px solid #dfe8ea;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    scrollbar-width: none;
}

.feature-nav::-webkit-scrollbar {
    display: none;
}

.feature-nav a {
    flex: 1 0 auto;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #5b727b;
    font-size: 0.83rem;
    font-weight: 720;
    text-align: center;
    text-decoration: none;
}

.feature-nav a:hover {
    background: var(--color-soft);
    color: var(--color-primary);
}

.feature-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-group {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid #dfe8ea;
    border-radius: var(--radius-md);
    background: #fff;
}

.feature-group-intro {
    padding: 2rem;
    border-right: 1px solid #e3eaec;
    background: #f7fafa;
}

.feature-index {
    margin-bottom: 1rem;
    color: #91a3a9;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.feature-group h2 {
    margin-bottom: 1rem;
    font-size: 1.55rem;
}

.feature-group-intro > p:last-child {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.feature-list {
    margin: 0;
    padding: 1.1rem 1.6rem;
    list-style: none;
}

.feature-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.1rem 0 1.1rem 1.25rem;
    border-bottom: 1px solid #e5ecee;
}

.feature-list li:last-child {
    border-bottom: 0;
}

.feature-list li::before {
    position: absolute;
    top: 1.5rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    content: "";
}

.feature-list span {
    color: var(--color-heading);
    font-size: 0.9rem;
    font-weight: 750;
}

.feature-list small {
    margin-top: 0.25rem;
    color: var(--color-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.fit-visual {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    max-width: 520px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

.fit-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 1rem;
    align-items: center;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: #123442;
}

.fit-card > span {
    grid-row: 1 / 3;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 12px;
    background: rgba(27, 226, 195, 0.14);
    color: var(--color-accent);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fit-card strong {
    color: #fff;
}

.fit-card small {
    color: #89a4ae;
}

/* Integrations page */
.integration-orbit {
    position: relative;
    min-height: 440px;
}

.integration-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed #c6d8dc;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-one {
    width: 290px;
    height: 290px;
}

.ring-two {
    width: 430px;
    height: 430px;
    opacity: 0.65;
}

.integration-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 120px;
    height: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    border: 8px solid #e5f2f1;
    border-radius: 50%;
    background: var(--color-navy);
    box-shadow: 0 16px 35px rgba(10, 37, 49, 0.2);
}

.integration-core span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.integration-core small {
    color: #91a9b2;
    font-size: 0.58rem;
}

.integration-node {
    position: absolute;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border: 1px solid #dce7e9;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.integration-node span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: #e7effc;
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 850;
}

.integration-node strong {
    color: var(--color-heading);
    font-size: 0.74rem;
}

.int-store {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.int-supplier {
    top: 25%;
    right: 0;
}

.int-shipping {
    right: 9%;
    bottom: 8%;
}

.int-finance {
    bottom: 8%;
    left: 9%;
}

.int-custom {
    top: 25%;
    left: 0;
}

.int-supplier span {
    background: #e1f8f3;
    color: #13816d;
}

.int-shipping span {
    background: #fff2dc;
    color: #b56a0d;
}

.int-finance span {
    background: #ffe9e5;
    color: #c65b49;
}

.int-custom span {
    background: #ece9ff;
    color: #6255cb;
}

.integration-note {
    position: relative;
    z-index: 3;
    margin-top: -28px;
}

.note-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
    padding: 1.15rem 1.35rem;
    border: 1px solid #dbe6e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.note-bar > span {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #e7effc;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 850;
}

.note-bar p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.note-bar strong {
    color: var(--color-heading);
}

.integration-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 290px;
    flex-direction: column;
    padding: 1.7rem;
    border: 1px solid #dfe8ea;
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform var(--transition), box-shadow var(--transition);
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.integration-letter {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    place-items: center;
    border-radius: 13px;
    background: #e7effc;
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.integration-letter.mint {
    background: #e1f8f3;
    color: #13816d;
}

.integration-letter.violet {
    background: #ece9ff;
    color: #6356cc;
}

.integration-letter.amber {
    background: #fff2dc;
    color: #b66a0d;
}

.integration-letter.coral {
    background: #ffe9e5;
    color: #c55a49;
}

.integration-card h3 {
    font-size: 1.14rem;
}

.integration-card p {
    color: var(--color-muted);
    font-size: 0.88rem;
}

.example-tag {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.33rem 0.6rem;
    border-radius: 999px;
    background: var(--color-soft);
    color: #758990;
    font-size: 0.62rem;
    font-weight: 750;
}

.integration-card-dark {
    border-color: var(--color-navy);
    background: var(--color-navy);
}

.integration-card-dark h3 {
    color: #fff;
}

.integration-card-dark p {
    color: #9ab0b9;
}

.integration-letter.dark {
    background: var(--color-accent);
    color: var(--color-navy);
}

.integration-card-dark .example-tag {
    background: #143846;
    color: #a9c0c8;
}

.api-window {
    overflow: hidden;
    max-width: 550px;
    border: 1px solid #234654;
    border-radius: var(--radius-md);
    background: var(--color-navy);
    box-shadow: var(--shadow-lg);
}

.api-topbar {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #244653;
    background: #0e2d39;
}

.api-topbar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #45636e;
}

.api-topbar small {
    margin-left: auto;
    color: #6f8c97;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.65rem;
}

.api-body {
    min-height: 270px;
    padding: 2.2rem;
    color: #dae8eb;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.api-body p {
    margin: 0;
}

.code-key {
    color: #8fc6ff;
}

.code-value {
    color: #7ce0cb;
}

.code-number {
    color: #efc77d;
}

.code-muted {
    color: #76929d;
}

.api-status {
    padding: 0.8rem 1rem;
    border-top: 1px solid #244653;
    color: #a5c0c9;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.68rem;
}

.api-status > span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--color-accent);
}

.api-status small {
    float: right;
    color: #6f8c97;
}

.compact-steps {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.compact-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0 0.9rem;
    align-items: center;
}

.compact-steps li > span {
    grid-row: 1 / 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: #e3eeef;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 850;
}

.compact-steps li div {
    display: flex;
    flex-direction: column;
}

.compact-steps strong {
    color: var(--color-heading);
    font-size: 0.9rem;
}

.compact-steps small {
    color: var(--color-muted);
}

/* Contact and legal pages */
.contact-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(5rem, 8vw, 7.5rem);
    background: #f7fafa;
}

.contact-section::before {
    position: absolute;
    top: -340px;
    left: -280px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 226, 195, 0.1), rgba(27, 226, 195, 0) 70%);
    content: "";
}

.contact-intro {
    position: relative;
    z-index: 1;
}

.contact-intro h1 {
    font-size: clamp(3rem, 5vw, 4.75rem);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-block: 2.5rem;
}

.contact-details > div {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.contact-icon {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d9e6e8;
    border-radius: 11px;
    background: #fff;
    color: var(--color-primary);
}

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

.contact-details > div > div {
    display: flex;
    flex-direction: column;
}

.contact-details small {
    color: #83969d;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
    color: var(--color-heading);
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
}

.conversation-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 1rem;
    max-width: 510px;
    padding-block: 1.15rem;
    border-top: 1px solid #dce6e8;
}

.conversation-card > span {
    color: var(--color-primary);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.conversation-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-heading);
}

.conversation-card p {
    color: var(--color-muted);
    font-size: 0.83rem;
}

.contact-form-card {
    position: relative;
    z-index: 1;
    padding: clamp(1.7rem, 4vw, 3rem);
    border: 1px solid #dce6e8;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.form-heading {
    margin-bottom: 2rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #e3eaec;
}

.form-heading h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.form-heading p:not(.section-kicker) {
    color: var(--color-muted);
}

.form-label {
    margin-bottom: 0.45rem;
    color: var(--color-heading);
    font-size: 0.82rem;
    font-weight: 750;
}

.form-label > span:not(.optional) {
    color: #c94d3c;
}

.form-label .optional {
    margin-left: 0.35rem;
    color: #94a4aa;
    font-size: 0.67rem;
    font-weight: 600;
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: #ccdadd;
    border-radius: 10px;
    color: var(--color-heading);
    font-size: 0.92rem;
}

textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.form-control::placeholder {
    color: #9baaae;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(27, 226, 195, 0.2);
}

.form-check {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: start;
}

.form-check-input {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    border-color: #b9cbd0;
}

.form-check-input:checked {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.form-check-label {
    flex: 1;
    color: var(--color-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.form-check .invalid-feedback {
    flex-basis: 100%;
    margin-left: 1.8rem;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    margin-top: 0.9rem;
    color: #82959c;
    font-size: 0.72rem;
    text-align: center;
}

.form-status {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #b9e5db;
    border-radius: 10px;
    background: #edf9f6;
    color: #126d5d;
    font-size: 0.84rem;
    font-weight: 650;
}

.form-status.is-error {
    border-color: #f0c3bc;
    background: #fff3f1;
    color: #a53f30;
}

.legal-hero {
    padding-block: 5.5rem 3.5rem;
    border-bottom: 1px solid #e2eaec;
    background: var(--color-soft);
}

.legal-container {
    max-width: 840px;
}

.legal-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.7rem, 5vw, 4.2rem);
}

.legal-hero p:last-child {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.legal-updated {
    margin-bottom: 0;
}

.legal-content {
    padding-block: 4rem 6rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-muted);
    line-height: 1.75;
}

.legal-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    font-size: 1.08rem;
}

.legal-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.35rem;
    color: var(--color-muted);
}

.legal-content li {
    padding-left: 0.25rem;
    line-height: 1.7;
}

.legal-content li + li {
    margin-top: 0.25rem;
}

.legal-content address {
    color: var(--color-muted);
    font-style: normal;
    line-height: 1.75;
}

.legal-content a {
    color: var(--color-primary);
    font-weight: 650;
    text-underline-offset: 0.18em;
}

/* Cookie consent */
.cookie-banner {
    position: fixed;
    z-index: 1090;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-inner {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.35rem 1.5rem;
    border: 1px solid #31515c;
    border-radius: 16px;
    background: var(--color-navy);
    box-shadow: 0 20px 55px rgba(8, 29, 38, 0.3);
}

.cookie-banner-copy {
    max-width: 720px;
}

.cookie-banner-copy strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 1rem;
}

.cookie-banner-copy p {
    margin: 0;
    color: #b6c8ce;
    font-size: 0.84rem;
    line-height: 1.6;
}

.cookie-banner-copy a {
    color: #fff;
    text-underline-offset: 0.18em;
}

.cookie-banner-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.7rem;
}

.cookie-banner-actions .btn {
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    :root {
        --container-width: 1100px;
    }

    .dashboard-wrap {
        transform: scale(0.92);
        transform-origin: left center;
    }

    .dashboard-frame {
        width: 112%;
    }

    .floating-status-top {
        right: -3rem;
    }

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

    .feature-group-intro {
        border-right: 0;
        border-bottom: 1px solid #e3eaec;
    }

    .architecture-hero {
        grid-template-columns: 1fr 30px 1.2fr 30px 1fr;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 74px;
    }

    .site-header,
    .navbar {
        min-height: var(--header-height);
    }

    .navbar-collapse {
        margin-top: 0.8rem;
        padding: 0.8rem;
        border: 1px solid var(--color-border);
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow-sm);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar .nav-link {
        padding: 0.7rem 0.75rem !important;
    }

    .navbar .nav-link::after {
        right: auto;
        bottom: 0.45rem;
        left: 0.75rem;
        width: 26px;
    }

    .btn-nav {
        width: 100%;
        margin-top: 0.6rem;
    }

    .language-link {
        width: 100%;
        margin-top: 0.6rem;
    }

    .portal-link {
        margin-top: 0.6rem;
    }

    .hero-home,
    .subpage-hero {
        padding-block: 4.5rem;
    }

    .dashboard-wrap {
        width: min(100%, 720px);
        min-height: 500px;
        margin: 0 auto;
        padding-right: 1.5rem;
        transform: none;
    }

    .dashboard-frame {
        width: 100%;
    }

    .floating-status-top {
        right: 0;
    }

    .platform-intro .section-copy {
        max-width: 720px;
    }

    .operations-map,
    .integration-orbit {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-grid {
        gap: 1rem;
    }

    .process-step {
        padding-inline: 0.5rem;
    }

    .flow-visual {
        margin: 1rem auto 0;
    }

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

    .cta-actions {
        flex-direction: row;
    }

    .architecture-hero {
        max-width: 650px;
        margin: 0 auto;
    }

    .sticky-copy {
        position: static;
    }

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

    .workflow-track::before {
        display: none;
    }

    .feature-groups {
        grid-template-columns: 1fr;
    }

    .feature-group {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        min-height: auto;
    }

    .feature-group-intro {
        border-right: 1px solid #e3eaec;
        border-bottom: 0;
    }

    .fit-visual,
    .api-window {
        margin: 0 auto;
    }

    .contact-section {
        padding-block: 4.5rem;
    }

    .contact-intro {
        max-width: 720px;
    }

    .cookie-banner-inner {
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-spacing: 4.75rem;
    }

    .section-heading,
    .section-heading-row {
        margin-bottom: 2.7rem;
    }

    .hero h1,
    .subpage-hero h1,
    .contact-intro h1 {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .dashboard-wrap {
        min-height: 430px;
        padding: 1.5rem 0.5rem 1rem;
    }

    .dashboard-frame {
        min-height: 370px;
    }

    .dashboard-body {
        min-height: 328px;
    }

    .dashboard-content {
        padding: 0.9rem;
    }

    .dashboard-sidebar {
        flex-basis: 45px;
    }

    .chart-card,
    .activity-card {
        min-height: 170px;
    }

    .bar-chart {
        height: 95px;
    }

    .floating-status-top {
        right: 1rem;
    }

    .floating-status-bottom {
        right: 0;
    }

    .trust-strip .site-container {
        flex-direction: column;
        gap: 0.9rem;
        align-items: flex-start;
        padding-block: 1.3rem;
    }

    .trust-items {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.7rem 1.2rem;
        justify-content: flex-start;
    }

    .trust-items span {
        font-size: 0.86rem;
    }

    .operations-map,
    .integration-orbit {
        min-height: 390px;
        transform: scale(0.9);
        transform-origin: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }

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

    .process-step {
        max-width: 430px;
        margin: 0 auto;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        gap: 1.5rem;
    }

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

    .footer-main {
        --bs-gutter-y: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.35rem;
    }

    .architecture-hero {
        grid-template-columns: 1fr 22px 1.2fr 22px 1fr;
        min-height: 340px;
        padding: 1.2rem 0.8rem;
    }

    .arch-card {
        padding: 0.55rem;
    }

    .arch-card strong {
        font-size: 0.56rem;
    }

    .arch-card small {
        display: none;
    }

    .arch-core {
        min-height: 150px;
        padding: 0.5rem;
    }

    .arch-core strong {
        font-size: 0.68rem;
    }

    .arch-core small {
        display: none;
    }

    .platform-layer {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.4rem;
    }

    .layer-tags {
        justify-content: flex-start;
    }

    .workflow-track {
        grid-template-columns: 1fr;
    }

    .feature-nav {
        justify-content: flex-start;
    }

    .feature-nav a {
        flex-basis: auto;
    }

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

    .feature-group-intro {
        border-right: 0;
        border-bottom: 1px solid #e3eaec;
    }

    .note-bar {
        align-items: flex-start;
    }

    .cookie-banner-inner {
        flex-direction: column;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner-actions .btn {
        flex: 1;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 148px;
    }

    .hero-actions {
        align-items: stretch;
    }

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

    .dashboard-wrap {
        min-height: 380px;
        margin-inline: -0.4rem;
    }

    .dashboard-frame {
        min-height: 332px;
    }

    .dashboard-body {
        min-height: 290px;
    }

    .dashboard-sidebar {
        display: none;
    }

    .metric-card {
        padding: 0.55rem;
    }

    .dashboard-lower {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .chart-card,
    .activity-card {
        min-height: 155px;
        padding: 0.55rem;
    }

    .bar-chart {
        gap: 4px;
        height: 82px;
    }

    .activity-row {
        gap: 0.35rem;
        padding-block: 0.62rem;
    }

    .activity-icon {
        width: 16px;
        height: 16px;
    }

    .floating-status {
        min-width: 145px;
        padding: 0.55rem 0.7rem;
    }

    .floating-status-top {
        top: -0.6rem;
        right: 0;
    }

    .floating-status-bottom {
        right: -0.2rem;
        bottom: 0;
    }

    .operations-map,
    .integration-orbit {
        width: 118%;
        margin-left: -9%;
        transform: scale(0.77);
    }

    .flow-visual,
    .fit-visual {
        padding: 1rem;
    }

    .flow-row {
        grid-template-columns: 1fr 22px 1fr;
    }

    .flow-card {
        min-height: 110px;
        padding: 0.75rem;
    }

    .cta-panel {
        padding: 2rem 1.35rem;
        border-radius: var(--radius-md);
    }

    .cta-actions,
    .cta-actions .btn {
        width: 100%;
    }

    .architecture-hero {
        margin-inline: -0.5rem;
        padding-inline: 0.5rem;
    }

    .arch-lines {
        gap: 22px;
    }

    .arch-core-mark {
        width: 42px;
        height: 42px;
    }

    .layer-link {
        width: 75%;
    }

    .integration-note {
        margin-top: -16px;
    }

    .integration-card {
        min-height: 250px;
    }

    .api-body {
        min-height: 230px;
        padding: 1.4rem 1rem;
        font-size: 0.68rem;
    }

    .contact-form-card {
        padding: 1.4rem;
        border-radius: var(--radius-md);
    }

    .cookie-banner {
        right: 0.65rem;
        bottom: 0.65rem;
        left: 0.65rem;
    }

    .cookie-banner-inner {
        padding: 1.15rem;
    }

    .cookie-banner-actions {
        flex-direction: column-reverse;
    }
}

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

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