:root {
    --color-primary: #c2410c;
    --color-primary-dark: #b9380b;
    --color-secondary: #f97316;
    --color-accent: #1d4ed8;
    --color-accent-dark: #173fa9;
    --color-background: #fff7ed;
    --color-surface: #ffffff;
    --color-surface-strong: #0f172a;
    --color-surface-soft: #ffedd5;
    --color-foreground: #0f172a;
    --color-muted: #4b5563;
    --color-border: #e8d8ca;
    --color-yellow: #fbbf24;
    --color-success: #13795b;
    --color-ring: #1d4ed8;
    --shadow-sm: 0 8px 24px rgba(72, 45, 24, 0.08);
    --shadow-md: 0 20px 50px rgba(72, 45, 24, 0.14);
    --shadow-blue: 0 18px 40px rgba(29, 78, 216, 0.24);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --container: 1180px;
    --header-height: 80px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--color-foreground);
    background: var(--color-background);
    font-family: "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
a {
    touch-action: manipulation;
}

a {
    color: inherit;
}

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

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

::selection {
    color: #fff;
    background: var(--color-accent);
}

:focus-visible {
    outline: 3px solid var(--color-ring);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 12px 18px;
    color: #fff;
    background: var(--color-surface-strong);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

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

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

.section {
    position: relative;
    padding-block: clamp(80px, 10vw, 144px);
}

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

h1,
h2,
h3 {
    font-family: "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif;
    line-height: 1.05;
    text-wrap: balance;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(3.25rem, 7vw, 6.9rem);
    letter-spacing: -0.07em;
    font-weight: 800;
}

h1 span {
    color: var(--color-primary);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 5.2vw, 5.25rem);
    letter-spacing: -0.06em;
    font-weight: 800;
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    letter-spacing: -0.035em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #fdba74;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: var(--color-success);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(19, 121, 91, 0.18);
}

.icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

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

.button:active {
    transform: translateY(0);
}

.button-primary {
    color: #fff;
    background: var(--color-accent);
    box-shadow: var(--shadow-blue);
}

.button-primary:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.28);
}

.button-secondary {
    color: var(--color-foreground);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--color-border);
}

.button-secondary:hover {
    background: #fff;
    border-color: #cdb9aa;
}

.button-light {
    color: var(--color-surface-strong);
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
    color: #fff;
    background: var(--color-primary);
}

.button-small {
    min-height: 44px;
    padding: 10px 17px;
    border-radius: 12px;
    font-size: 0.94rem;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 247, 237, 0.9);
    border-bottom: 1px solid transparent;
    transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(232, 216, 202, 0.9);
    box-shadow: 0 10px 36px rgba(57, 35, 17, 0.07);
}

@supports (backdrop-filter: blur(14px)) {
    .site-header {
        backdrop-filter: blur(14px);
    }
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--color-foreground);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    background: var(--color-primary);
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(217, 72, 15, 0.22);
}

.brand-mark svg {
    width: 29px;
    height: 29px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.05;
    letter-spacing: 0.04em;
}

.brand-copy strong {
    font-size: 1.03rem;
    letter-spacing: -0.01em;
}

.brand-copy span {
    margin-top: 3px;
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links > a:not(.button) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    color: #374151;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 200ms ease, background-color 200ms ease;
}

.nav-links > a:not(.button):hover,
.nav-links > a:not(.button).is-active {
    color: var(--color-primary-dark);
    background: var(--color-surface-soft);
}

