:root {
  --ink: #071426;
  --ink-2: #0d2038;
  --ink-3: #16304f;
  --blue: #1677e8;
  --blue-2: #3b9cff;
  --cyan: #70c7ff;
  --paper: #ffffff;
  --mist: #f3f7fb;
  --line: #dce6f0;
  --text: #162336;
  --muted: #617086;
  --shadow: 0 24px 70px rgba(7, 20, 38, .12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: Inter, system-ui, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .footer-brand strong { font-family: "Space Grotesk", Inter, sans-serif; }
h1 { font-size: clamp(3rem, 6vw, 5.65rem); line-height: .99; letter-spacing: -.055em; }
h2 { font-size: clamp(2.15rem, 4vw, 3.75rem); line-height: 1.08; letter-spacing: -.045em; }
h3 { line-height: 1.2; letter-spacing: -.025em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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; left: 16px; top: -80px; padding: 10px 16px; background: var(--paper); color: var(--ink); z-index: 2000; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; height: 76px; z-index: 1000; background: rgba(255,255,255,.88); border-bottom: 1px solid rgba(220,230,240,.8); backdrop-filter: blur(18px); transition: box-shadow .25s, background .25s; }
.site-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 10px 35px rgba(7,20,38,.08); }
.nav-shell { width: min(calc(100% - 40px), 1240px); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; display: block; width: 210px; height: 54px; overflow: hidden; flex: 0 0 auto; }
.brand img { position: absolute; width: 255px; max-width: none; left: -23px; top: -151px; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav > a, .nav-dropdown > button { position: relative; border: 0; background: transparent; padding: 26px 0 24px; text-decoration: none; font-size: .92rem; font-weight: 600; cursor: pointer; }
.main-nav > a::after, .nav-dropdown > button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 2px; background: var(--blue); transition: right .25s var(--ease); }
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-dropdown:hover > button::after, .nav-dropdown.active > button::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 7px; }
.nav-dropdown > button i { font-size: .65rem; transition: transform .2s; }
.nav-dropdown.open > button i { transform: rotate(180deg); }
.dropdown-panel { position: absolute; top: calc(100% - 4px); left: 50%; width: 370px; padding: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: .2s var(--ease); }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel, .nav-dropdown.open .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-panel a { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 12px; border-radius: 11px; text-decoration: none; }
.dropdown-panel a:hover, .dropdown-panel a.current { background: var(--mist); }
.dropdown-panel > a > i { display: grid; place-items: center; width: 42px; height: 42px; color: var(--blue); background: #eaf4ff; border-radius: 10px; }
.dropdown-panel b, .dropdown-panel small { display: block; }
.dropdown-panel b { font-size: .91rem; }
.dropdown-panel small { margin-top: 2px; color: var(--muted); font-size: .73rem; font-weight: 500; }
.main-nav .nav-cta { padding: 11px 17px; color: white; background: var(--ink); border-radius: 10px; }
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--blue); }
.language-switch { border: 1px solid var(--line); background: var(--paper); border-radius: 9px; padding: 8px 10px; color: var(--blue); font-weight: 800; cursor: pointer; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); transition: .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Shared actions */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 51px; padding: 0 23px; border: 1px solid transparent; border-radius: 11px; text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button i { font-size: .88rem; transition: transform .2s; }
.button:hover i { transform: translateX(3px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 30px rgba(22,119,232,.25); }
.button-primary:hover { background: #0d69cf; box-shadow: 0 16px 35px rgba(22,119,232,.35); }
.button-ghost { color: white; border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--blue); }
.button-outline-light { color: white; border-color: rgba(255,255,255,.25); }
.button-outline-light:hover { background: white; color: var(--ink); }
.button-white { background: white; color: var(--ink); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 700; }
.text-link i { font-size: .84rem; transition: transform .2s; }
a:hover .text-link i, .text-link:hover i { transform: translateX(4px); }
.text-link.standalone { margin-top: 12px; text-decoration: none; }

/* Home hero */
.hero, .page-hero, .contact-page { position: relative; overflow: hidden; color: white; background: var(--ink); }
.home-hero { min-height: 820px; padding: 150px 0 80px; display: grid; align-items: center; }
.hero::before, .page-hero::before, .contact-page::before { content: ""; position: absolute; width: 650px; height: 650px; top: -240px; right: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(22,119,232,.34), transparent 67%); }
.hero::after, .page-hero::after, .contact-page::after { content: ""; position: absolute; width: 480px; height: 480px; bottom: -340px; left: 13%; border-radius: 50%; background: radial-gradient(circle, rgba(62,156,255,.18), transparent 70%); }
.hero-grid { position: absolute; inset: 0; opacity: .075; background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.particles { position: absolute; inset: 0; z-index: 1; opacity: .68; pointer-events: none; }
.particles canvas { display: block; width: 100%; height: 100%; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 23px; color: var(--cyan); font-size: .77rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 32px; height: 2px; background: currentColor; }
.hero-copy h1 { max-width: 760px; margin-bottom: 26px; }
.hero-dynamic { display: flex; align-items: center; gap: 8px; min-height: 29px; margin: -7px 0 20px; color: #8fa8c1; font-size: .86rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-dynamic strong { min-width: 128px; color: var(--cyan); font: 700 .93rem/1 "Space Grotesk"; letter-spacing: .05em; transition: opacity .22s var(--ease), transform .22s var(--ease); }
.hero-dynamic strong.is-changing { opacity: 0; transform: translateY(7px); }
.dynamic-cursor { width: 2px; height: 18px; background: var(--cyan); animation: cursorBlink .85s steps(1) infinite; }
@keyframes cursorBlink { 50% { opacity: 0; } }
.hero-lead { max-width: 690px; margin-bottom: 34px; color: #bfd0e5; font-size: clamp(1.03rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 58px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-family: "Space Grotesk"; font-size: 1.85rem; line-height: 1; }
.hero-proof span { margin-top: 7px; color: #8fa5bd; font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.hero-system { position: relative; padding: 26px 5px; }
.system-window { position: relative; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(13,32,56,.78); box-shadow: 0 40px 100px rgba(0,0,0,.35); backdrop-filter: blur(12px); overflow: hidden; transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); }
.window-top { display: flex; align-items: center; gap: 7px; height: 45px; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.1); }
.window-top > span { width: 8px; height: 8px; border-radius: 50%; background: #39516b; }
.window-top > span:first-child { background: var(--blue); }
.window-top small { margin-left: auto; color: #6f88a4; font: 600 .63rem/1 "Space Grotesk"; letter-spacing: .12em; }
.window-body { padding: 42px 34px 31px; }
.system-kicker { color: white; font: 700 clamp(1.35rem, 2.5vw, 2rem)/1.2 "Space Grotesk"; }
.system-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 11px; align-items: center; margin: 35px 0; }
.system-flow > div { min-height: 98px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.035); }
.system-flow > div i { color: var(--blue-2); font-size: 1.2rem; }
.system-flow > div span { font-size: .76rem; font-weight: 700; }
.system-flow > i { color: #53708d; font-size: .72rem; }
.system-lines { display: grid; gap: 10px; }
.system-lines span { height: 8px; border-radius: 20px; background: rgba(255,255,255,.07); }
.system-lines span::after { content: ""; display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.system-lines span:nth-child(1)::after { width: 86%; }.system-lines span:nth-child(2)::after { width: 62%; }.system-lines span:nth-child(3)::after { width: 74%; }
.system-status { display: flex; justify-content: space-between; margin-top: 25px; color: #91a8c0; font-size: .75rem; }
.system-status > span { display: flex; align-items: center; gap: 8px; }
.system-status i { width: 7px; height: 7px; border-radius: 50%; background: #36d89b; box-shadow: 0 0 0 5px rgba(54,216,155,.11); }
.system-status b { color: #36d89b; }
.floating-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: white; background: rgba(10,29,50,.94); box-shadow: 0 16px 30px rgba(0,0,0,.25); font-size: .72rem; font-weight: 700; }
.floating-chip i { color: var(--cyan); }.chip-one { top: 1px; right: -18px; }.chip-two { bottom: 1px; left: -28px; }

/* Shared sections */
.section { padding: 105px 0; }
.section-light { background: var(--paper); }
.section-dark { color: white; background: var(--ink); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 20px; color: var(--ink); }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }
.section-label { margin-bottom: 16px; color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-heading-light h2 { color: white; }
.section-heading-light > p:last-child { color: #9eb1c6; }
.section-action { margin-top: 42px; }

.service-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-card { position: relative; min-height: 430px; padding: 34px 31px; display: flex; flex-direction: column; color: var(--text); background: var(--mist); border: 1px solid transparent; border-radius: var(--radius); text-decoration: none; overflow: hidden; transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s; }
.path-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -135px; bottom: -135px; border-radius: 50%; background: var(--blue); opacity: .09; transition: transform .3s var(--ease); }
.path-card:hover { transform: translateY(-7px); background: white; border-color: var(--line); box-shadow: var(--shadow); }
.path-card:hover::after { transform: scale(1.3); }
.path-number { color: #9badc0; font: 600 .72rem/1 "Space Grotesk"; letter-spacing: .1em; }
.path-icon { width: 64px; height: 64px; margin: 55px 0 27px; display: grid; place-items: center; border-radius: 15px; color: white; background: var(--blue); font-size: 1.45rem; box-shadow: 0 14px 28px rgba(22,119,232,.2); }
.path-card h3 { margin-bottom: 13px; color: var(--ink); font-size: 1.55rem; }
.path-card p { margin-bottom: 28px; color: var(--muted); font-size: .94rem; }
.path-card .text-link { margin-top: auto; }

.work-section { position: relative; overflow: hidden; }
.work-section::before { content: ""; position: absolute; width: 720px; height: 720px; right: -340px; top: 60px; border-radius: 50%; background: radial-gradient(circle, rgba(22,119,232,.16), transparent 68%); pointer-events: none; }
.work-section .container { position: relative; z-index: 1; }
.work-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.work-capability { min-height: 345px; padding: 27px; display: flex; flex-direction: column; background: rgba(17,36,61,.72); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); transition: transform .25s var(--ease), border-color .25s, background .25s; }
.work-capability:hover { transform: translateY(-6px); border-color: rgba(86,173,255,.4); background: #122b49; }
.work-capability-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; }
.work-capability-top > span { color: #7890aa; font: 700 .7rem/1 "Space Grotesk"; letter-spacing: .12em; }
.work-capability-top > i { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, #0f67c4, #2b91f1); border-radius: 14px; box-shadow: 0 14px 30px rgba(22,119,232,.25); font-size: 1.15rem; }
.work-capability h3 { margin-bottom: 13px; color: white; font-size: 1.35rem; }
.work-capability > p { margin: 0; color: #9fb2c7; font-size: .86rem; }
.work-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 27px; }
.work-tags span { padding: 6px 8px; color: #9fc8f3; border: 1px solid rgba(132,190,245,.16); border-radius: 6px; background: rgba(22,119,232,.08); font-size: .62rem; font-weight: 700; }
.work-method { margin-top: 72px; padding: 43px; background: linear-gradient(145deg, rgba(18,44,75,.92), rgba(10,25,43,.95)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); }
.work-method-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 55px; align-items: end; }
.work-method-heading > div { max-width: 760px; }
.work-method-heading .section-label { margin-bottom: 13px; }
.work-method-heading h3 { margin-bottom: 12px; color: white; font-size: clamp(1.9rem, 3vw, 2.9rem); }
.work-method-heading p:not(.section-label) { margin: 0; color: #9fb2c7; }
.method-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 45px; }
.method-step { position: relative; min-height: 235px; padding: 20px 17px; border-top: 2px solid rgba(93,177,255,.22); background: rgba(255,255,255,.025); }
.method-step > span { display: block; margin-bottom: 28px; color: #6f8aa6; font: 700 .65rem/1 "Space Grotesk"; }
.method-step > i { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 21px; color: var(--blue-2); border: 1px solid rgba(93,177,255,.24); border-radius: 10px; background: rgba(22,119,232,.1); }
.method-step h4 { margin-bottom: 9px; color: white; font-size: 1rem; }
.method-step p { margin: 0; color: #8fa5bc; font-size: .74rem; line-height: 1.65; }
.case-type { margin-bottom: 9px; color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.tag-row span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; color: #a9bed4; font-size: .67rem; font-weight: 700; letter-spacing: .03em; }

.approach { background: var(--mist); }
.approach-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.approach .section-heading { margin-bottom: 0; position: sticky; top: 125px; }
.principles { display: grid; }
.principle { display: grid; grid-template-columns: 62px 1fr; gap: 25px; padding: 35px 0; border-top: 1px solid var(--line); }
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle > span { color: var(--blue); font: 700 .76rem/1 "Space Grotesk"; }
.principle h3 { margin-bottom: 9px; color: var(--ink); font-size: 1.42rem; }
.principle p { margin: 0; color: var(--muted); }

.cta-band { padding: 70px 0; color: white; background: var(--blue); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-inner > div { max-width: 780px; }.cta-inner .section-label { color: #dceeff; }.cta-inner h2 { margin: 0; color: white; font-size: clamp(2rem, 3.5vw, 3.2rem); }

/* Interior page hero */
.page-hero { min-height: 600px; padding: 155px 0 80px; display: grid; align-items: center; }
.page-hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .55fr; gap: 90px; align-items: center; }
.page-hero h1 { max-width: 900px; margin-bottom: 25px; font-size: clamp(3rem, 5.4vw, 5rem); }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 32px; color: #8098b2; font-size: .78rem; }
.breadcrumb a { text-decoration: none; }.breadcrumb a:hover { color: white; }.breadcrumb i { font-size: .55rem; }
.page-symbol { position: relative; width: 310px; height: 310px; display: grid; place-items: center; margin-left: auto; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-symbol::before, .page-symbol::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.page-symbol::before { inset: 30px; }.page-symbol::after { inset: 64px; background: rgba(22,119,232,.12); }
.page-symbol > i { position: relative; z-index: 1; color: var(--blue-2); font-size: 4rem; }
.page-symbol > span { position: absolute; z-index: 2; padding: 6px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; color: #8ba3be; background: var(--ink); font-size: .6rem; font-weight: 800; letter-spacing: .12em; }
.page-symbol > span:nth-of-type(1) { left: -2px; top: 62px; }.page-symbol > span:nth-of-type(2) { right: -16px; top: 138px; }.page-symbol > span:nth-of-type(3) { left: 31px; bottom: 26px; }

/* Interior hero motion */
.page-hero .hero-grid { animation: pageGridDrift 18s linear infinite; }
.page-hero::before { animation: heroGlow 7s ease-in-out infinite; }
.page-hero .page-symbol { --hero-shift-x: 0px; --hero-shift-y: 0px; animation: pageSymbolFloat 6s ease-in-out infinite; transition: translate .3s var(--ease); }
.page-hero .page-symbol::before { animation: symbolPulse 4.6s ease-in-out infinite; }
.page-hero .page-symbol::after { animation: symbolPulse 4.6s 1.1s ease-in-out infinite; }
.page-hero .page-symbol > i { animation: iconBreathe 4.6s ease-in-out infinite; }
.page-hero .page-symbol > span:nth-of-type(1) { animation: labelFloat 4.8s ease-in-out infinite; }
.page-hero .page-symbol > span:nth-of-type(2) { animation: labelFloat 5.4s .7s ease-in-out infinite; }
.page-hero .page-symbol > span:nth-of-type(3) { animation: labelFloat 5s 1.4s ease-in-out infinite; }
@keyframes pageGridDrift { to { background-position: 74px 74px; } }
@keyframes heroGlow { 0%, 100% { transform: scale(1); opacity: .82; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes pageSymbolFloat { 0%, 100% { translate: var(--hero-shift-x) var(--hero-shift-y); } 50% { translate: var(--hero-shift-x) calc(var(--hero-shift-y) - 11px); } }
@keyframes symbolPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: .55; } }
@keyframes iconBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes labelFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* About */
.about-hero { background: linear-gradient(125deg, #071426 0%, #08192f 56%, #0b2d55 100%); }
.about-story-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 105px; align-items: start; }
.about-story .section-heading { margin: 0; position: sticky; top: 120px; }
.about-story-copy { max-width: 690px; }
.about-story-copy > p { color: var(--muted); font-size: 1.05rem; }
.about-story-copy > p:first-child { color: var(--text); font-size: 1.22rem; }
.about-location { display: grid; grid-template-columns: 52px 1fr; gap: 17px; align-items: center; margin-top: 38px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--mist); }
.about-location > i { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 12px; }
.about-location b, .about-location span { display: block; }.about-location b { margin-bottom: 5px; color: var(--ink); }.about-location span { color: var(--muted); font-size: .82rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { position: relative; min-height: 340px; padding: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.value-card:hover { transform: translateY(-5px); border-color: #bedcff; box-shadow: 0 22px 50px rgba(7,20,38,.1); }
.value-card > span { position: absolute; right: 25px; top: 24px; color: #a6b7c9; font: 700 .7rem/1 "Space Grotesk"; }
.value-card > i { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 72px; color: var(--blue); background: #eaf4ff; border-radius: 14px; font-size: 1.3rem; }
.value-card h3 { margin-bottom: 12px; color: var(--ink); font-size: 1.35rem; }.value-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.conduct-section { color: white; background: var(--ink); }
.conduct-intro { max-width: 820px; margin-bottom: 58px; }.conduct-intro .section-label { color: var(--cyan); }.conduct-intro h2 { color: white; }
.conduct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.conduct-card { min-height: 310px; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-sm); background: rgba(255,255,255,.035); }
.conduct-card > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 72px; }.conduct-card > div span { color: #647e9a; font: 700 .68rem/1 "Space Grotesk"; }.conduct-card > div i { color: var(--blue-2); font-size: 1.35rem; }
.conduct-card h3 { color: white; font-size: 1.25rem; }.conduct-card p { margin: 0; color: #9bb0c7; font-size: .84rem; }
.about-promise { padding: 95px 0; color: white; background: linear-gradient(125deg, #0d2038, #0e396b); }
.about-promise-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: center; }.about-promise .section-label { color: var(--cyan); }.about-promise h2 { max-width: 780px; margin: 0; color: white; }
.promise-mark { display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center; }.promise-mark > span { width: 92px; height: 92px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--cyan); font: 700 1.65rem/1 "Space Grotesk"; }.promise-mark p { margin: 0; color: #bfd0e5; font-size: .92rem; }

/* Global WhatsApp contact */
.whatsapp-float { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 950; min-width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; color: white; background: #20b85a; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; box-shadow: 0 15px 38px rgba(5,50,25,.28); text-decoration: none; font-size: .78rem; font-weight: 800; transition: transform .22s var(--ease), background .22s, box-shadow .22s; }
.whatsapp-float::before { content: ""; position: absolute; inset: -6px; z-index: -1; border: 1px solid rgba(37,211,102,.38); border-radius: inherit; animation: whatsappPulse 2.8s ease-out infinite; }
.whatsapp-float i { font-size: 1.55rem; }.whatsapp-float:hover { transform: translateY(-3px); background: #159c49; box-shadow: 0 20px 45px rgba(5,50,25,.35); }
@keyframes whatsappPulse { 0% { transform: scale(.9); opacity: 0; } 34% { opacity: 1; } 100% { transform: scale(1.2); opacity: 0; } }

/* Management systems */
.product-stack { display: grid; gap: 28px; }
.product-card { display: grid; grid-template-columns: 36% 64%; min-height: 510px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 18px 55px rgba(7,20,38,.08); }
.product-side { position: relative; min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; background: linear-gradient(145deg, #0d2b50, #157ce8); overflow: hidden; }
.product-side::before { content: ""; position: absolute; inset: 35px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.product-badge { position: absolute; top: 25px; left: 25px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(7,20,38,.18); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.product-monogram { position: relative; z-index: 1; font: 700 clamp(4rem, 8vw, 7rem)/1 "Space Grotesk"; letter-spacing: -.08em; }.product-monogram i { font-size: .85em; }
.product-side p { position: absolute; bottom: 23px; left: 26px; margin: 0; color: rgba(255,255,255,.65); font-size: .62rem; font-weight: 700; letter-spacing: .15em; }
.product-card-alt .product-side { background: linear-gradient(145deg, #0d3e4e, #1e9db5); }
.product-main { padding: 56px; }
.product-main h2 { margin-bottom: 17px; font-size: clamp(2.1rem, 3.4vw, 3.3rem); }
.product-main > p:not(.case-type) { color: var(--muted); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 23px; margin: 28px 0 36px; }
.feature-list span { display: flex; align-items: center; gap: 9px; font-size: .84rem; }.feature-list i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #e5f2ff; font-size: .62rem; }.feature-list b { font-weight: 600; }
.product-side-media { padding: 0; background: #071426; }
.product-side-media::before { inset: 0; z-index: 1; border: 0; border-radius: 0; background: linear-gradient(180deg, rgba(7,20,38,.2) 0%, transparent 40%, rgba(7,20,38,.88) 100%); }
.product-side-media::after { content: ""; position: absolute; inset: 18px; z-index: 2; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; pointer-events: none; }
.catalogue-cover { position: absolute; inset: 0; }
.catalogue-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s var(--ease); }
.product-card:hover .catalogue-cover img { transform: scale(1.035); }
.product-side-media .product-badge, .product-side-media > p { z-index: 3; }
.product-summary { display: flex; flex-direction: column; justify-content: center; }
.catalogue-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 32px; }
.catalogue-tags span { padding: 7px 10px; color: var(--blue); border: 1px solid #cfe4fb; border-radius: 7px; background: #f3f9ff; font-size: .69rem; font-weight: 700; }
.catalogue-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }.catalogue-actions .text-link { font-size: .82rem; text-decoration: none; }

.product-detail-hero { position: relative; min-height: 1050px; padding: 132px 0 64px; color: white; background: var(--ink); overflow: hidden; }
.product-detail-hero::before { content: ""; position: absolute; width: 1050px; height: 1050px; left: calc(50% - 525px); top: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(22,119,232,.29), rgba(11,66,127,.1) 45%, transparent 70%); }
.detail-hero-centered { position: relative; z-index: 2; }
.detail-hero-centered > .breadcrumb { flex-wrap: wrap; margin-bottom: 32px; }.detail-hero-centered > .breadcrumb a { text-decoration: none; }
.detail-hero-copy { max-width: 930px; margin: 0 auto; text-align: center; }
.detail-hero-copy .eyebrow { justify-content: center; }
.detail-hero-copy h1 { max-width: none; margin: 8px auto 22px; font-size: clamp(3.9rem, 7vw, 6.5rem); line-height: .92; }
.detail-hero-copy .hero-lead { max-width: 820px; margin: 0 auto; }
.detail-actions { display: flex; flex-direction: column; align-items: center; }
.detail-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 28px 0 24px; }
.detail-tags span { padding: 7px 10px; color: #bcd4ec; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; background: rgba(255,255,255,.05); font-size: .67rem; font-weight: 700; letter-spacing: .04em; }
.detail-product-stage { position: relative; min-height: 590px; margin-top: 40px; isolation: isolate; }
.detail-product-stage::before { content: ""; position: absolute; inset: 40px 10% 35px; z-index: -3; border: 1px solid rgba(111,193,255,.14); border-radius: 50%; background: radial-gradient(circle, rgba(30,132,242,.18), rgba(9,34,66,.08) 58%, transparent 70%); }
.detail-stage-orbit { position: absolute; z-index: -2; width: 680px; height: 680px; left: calc(50% - 340px); top: -60px; border: 1px solid rgba(113,196,255,.11); border-radius: 50%; }
.hero-product-cluster { position: absolute; z-index: 1; display: block; object-fit: contain; pointer-events: none; filter: drop-shadow(0 32px 42px rgba(0,0,0,.43)); animation: product-drift 6.5s ease-in-out infinite; }
.hero-cluster-mobile { width: 42%; left: -10%; top: 20px; transform: rotate(-7deg); }
.hero-cluster-workstation { width: 43%; right: -10%; top: 8px; transform: rotate(7deg); animation-delay: -3.1s; }
.hero-cluster-optics { width: 43%; left: -11%; top: 22px; transform: rotate(-6deg); }
.hero-cluster-lab { width: 44%; right: -11%; top: 15px; transform: rotate(6deg); animation-delay: -3.1s; }
.detail-dashboard-frame { position: absolute; z-index: 3; width: 78%; left: 50%; top: 85px; transform: translateX(-50%) perspective(1200px) rotateX(2deg); box-shadow: 0 40px 95px rgba(0,0,0,.55), 0 0 0 1px rgba(164,216,255,.18); }
.detail-chip-one { z-index: 4; left: 8%; top: 115px; }.detail-chip-two { z-index: 4; right: 7%; bottom: 30px; }
@keyframes product-drift { 0%, 100% { margin-top: 0; } 50% { margin-top: -13px; } }
.optizen-detail .product-detail-hero::before { background: radial-gradient(circle, rgba(87,116,255,.27), rgba(122,73,190,.11) 45%, transparent 70%); }
.optizen-detail .detail-product-stage::before { border-color: rgba(153,165,255,.15); background: radial-gradient(circle, rgba(93,125,255,.17), rgba(109,62,166,.09) 58%, transparent 70%); }
.optizen-detail .detail-stage-orbit { border-color: rgba(174,164,255,.13); }
.optizen-detail .stage-chip i { color: #9ddcff; }
.optizen-showcase::before { background: radial-gradient(circle, rgba(102,91,231,.24), transparent 68%); }
.optizen-showcase .commercial-stage::before { background: radial-gradient(circle, rgba(104,93,229,.17), transparent 62%); }
.optizen-showcase .connected-node-mobile { border-color: rgba(143,129,255,.42); background: linear-gradient(145deg, rgba(94,77,202,.22), rgba(255,255,255,.035)); }

.tech-product-showcase { position: relative; color: white; background: var(--ink); overflow: hidden; }
.tech-product-showcase::before { content: ""; position: absolute; width: 820px; height: 820px; top: -390px; right: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(22,119,232,.25), transparent 68%); }
.tech-product-showcase .container { position: relative; z-index: 1; }
.showcase-heading { display: grid; grid-template-columns: 1.12fr .72fr; gap: 95px; align-items: end; margin-bottom: 64px; }
.showcase-heading h2 { max-width: 760px; margin: 0; color: white; }
.showcase-heading > p { margin: 0 0 6px; color: #9eb3ca; font-size: 1.04rem; }

.commercial-stage { position: relative; min-height: 690px; padding-top: 52px; isolation: isolate; }
.commercial-stage::before { content: ""; position: absolute; inset: 40px 3% 65px; z-index: -2; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; background: radial-gradient(circle, rgba(24,124,231,.19), transparent 62%); }
.commercial-orbit { position: absolute; z-index: -1; border: 1px solid rgba(112,199,255,.11); border-radius: 50%; }
.commercial-orbit-one { width: 670px; height: 670px; left: calc(50% - 335px); top: 8px; }
.commercial-orbit-two { width: 460px; height: 460px; left: calc(50% - 230px); top: 112px; }
.app-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: #eef3f8; box-shadow: 0 36px 90px rgba(0,0,0,.38); }
.app-frame-main { position: relative; width: 82%; margin: 0 auto; z-index: 2; }
.app-frame-bar { height: 40px; padding: 0 15px; display: flex; align-items: center; gap: 7px; background: #10233a; border-bottom: 1px solid rgba(255,255,255,.1); }
.app-frame-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #45637f; }.app-frame-bar > span:first-child { background: var(--blue-2); }
.app-frame-bar small { margin-left: auto; color: #8199b2; font: 700 .58rem/1 "Space Grotesk"; letter-spacing: .14em; text-transform: uppercase; }
.app-frame img { width: 100%; }
.app-frame-float { position: absolute; z-index: 3; width: 38%; border-radius: 14px; }
.app-frame-stock { left: -2%; bottom: 10px; transform: perspective(900px) rotateY(7deg) rotateZ(-1.5deg); }
.app-frame-sales { right: -2%; bottom: 4px; transform: perspective(900px) rotateY(-7deg) rotateZ(1.5deg); }
.app-frame-label { display: flex; align-items: center; gap: 8px; padding: 9px 13px; color: white; background: #10233a; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.app-frame-label i { color: var(--cyan); }
.stage-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; color: white; background: rgba(8,24,43,.94); box-shadow: 0 14px 34px rgba(0,0,0,.25); font-size: .7rem; font-weight: 700; }
.stage-chip i { color: #43d4a0; }.stage-chip-one { left: 4%; top: 18px; }.stage-chip-two { right: 4%; top: 100px; }

.connected-product { display: grid; grid-template-columns: 1fr auto 1fr auto 1.18fr; gap: 16px; align-items: stretch; margin: 38px 0 78px; }
.connected-node { min-height: 150px; padding: 23px; display: grid; grid-template-columns: 45px 1fr; gap: 14px; align-items: start; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.035); }
.connected-node > i { width: 45px; height: 45px; display: grid; place-items: center; color: var(--cyan); background: rgba(59,156,255,.12); border-radius: 11px; }
.connected-node b, .connected-node span { display: block; }.connected-node b { margin: 2px 0 7px; font: 700 1rem/1.2 "Space Grotesk"; }.connected-node span { color: #91a8c0; font-size: .78rem; line-height: 1.55; }
.connected-node-mobile { border-color: rgba(59,156,255,.42); background: linear-gradient(145deg, rgba(22,119,232,.18), rgba(255,255,255,.035)); box-shadow: inset 0 0 0 1px rgba(112,199,255,.05); }
.connected-node-mobile > i { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(22,119,232,.28); }
.connected-arrow { align-self: center; color: #42617f; }

.showcase-features { display: grid; gap: 22px; }
.showcase-feature { min-height: 390px; display: grid; grid-template-columns: 1.32fr .68fr; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: var(--ink-2); }
.showcase-feature-reverse { grid-template-columns: .68fr 1.32fr; }.showcase-feature-reverse .feature-shot { order: 2; }.showcase-feature-reverse .feature-copy { order: 1; }
.feature-shot { position: relative; min-height: 390px; overflow: hidden; background: #e9eff5; }
.feature-shot::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.13); pointer-events: none; }
.feature-shot > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .65s var(--ease); }
.showcase-feature:hover .feature-shot > img { transform: scale(1.025); }
.feature-shot-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.13); }
.feature-shot-stack > img { min-height: 0; }
.showcase-feature-invoice { grid-template-columns: .72fr 1.28fr; }
.feature-shot-invoice { padding: 30px; background: radial-gradient(circle at 50% 30%, #1c5188, #0a213a 72%); }
.feature-shot-invoice > img { object-fit: contain; filter: drop-shadow(0 22px 28px rgba(0,0,0,.35)); }
.feature-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.feature-copy > span { position: absolute; right: 28px; top: 25px; color: #44617d; font: 700 .68rem/1 "Space Grotesk"; letter-spacing: .12em; }
.feature-copy > i { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 33px; color: var(--cyan); border: 1px solid rgba(112,199,255,.25); border-radius: 13px; background: rgba(59,156,255,.09); }
.feature-copy h3 { margin-bottom: 14px; color: white; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.feature-copy p { margin: 0; color: #9cb1c7; font-size: .91rem; }

.fit-section { background: var(--mist); }
.fit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.fit-grid .section-heading { margin: 0; }
.fit-points { display: grid; gap: 14px; }
.fit-points > div { display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 15px; }
.fit-points i { grid-row: span 2; width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); background: #eaf4ff; border-radius: 12px; }
.fit-points h3 { margin: 2px 0 5px; font-size: 1.1rem; }.fit-points p { margin: 0; color: var(--muted); font-size: .88rem; }

/* Stores */
.store-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.store-card { display: grid; grid-template-columns: 42% 58%; min-height: 390px; color: var(--text); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.store-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.store-card:focus-visible { outline: 3px solid rgba(22,119,232,.3); outline-offset: 4px; }
.store-art { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; background: #111b29; overflow: hidden; isolation: isolate; }
.store-art::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,11,20,.18) 0%, transparent 42%, rgba(4,11,20,.82) 100%); }
.store-cover { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .65s var(--ease), filter .65s var(--ease); }
.store-card:hover .store-cover { transform: scale(1.045); filter: saturate(1.08) contrast(1.03); }
.store-art > span { position: absolute; z-index: 2; left: 18px; top: 17px; color: rgba(255,255,255,.78); font: 700 .7rem/1 "Space Grotesk"; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.store-art > em { position: absolute; z-index: 2; right: 16px; top: 14px; padding: 6px 8px; color: white; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(5,14,25,.48); backdrop-filter: blur(8px); font: 700 .5rem/1 "Space Grotesk"; letter-spacing: .12em; font-style: normal; }
.store-art > small { position: absolute; z-index: 2; bottom: 18px; font-size: .58rem; letter-spacing: .13em; text-shadow: 0 2px 10px rgba(0,0,0,.65); }
.store-optical .store-cover, .store-fashion .store-cover { object-position: center; }
.store-tech .store-art { background: linear-gradient(145deg, #131a23, #8c6720); }.store-watch .store-art { background: linear-gradient(145deg, #1b1715, #8d6335); }.store-optical .store-art { background: linear-gradient(145deg, #0b3444, #188aa4); }.store-fashion .store-art { background: linear-gradient(145deg, #242a4f, #80537d); }.store-gift .store-art { background: linear-gradient(145deg, #2f2828, #b18878); }
.store-copy { display: flex; flex-direction: column; padding: 33px; }.store-copy h3 { margin-bottom: 12px; font-size: 1.55rem; }.store-copy > p:not(.case-type) { color: var(--muted); font-size: .91rem; }.store-copy .tag-row span { color: var(--blue); border-color: #cfe4fb; background: #f3f9ff; }
.visit-link { display: inline-flex; align-items: center; gap: 9px; width: fit-content; margin-top: auto; padding-top: 23px; color: var(--blue); font-size: .8rem; font-weight: 800; }
.visit-link i { font-size: .72rem; transition: transform .2s var(--ease); }
.store-card:hover .visit-link i { transform: translate(3px, -3px); }
.portfolio-note { display: flex; align-items: flex-start; gap: 10px; margin: 30px 0 0; padding: 15px 18px; color: var(--muted); background: var(--mist); border-radius: 11px; font-size: .83rem; }.portfolio-note i { margin-top: 5px; color: var(--blue); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); }
.capability { min-height: 245px; padding: 33px; background: var(--ink); }.capability i { margin-bottom: 35px; color: var(--blue-2); font-size: 1.5rem; }.capability h3 { margin-bottom: 10px; font-size: 1.2rem; }.capability p { margin: 0; color: #91a7bf; font-size: .88rem; }

/* Process and custom */
.process-section { background: white; }
.process-line { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-line li { position: relative; padding: 27px 27px 27px 0; border-top: 2px solid var(--line); }
.process-line li::before { content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px #e2f0ff; }
.process-line span { color: var(--blue); font: 700 .72rem/1 "Space Grotesk"; }.process-line h3 { margin: 35px 0 8px; font-size: 1.25rem; }.process-line p { max-width: 200px; margin: 0; color: var(--muted); font-size: .86rem; }
.process-five { grid-template-columns: repeat(5, 1fr); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card { position: relative; padding: 33px; background: var(--mist); border: 1px solid transparent; border-radius: var(--radius); }.problem-card > span { position: absolute; right: 25px; top: 24px; color: #afbdcb; font: 700 .7rem/1 "Space Grotesk"; }.problem-card > i { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 48px; color: var(--blue); background: white; border-radius: 13px; box-shadow: 0 10px 28px rgba(7,20,38,.08); font-size: 1.25rem; }.problem-card h3 { font-size: 1.3rem; }.problem-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.custom-example-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 95px; align-items: center; }.custom-example-layout .section-heading { margin: 0; }.custom-example-layout .tag-row span { color: #b8cbe0; }
.workflow-card { display: grid; gap: 10px; padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.035); }.workflow-card > div { display: grid; grid-template-columns: 30px 40px 1fr; gap: 10px; align-items: center; min-height: 64px; padding: 0 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: var(--ink-2); }.workflow-card > div span { color: #637e9b; font-size: .62rem; }.workflow-card > div i { color: var(--blue-2); }.workflow-card > div b { font-size: .82rem; }.workflow-card > i { justify-self: center; color: #496580; font-size: .7rem; }
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }.delivery-grid > div { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 15px; }.delivery-grid i { margin-bottom: 30px; color: var(--blue); font-size: 1.5rem; }.delivery-grid h3 { font-size: 1.15rem; }.delivery-grid p { margin: 0; color: var(--muted); font-size: .85rem; }

/* Contact */
.contact-page { min-height: 100vh; padding: 145px 0 85px; }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 125px; padding-top: 35px; }.contact-copy h1 { margin-bottom: 23px; font-size: clamp(3rem, 5vw, 5.1rem); }
.contact-promise { display: grid; gap: 13px; margin-top: 45px; }.contact-promise > div { display: flex; align-items: center; gap: 15px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }.contact-promise i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--cyan); background: rgba(255,255,255,.06); border-radius: 10px; }.contact-promise b, .contact-promise small { display: block; }.contact-promise b { margin-bottom: 2px; font-size: .85rem; }.contact-promise small { color: #8fa6bf; font-size: .76rem; }
.direct-contact { margin-top: 27px; }.direct-contact p { color: #8fa6bf; font-size: .78rem; }.direct-contact a { display: flex; align-items: center; gap: 9px; margin-top: 8px; color: white; text-decoration: none; font-size: .86rem; }.direct-contact a i { color: var(--cyan); }
.project-form { padding: 40px; color: var(--text); background: white; border-radius: var(--radius); box-shadow: 0 35px 90px rgba(0,0,0,.28); }.form-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: #8293a6; font-size: .68rem; font-weight: 800; letter-spacing: .11em; }.form-head i { color: var(--blue); }
.project-form label { display: grid; gap: 8px; margin-bottom: 17px; color: var(--ink); font-size: .76rem; font-weight: 700; }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.project-form input, .project-form select, .project-form textarea { width: 100%; padding: 13px 14px; color: var(--text); background: #f7f9fc; border: 1px solid var(--line); border-radius: 9px; outline: none; transition: border-color .2s, box-shadow .2s; }.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,119,232,.11); }.project-form textarea { resize: vertical; min-height: 130px; }.form-note { margin: 12px 0 0; color: #8897a8; text-align: center; font-size: .7rem; }.form-result { margin-top: 14px; padding: 13px; color: #0c6043; background: #e9fbf4; border-radius: 8px; font-size: .8rem; }

/* Footer */
.site-footer { padding: 75px 0 25px; color: #9aadc2; background: #050e1a; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 70px; padding-bottom: 55px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }.footer-grid h3 { margin-bottom: 9px; color: white; font: 700 .78rem/1 Inter; text-transform: uppercase; letter-spacing: .1em; }.footer-grid a { width: fit-content; color: #91a5ba; text-decoration: none; font-size: .86rem; }.footer-grid a:hover { color: white; }
.footer-brand strong, .footer-brand > span { display: block; }.footer-brand strong { color: white; font-size: 1.65rem; letter-spacing: .08em; }.footer-brand > span { color: var(--blue-2); font-size: .66rem; letter-spacing: .35em; }.footer-brand p { margin: 20px 0 0; font-size: .87rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); color: #61768e; font-size: .7rem; letter-spacing: .05em; }

/* Motion */
.reveal-pending { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: var(--delay, 0ms); }.reveal-visible { opacity: 1; transform: none; }
[data-delay="1"] { --delay: 90ms; } [data-delay="2"] { --delay: 180ms; } [data-delay="3"] { --delay: 270ms; } [data-delay="4"] { --delay: 360ms; }

/* Responsive */
@media (max-width: 1020px) {
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; top: 76px; right: 0; bottom: 0; left: 0; height: calc(100dvh - 76px); max-height: calc(100dvh - 76px); display: block; padding: 18px 20px calc(34px + env(safe-area-inset-bottom)); background: white; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; transform: translateX(100%); visibility: hidden; pointer-events: none; transition: transform .28s var(--ease), visibility .28s; }
  .main-nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .main-nav > a, .nav-dropdown > button { width: 100%; display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav > a::after, .nav-dropdown > button::after { display: none; }
  .main-nav .nav-cta { justify-content: center; margin-top: 20px; padding: 14px 18px; }
  .language-switch { width: 100%; min-height: 48px; margin: 18px 0 4px; }
  .dropdown-panel { position: static; left: auto; width: 100%; max-width: none; margin: 0; padding: 7px 0; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .main-nav .nav-dropdown:hover .dropdown-panel, .main-nav .nav-dropdown:focus-within .dropdown-panel, .main-nav .nav-dropdown.open .dropdown-panel { left: auto; transform: none; }
  .nav-dropdown.open .dropdown-panel { display: block; }
  .hero-layout { grid-template-columns: 1fr; gap: 55px; }.home-hero { padding-top: 135px; }.hero-system { max-width: 650px; width: 100%; margin: auto; }
  .service-paths { grid-template-columns: 1fr; }.path-card { min-height: 315px; }.path-icon { margin: 30px 0 22px; }
  .work-capability-grid { grid-template-columns: repeat(2, 1fr); }.work-capability { min-height: 310px; }.method-steps { grid-template-columns: repeat(3, 1fr); }
  .page-hero-layout { grid-template-columns: 1fr .35fr; gap: 45px; }.page-symbol { width: 240px; height: 240px; }
  .product-card { grid-template-columns: 31% 69%; }.product-main { padding: 42px; }.feature-list { grid-template-columns: 1fr; }
  .product-detail-hero { min-height: 980px; }.detail-product-stage { min-height: 525px; }.detail-dashboard-frame { width: 86%; }.hero-cluster-mobile, .hero-cluster-optics { left: -12%; width: 45%; }.hero-cluster-workstation, .hero-cluster-lab { right: -12%; width: 46%; }.detail-chip-one { left: 3%; }.detail-chip-two { right: 2%; }
  .showcase-heading { grid-template-columns: 1fr .8fr; gap: 45px; }.commercial-stage { min-height: 590px; }.app-frame-main { width: 88%; }.app-frame-float { width: 42%; }
  .connected-product { grid-template-columns: 1fr 1fr 1fr; }.connected-arrow { display: none; }.connected-node { grid-template-columns: 1fr; }
  .showcase-feature, .showcase-feature-reverse { grid-template-columns: 1.05fr .95fr; }
  .store-card { grid-template-columns: 36% 64%; }.capability-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-example-layout { gap: 55px; }.process-five { grid-template-columns: repeat(3, 1fr); }.delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-layout { gap: 60px; }.value-grid { grid-template-columns: repeat(2, 1fr); }.conduct-grid { grid-template-columns: repeat(2, 1fr); }.about-promise-layout { gap: 55px; }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(2.65rem, 12vw, 4.25rem); }.section { padding: 78px 0; }.container, .nav-shell { width: min(calc(100% - 28px), var(--container)); }
  .brand { width: 175px; }.brand img { width: 220px; left: -23px; top: -131px; }
  .home-hero { min-height: auto; padding: 128px 0 70px; }.hero-layout { gap: 38px; }.hero-proof { gap: 10px; }.hero-proof strong { font-size: 1.45rem; }.hero-proof span { font-size: .59rem; }
  .system-window { transform: none; }.window-body { padding: 32px 20px 25px; }.system-flow { gap: 6px; }.system-flow > div { min-height: 82px; }.system-flow > div span { font-size: .62rem; }.floating-chip { display: none; }
  .section-heading { margin-bottom: 38px; }.path-card { min-height: 340px; padding: 27px; }
  .work-method { margin-top: 50px; padding: 30px 22px; }.work-method-heading { grid-template-columns: 1fr; gap: 25px; align-items: start; }.method-steps { grid-template-columns: 1fr 1fr; gap: 10px; }.method-step { min-height: 215px; }
  .approach-layout, .fit-grid, .custom-example-layout, .contact-layout { grid-template-columns: 1fr; gap: 45px; }.approach .section-heading, .contact-copy { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { min-height: auto; padding: 130px 0 68px; }.page-hero-layout { grid-template-columns: 1fr; }.page-symbol { display: none; }
  .product-card { grid-template-columns: 1fr; }.product-side { min-height: 285px; }.product-main { padding: 32px 24px; }
  .product-side-media { padding: 0; min-height: 340px; }
  .product-detail-hero { min-height: auto; padding: 124px 0 54px; }.detail-hero-centered > .breadcrumb { margin-bottom: 25px; }.detail-hero-copy h1 { font-size: clamp(3.2rem, 15vw, 4.8rem); }.detail-product-stage { min-height: 430px; margin-top: 32px; }.detail-product-stage::before { inset: 40px 0 30px; }.detail-stage-orbit { width: 470px; height: 470px; left: calc(50% - 235px); top: -5px; }.detail-dashboard-frame { width: 96%; top: 105px; transform: translateX(-50%); }.hero-product-cluster { opacity: .74; filter: drop-shadow(0 22px 28px rgba(0,0,0,.5)); }.hero-cluster-mobile, .hero-cluster-optics { width: 56%; left: -17%; top: 8px; }.hero-cluster-workstation, .hero-cluster-lab { width: 58%; right: -18%; top: 0; }.detail-chip-one { left: 2px; top: 82px; }.detail-chip-two { right: 2px; bottom: 2px; }
  .showcase-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .commercial-stage { min-height: 0; padding: 14px 0 0; display: grid; gap: 14px; }.commercial-stage::before, .commercial-orbit, .stage-chip { display: none; }
  .app-frame-main, .app-frame-float { position: relative; inset: auto; width: 100%; margin: 0; transform: none; }.app-frame-stock, .app-frame-sales { bottom: auto; left: auto; right: auto; }
  .connected-product { grid-template-columns: 1fr; margin: 30px 0 58px; }.connected-node { min-height: auto; grid-template-columns: 45px 1fr; }
  .showcase-feature, .showcase-feature-reverse, .showcase-feature-invoice { min-height: 0; grid-template-columns: 1fr; }.showcase-feature-reverse .feature-shot, .showcase-feature-reverse .feature-copy { order: initial; }.feature-shot { min-height: 235px; }.feature-shot-invoice { min-height: 420px; }.feature-copy { padding: 32px 25px 36px; }
  .store-grid { grid-template-columns: 1fr; }.store-card { grid-template-columns: 37% 63%; }.store-copy { padding: 25px; }
  .capability-grid, .problem-grid { grid-template-columns: 1fr; }.capability { min-height: 210px; }.process-line, .process-five { grid-template-columns: 1fr 1fr; row-gap: 18px; }.delivery-grid { grid-template-columns: 1fr 1fr; }
  .contact-page { padding: 120px 0 65px; }.contact-copy { padding-top: 0; }.project-form { padding: 28px 20px; }.field-row { grid-template-columns: 1fr; gap: 0; }
  .about-story-layout, .about-promise-layout { grid-template-columns: 1fr; gap: 38px; }.about-story .section-heading { position: static; }.conduct-card { min-height: 270px; }.promise-mark { max-width: 440px; }
  .whatsapp-float { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 56px; min-width: 56px; height: 56px; padding: 0; }.whatsapp-float span { display: none; }
}

@media (max-width: 500px) {
  .hero-actions, .hero-actions .button { width: 100%; }.hero-proof { grid-template-columns: 1fr 1fr; }.hero-proof div:last-child { display: none; }
  .system-flow { grid-template-columns: 1fr; }.system-flow > i { transform: rotate(90deg); justify-self: center; }.system-flow > div { min-height: 70px; flex-direction: row; }
  .work-capability-grid, .method-steps { grid-template-columns: 1fr; }.work-capability { min-height: 285px; }.method-step { min-height: auto; }.store-card { grid-template-columns: 1fr; }.store-art { min-height: 210px; }.process-line, .process-five, .delivery-grid { grid-template-columns: 1fr; }.process-line p { max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }.footer-brand { grid-column: auto; }
  .value-grid, .conduct-grid { grid-template-columns: 1fr; }.value-card { min-height: 295px; }.promise-mark { grid-template-columns: 72px 1fr; }.promise-mark > span { width: 72px; height: 72px; font-size: 1.3rem; }
  .detail-product-stage { min-height: 315px; margin-top: 22px; }.detail-stage-orbit { width: 350px; height: 350px; left: calc(50% - 175px); }.detail-dashboard-frame { width: 100%; top: 83px; }.hero-product-cluster { opacity: .62; }.hero-cluster-mobile, .hero-cluster-optics { width: 59%; left: -23%; }.hero-cluster-workstation, .hero-cluster-lab { width: 61%; right: -25%; }.detail-chip-one, .detail-chip-two { display: none; }.feature-shot-invoice { min-height: 360px; padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-pending { opacity: 1; transform: none; }
}