.nav-links .button {
    margin-left: 8px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
    background: #fff;
    border-radius: 13px;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.hero {
    min-height: 100svh;
    padding-top: clamp(130px, 14vw, 190px);
    padding-bottom: 52px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 25%, rgba(251, 191, 36, 0.18), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(249, 115, 22, 0.18), transparent 26%),
        linear-gradient(180deg, #fffaf4 0%, var(--color-background) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.32;
    background-image: radial-gradient(#d7c4b5 0.75px, transparent 0.75px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    top: 16%;
    right: -90px;
    width: 210px;
    height: 210px;
    border: 38px solid rgba(29, 78, 216, 0.1);
}

.hero-shape-two {
    bottom: 9%;
    left: -55px;
    width: 120px;
    height: 120px;
    background: rgba(251, 191, 36, 0.28);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: clamp(48px, 8vw, 104px);
}

.hero-copy {
    max-width: 680px;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 34px;
    color: var(--color-muted);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
    margin: 0;
    padding: 0;
    color: #374151;
    font-size: 0.92rem;
    font-weight: 650;
    list-style: none;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-list .icon {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

.hero-visual {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: min(95%, 500px);
    aspect-ratio: 1;
    background: var(--color-primary);
    border-radius: 46% 54% 61% 39% / 42% 43% 57% 58%;
    transform: rotate(-8deg);
    box-shadow: 0 30px 60px rgba(217, 72, 15, 0.2);
}

.hero-visual::after {
    content: "";
    position: absolute;
    bottom: 12px;
    width: 350px;
    height: 54px;
    background: rgba(87, 48, 22, 0.16);
    border-radius: 50%;
    filter: blur(18px);
}

.kiosk {
    position: relative;
    z-index: 2;
    width: min(100%, 370px);
    filter: drop-shadow(0 34px 34px rgba(61, 28, 10, 0.28));
}

.kiosk-head {
    position: relative;
    padding: 22px 20px 26px;
    background: #172033;
    border: 3px solid #27334b;
    border-radius: 34px 34px 27px 27px;
}

.kiosk-camera {
    width: 8px;
    height: 8px;
    margin: 0 auto 12px;
    background: #3f4b61;
    border: 2px solid #0a1020;
    border-radius: 50%;
}

.kiosk-screen {
    min-height: 390px;
    overflow: hidden;
    background: #fffaf4;
    border-radius: 17px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.screen-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    color: #fff;
    background: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 750;
}

.mini-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.02em;
}

.mini-brand span {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 4px;
}

.screen-step {
    color: #dbeafe;
}

.screen-content {
    display: flex;
    min-height: 334px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 19px 18px;
}

.qr-panel {
    display: flex;
    min-height: 222px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #f0dfd1;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: opacity 180ms ease, transform 180ms ease;
}

.qr-panel.is-changing {
    opacity: 0;
    transform: translateY(6px);
}

.qr-panel > svg {
    width: 88px;
    margin-bottom: 13px;
    box-shadow: 0 7px 20px rgba(15, 23, 42, 0.1);
    border-radius: 10px;
}

.screen-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.qr-panel strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.04rem;
    letter-spacing: -0.02em;
}

.qr-panel p {
    max-width: 235px;
    margin: 0;
    color: #667085;
    font-size: 0.72rem;
    line-height: 1.5;
}

.demo-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 16px;
}

.demo-tab {
    min-height: 44px;
    padding: 8px 5px;
    color: #626b7a;
    background: transparent;
    border: 1px solid #ead8ca;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 750;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.demo-tab:hover,
.demo-tab.is-active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.kiosk-neck {
    width: 72%;
    height: 33px;
    margin: -2px auto 0;
    background: linear-gradient(90deg, #141c2b, #29364f 50%, #141c2b);
}

.kiosk-body {
    position: relative;
    height: 116px;
    background: linear-gradient(180deg, #1b263b 0%, #0f172a 100%);
    border: 3px solid #27334b;
    border-radius: 17px 17px 29px 29px;
}

.output-slot {
    position: absolute;
    top: 27px;
    left: 50%;
    width: 52%;
    height: 19px;
    padding: 5px;
    background: #070b14;
    border: 2px solid #303e57;
    border-radius: 5px;
    transform: translateX(-50%);
}

.output-slot span {
    display: block;
    width: 74%;
    height: 9px;
    margin: 0 auto;
    background: #fff;
    border-radius: 2px 2px 0 0;
}

.contactless-mark {
    position: absolute;
    right: 32px;
    bottom: 22px;
    width: 27px;
    color: #6f7f99;
}

.orbit-label {
    position: absolute;
    z-index: 4;
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    color: var(--color-foreground);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(232, 216, 202, 0.8);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    font-size: 0.81rem;
    font-weight: 750;
}

.orbit-label .icon {
    color: var(--color-accent);
}

.orbit-label-top {
    top: 72px;
    left: -38px;
}

.orbit-label-bottom {
    right: -30px;
    bottom: 78px;
}

.orbit-label-bottom > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.orbit-label-bottom small {
    margin-top: 3px;
    color: #6b7280;
    font-size: 0.67rem;
    font-weight: 550;
}

.pulse-ring {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: var(--color-success);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(19, 121, 91, 0.12);
}

.pulse-ring .icon {
    width: 18px;
    height: 18px;
    color: #fff;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: clamp(56px, 9vw, 100px);
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.hero-bottom > p {
    max-width: 390px;
    margin: 0;
    color: #6b7280;
    font-size: 0.91rem;
}

.use-cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.use-cases span {
    padding: 8px 12px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 650;
}

.services {
    background: #fff;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 56px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 1.06rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 430px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(26px, 3.5vw, 42px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow 250ms var(--ease), transform 250ms var(--ease), border-color 250ms var(--ease);
}

.service-card:hover {
    border-color: #d8c1b1;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card-document,
.service-card-id {
    grid-column: span 7;
}

.service-card-copy,
.service-card-photo {
    grid-column: span 5;
}

.service-card-document {
    padding-right: min(42%, 280px);
    background: #fff3e6;
}

.service-card-copy {
    color: #fff;
    background: var(--color-accent);
    border-color: transparent;
}

.service-card-photo {
    padding-bottom: 190px;
    background: #fffbeb;
}

.service-card-id {
    background: #f5f5f7;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 58px;
}

.icon-box {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 17px;
}

.icon-box .icon {
    width: 27px;
    height: 27px;
}

.icon-box-orange {
    color: #fff;
    background: var(--color-primary);
}

.icon-box-blue {
    color: var(--color-accent);
    background: #fff;
}

.icon-box-yellow {
    color: var(--color-foreground);
    background: var(--color-yellow);
}

.icon-box-dark {
    color: #fff;
    background: var(--color-surface-strong);
}

.service-number {
    color: rgba(15, 23, 42, 0.25);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.service-card-copy .service-number {
    color: rgba(255, 255, 255, 0.48);
}

.card-label {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 0.71rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-card-copy .card-label {
    color: #bfdbfe;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.service-card p:not(.card-label) {
    max-width: 540px;
    margin-bottom: 0;
    color: #4b5563;
}

.service-card-copy p:not(.card-label) {
    color: #dbeafe;
}

.mini-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.mini-tags li {
    padding: 7px 11px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(216, 193, 177, 0.8);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.service-card-copy .mini-tags li {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.23);
}

.paper-stack {
    position: absolute;
    right: 26px;
    bottom: 10px;
    width: 220px;
    height: 290px;
}

.paper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 176px;
    height: 238px;
    background: #fff;
    border: 1px solid #e5d4c6;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(87, 48, 22, 0.15);
}

.paper-back {
    right: 35px;
    bottom: 21px;
    background: #fed7aa;
    transform: rotate(-11deg);
}

.paper-mid {
    right: 13px;
    bottom: 12px;
    transform: rotate(5deg);
}

.paper-front {
    padding: 28px 24px;
}

.paper-front i {
    display: block;
    height: 7px;
    margin-bottom: 11px;
    background: #e5e7eb;
    border-radius: 5px;
}

.paper-front i:first-child {
    width: 65%;
    height: 12px;
    background: var(--color-foreground);
}

.paper-front b {
    display: block;
    height: 72px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--color-accent) 0 48%, var(--color-primary) 48% 68%, var(--color-yellow) 68%);
    border-radius: 7px;
}

.photo-mosaic {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    overflow: hidden;
}

.photo-mosaic span {
    position: absolute;
    display: block;
    background: linear-gradient(145deg, #1d4ed8 0 33%, #60a5fa 33% 53%, #fb923c 53% 70%, #fbbf24 70%);
    border: 8px solid #fff;
    box-shadow: var(--shadow-sm);
}

.photo-one {
    left: 25px;
    bottom: -25px;
    width: 150px;
    height: 170px;
    transform: rotate(-7deg);
}

.photo-two {
    left: 37%;
    bottom: -34px;
    width: 160px;
    height: 190px;
    transform: rotate(5deg);
}

.photo-three {
    right: 18px;
    bottom: -42px;
    width: 128px;
    height: 158px;
    transform: rotate(-3deg);
}

.process {
    overflow: hidden;
    color: #fff;
    background: var(--color-surface-strong);
}

.process::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -140px;
    width: 450px;
    height: 450px;
    border: 80px solid rgba(249, 115, 22, 0.13);
    border-radius: 50%;
}

.process-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(500px, 1.2fr);
    gap: clamp(60px, 10vw, 130px);
}

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

.process-intro h2 {
    max-width: 590px;
}

.process-intro > p:not(.eyebrow) {
    max-width: 450px;
    margin-bottom: 30px;
    color: #aab5c5;
    font-size: 1.08rem;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    color: #fdba74;
    font-weight: 750;
    text-underline-offset: 5px;
}

.text-link:hover {
    color: #fff;
}

.process-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-step {
    display: grid;
    grid-template-columns: 44px 64px 1fr;
    align-items: start;
    gap: 22px;
    padding: 34px 0;
    border-top: 1px solid #354056;
}

.process-step:last-child {
    border-bottom: 1px solid #354056;
}

.step-index {
    padding-top: 17px;
    color: #748198;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.step-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    color: #fff;
    background: var(--color-primary);
    border-radius: 18px;
}

.step-icon .icon {
    width: 27px;
    height: 27px;
}

.process-step h3 {
    margin: 5px 0 9px;
    font-size: 1.55rem;
}

.process-step p {
    max-width: 480px;
    margin: 0;
    color: #aab5c5;
}

.features {
    background: #f7f5f2;
}

.feature-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd6cf;
}

.feature-hero-copy h2 {
    max-width: 800px;
}

.feature-hero-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.feature-stat {
    width: 180px;
    padding: 25px;
    background: var(--color-yellow);
    border-radius: 24px;
    transform: rotate(2deg);
}

.feature-stat span {
    display: block;
    margin-bottom: 7px;
    font-size: 4.2rem;
    font-weight: 850;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.feature-stat p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 750;
    line-height: 1.35;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 280px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e4ded8;
    border-radius: var(--radius-md);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

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

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 38px;
    place-items: center;
    color: var(--color-primary);
    background: var(--color-surface-soft);
    border-radius: 15px;
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    margin-bottom: 11px;
    font-size: 1.27rem;
}

.feature-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.93rem;
}

.format-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 18px;
    padding: 28px 30px;
    color: #fff;
    background: var(--color-accent);
    border-radius: var(--radius-md);
}

.format-strip > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.format-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
}

.format-strip strong {
    display: block;
    font-size: 1.08rem;
}

.format-strip p {
    margin: 2px 0 0;
    color: #dbeafe;
    font-size: 0.85rem;
}

.format-strip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.format-strip li {
    padding: 8px 11px;
    color: var(--color-accent-dark);
    background: #fff;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.operator-section {
    padding-top: 40px;
    background: #f7f5f2;
}

.operator-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(50px, 8vw, 100px);
    padding: clamp(38px, 6vw, 76px);
    background: #fff;
    border: 1px solid #e4ded8;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.operator-visual {
    position: relative;
    min-height: 430px;
    background: var(--color-surface-strong);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.operator-visual::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid #354056;
    border-radius: 20px;
}

.dashboard-card {
    position: absolute;
    color: var(--color-foreground);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.dashboard-main {
    top: 65px;
    right: 46px;
    left: 46px;
    padding: 28px;
}

.dashboard-label {
    color: #6b7280;
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0 25px;
    font-size: 1.05rem;
}

.dashboard-status i {
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(19, 121, 91, 0.12);
}

.dashboard-bars {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 85px;
    padding: 13px;
    background: #f5f5f7;
    border-radius: 12px;
}

.dashboard-bars span {
    flex: 1;
    height: 52%;
    background: var(--color-primary);
    border-radius: 6px 6px 2px 2px;
}

.dashboard-bars span:nth-child(2) {
    height: 86%;
    background: var(--color-accent);
}

.dashboard-bars span:nth-child(3) {
    height: 68%;
    background: var(--color-yellow);
}

.dashboard-small {
    bottom: 46px;
    width: calc(50% - 58px);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2px 10px;
    padding: 16px;
}

.dashboard-small:nth-child(2) {
    left: 45px;
}

.dashboard-small:nth-child(3) {
    right: 45px;
}

.dashboard-small .icon {
    grid-row: span 2;
    color: var(--color-accent);
}

.dashboard-small span {
    color: #6b7280;
    font-size: 0.67rem;
}

.dashboard-small strong {
    font-size: 0.79rem;
}

.operator-copy h2 {
    font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.operator-copy > p:not(.eyebrow) {
    color: var(--color-muted);
    font-size: 1.02rem;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-grid li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
}

.check-grid .icon {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

.faq {
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
    align-items: start;
    gap: clamp(60px, 10vw, 130px);
}

.faq-intro {
    position: sticky;
    top: 125px;
}

.faq-intro h2 {
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.faq-intro > p:not(.eyebrow) {
    max-width: 430px;
    color: var(--color-muted);
}

.faq-accent {
    display: grid;
    width: 118px;
    height: 118px;
    margin-top: 42px;
    place-items: center;
    color: var(--color-surface-strong);
    background: var(--color-yellow);
    border-radius: 38% 62% 55% 45% / 49% 39% 61% 51%;
    transform: rotate(-7deg);
}

.faq-accent span {
    font-size: 4.3rem;
    font-weight: 850;
    line-height: 1;
    transform: rotate(7deg);
}

.accordion {
    border-top: 1px solid var(--color-border);
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 0;
    color: var(--color-foreground);
    background: transparent;
    border: 0;
    font-size: 1.07rem;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.accordion-item button:hover {
    color: var(--color-primary-dark);
}

.accordion-item button > span {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    background: var(--color-surface-soft);
    border-radius: 50%;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 200ms ease;
}

.accordion-item button > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] > span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
    max-width: 680px;
    padding: 0 58px 24px 0;
    color: var(--color-muted);
}

.accordion-panel p {
    margin: 0;
}

.final-cta {
    padding-top: 35px;
    background: #fff;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 9vw, 110px) 30px;
    color: #fff;
    background: var(--color-accent);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-panel::before {
    content: "";
    position: absolute;
    top: -110px;
    left: -70px;
    width: 280px;
    height: 280px;
    border: 55px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.cta-panel::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.88;
}

.cta-panel > *:not(.cta-spark) {
    position: relative;
    z-index: 2;
}

.cta-panel h2 {
    margin-inline: auto;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
}

.cta-panel .eyebrow-light {
    color: #dbeafe;
}

.cta-panel > p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto 32px;
    color: #dbeafe;
    font-size: 1.07rem;
}

.cta-spark {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    background: var(--color-yellow);
    clip-path: polygon(50% 0, 62% 37%, 100% 50%, 62% 63%, 50% 100%, 38% 63%, 0 50%, 38% 37%);
}

.cta-spark-one {
    top: 24%;
    right: 16%;
}

.cta-spark-two {
    bottom: 18%;
    left: 14%;
    width: 35px;
    height: 35px;
}

.site-footer {
    padding: 72px 0 26px;
    color: #fff;
    background: var(--color-surface-strong);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-bottom: 54px;
}

.brand-footer {
    color: #fff;
}

.brand-footer + p {
    max-width: 390px;
    margin: 24px 0 0;
    color: #aab5c5;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 10px 36px;
}

.footer-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #d5dbe4;
    font-size: 0.91rem;
    font-weight: 650;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #fdba74;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    color: #8995a8;
    border-top: 1px solid #303b50;
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1080px) {
    :root {
        --container: 940px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
        gap: 44px;
    }

    .hero-visual {
        transform: scale(0.92);
    }

    .orbit-label-top {
        left: -20px;
    }

    .orbit-label-bottom {
        right: -15px;
    }

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

    .operator-panel {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        gap: 5px;
        padding: 14px 20px 24px;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 20px 35px rgba(57, 35, 17, 0.12);
    }

    .js .nav-links[data-open="false"] {
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
    }

    .js .nav-links {
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    }

    .nav-links > a:not(.button),
    .nav-links .button {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        margin: 0;
    }

    .nav-links .button {
        justify-content: center;
        margin-top: 6px;
    }

    .hero-grid,
    .section-heading,
    .process-layout,
    .faq-layout,
    .operator-panel {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        width: min(100%, 570px);
        min-height: 600px;
        margin: 0 auto;
        transform: none;
    }

    .hero-bottom {
        margin-top: 44px;
    }

    .section-heading {
        gap: 24px;
    }

    .section-heading > p {
        max-width: 650px;
    }

    .service-card-document,
    .service-card-id,
    .service-card-copy,
    .service-card-photo {
        grid-column: span 6;
    }

    .service-card-document {
        padding-right: 34px;
        padding-bottom: 230px;
    }

    .paper-stack {
        right: 50%;
        bottom: -30px;
        transform: translateX(50%) scale(0.72);
        transform-origin: center bottom;
    }

    .process-intro,
    .faq-intro {
        position: static;
    }

    .process-intro h2,
    .faq-intro h2 {
        max-width: 680px;
    }

    .feature-hero {
        align-items: center;
    }

    .operator-panel {
        padding: 40px;
    }

    .operator-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .operator-copy {
        max-width: 680px;
    }

    .faq-accent {
        display: none;
    }
}

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

    .section {
        padding-block: 80px;
    }

    .hero {
        padding-top: 118px;
        padding-bottom: 38px;
    }

    h1 {
        font-size: clamp(3.15rem, 16vw, 5rem);
    }

    h2 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-visual {
        min-height: 545px;
    }

    .hero-visual::before {
        width: 92%;
    }

    .kiosk {
        width: min(82%, 335px);
    }

    .kiosk-screen {
        min-height: 350px;
    }

    .screen-content {
        min-height: 294px;
    }

    .qr-panel {
        min-height: 190px;
    }

    .orbit-label-top {
        top: 38px;
        left: 0;
    }

    .orbit-label-bottom {
        right: 0;
        bottom: 38px;
    }

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

    .use-cases {
        justify-content: flex-start;
    }

    .service-card-document,
    .service-card-id,
    .service-card-copy,
    .service-card-photo {
        grid-column: 1 / -1;
    }

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

    .feature-hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .feature-stat {
        width: 155px;
    }

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

    .feature-card {
        min-height: 0;
    }

    .feature-icon {
        margin-bottom: 25px;
    }

    .format-strip {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .format-strip ul {
        justify-content: flex-start;
    }

    .operator-panel {
        width: min(calc(100% - 20px), var(--container));
        padding: 28px 18px;
        border-radius: 28px;
    }

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

    .dashboard-main {
        top: 45px;
        right: 25px;
        left: 25px;
    }

    .dashboard-small {
        bottom: 29px;
        width: calc(50% - 35px);
    }

    .dashboard-small:nth-child(2) {
        left: 25px;
    }

    .dashboard-small:nth-child(3) {
        right: 25px;
    }

    .dashboard-small .icon {
        display: none;
    }

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

    .process-step {
        grid-template-columns: 36px 52px 1fr;
        gap: 13px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-index {
        padding-top: 13px;
    }

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

    .process-step p {
        font-size: 0.91rem;
    }

    .cta-panel {
        width: calc(100% + 8px);
        margin-left: -4px;
        padding-inline: 18px;
        border-radius: 30px;
    }

    .footer-grid,
    .footer-bottom {
        align-items: flex-start;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .brand-copy strong {
        font-size: 0.92rem;
    }

    .brand-copy span {
        font-size: 0.7rem;
    }

    .hero-visual {
        min-height: 505px;
    }

    .kiosk {
        width: 88%;
    }

    .orbit-label {
        min-height: 48px;
        padding: 9px 10px;
        font-size: 0.68rem;
    }

    .orbit-label-top {
        left: -7px;
    }

    .orbit-label-bottom {
        right: -7px;
    }

    .process-step {
        grid-template-columns: 44px 1fr;
    }

    .step-index {
        display: none;
    }

    .accordion-item button {
        font-size: 1rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }
}

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

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

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

@media (forced-colors: active) {
    .button,
    .menu-toggle,
    .demo-tab,
    .service-card,
    .feature-card {
        border: 2px solid ButtonText;
    }

    .status-dot,
    .dashboard-status i {
        forced-color-adjust: none;
    }
}
