@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-700.woff2") format("woff2");
}

:root {
  --ink: #182522;
  --muted: #60706b;
  --navy: #0c2930;
  --navy-deep: #071d22;
  --teal: #176b63;
  --teal-light: #39a89d;
  --accent: #c85716;
  --accent-contrast: #000;
  --gold: var(--accent);
  --gold-light: var(--accent);
  --paper: #f4f7f5;
  --sage: #e5eeea;
  --line: #d6e0dc;
  --white: #fff;
  --danger: #a43832;
  --juriflow-ink: #020617;
  --juriflow-panel: #0f172a;
  --juriflow-cyan: #22d3ee;
  --juriflow-blue: #3b82f6;
  --shadow: 0 24px 70px rgba(7, 29, 34, .12);
  --radius: 6px;
  --header-height: 84px;
  --font-body: "IBM Plex Sans", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -.03em;
}

h1 {
  font-family: "Lato", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
}

h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: .75rem 1rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--gold);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.light-section {
  background: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #8ed9d1;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 4rem;
}

.section-heading h2 {
  margin-bottom: 1.5rem;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.btn {
  padding: .85rem 1.35rem;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

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

.btn-lg {
  padding: 1rem 1.55rem;
}

.btn-accent {
  color: var(--accent-contrast);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
}

.btn-accent:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .35);
}

.btn-ghost:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.site-header {
  height: var(--header-height);
  background: rgba(7, 29, 34, .93);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  transition: height .25s ease, background .25s ease;
}

.scrolled .site-header {
  height: 72px;
  background: rgba(7, 29, 34, .98);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  color: var(--white);
  align-items: center;
  gap: .8rem;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1;
}

.brand-name span {
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.main-nav > a {
  position: relative;
  padding: .5rem 0;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-contact {
  padding: .62rem 1rem;
  color: var(--accent-contrast);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: 2px;
}

.main-nav .nav-contact:hover {
  color: var(--white);
  background: transparent;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .35);
  font-family: var(--font-mono);
  font-size: .76rem;
}

.language-switch a {
  color: rgba(255, 255, 255, .55);
}

.language-switch a.current {
  color: var(--gold-light);
  font-weight: 700;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 2px;
  font-size: 1.55rem;
  place-items: center;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 34, .98) 0%, rgba(7, 29, 34, .9) 46%, rgba(7, 29, 34, .38) 100%), url("../img/ict/hero-data.webp") center/cover no-repeat;
  opacity: .9;
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - var(--header-height) - 105px);
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: 5rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-copy h1 {
  max-width: 900px;
  margin-bottom: 1.8rem;
  color: var(--white);
}

.hero-copy p {
  max-width: 690px;
  margin-bottom: 2.3rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.system-map {
  position: relative;
  min-height: 480px;
  background: rgba(7, 29, 34, .7);
  border: 1px solid rgba(142, 217, 209, .35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
}

.map-header {
  display: flex;
  height: 42px;
  padding: 0 .85rem;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .09em;
}

.map-header i {
  padding: .1rem .4rem;
  color: var(--gold-light);
  border: 1px solid rgba(245, 217, 129, .35);
  font-style: normal;
}

.system-map svg {
  position: absolute;
  z-index: 0;
  inset: 42px 0 0;
  width: 100%;
  height: calc(100% - 42px);
}

.system-map svg path {
  fill: none;
  stroke: rgba(142, 217, 209, .55);
  stroke-dasharray: 8 8;
  stroke-width: 1.5;
  animation: route-flow 14s linear infinite;
}

.system-map svg circle {
  fill: var(--gold-light);
}

@keyframes route-flow {
  to { stroke-dashoffset: -300; }
}

.map-core,
.map-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: rgba(12, 41, 48, .95);
  border: 1px solid rgba(142, 217, 209, .38);
}

.map-core {
  top: 54%;
  left: 50%;
  width: 120px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border-color: var(--gold-light);
  transform: translate(-50%, -50%);
}

.map-core span,
.map-node span {
  font-family: var(--font-mono);
  font-size: .84rem;
  font-weight: 700;
}

.map-core small,
.map-node small {
  color: rgba(255, 255, 255, .55);
  font-size: .66rem;
}

.map-node {
  width: 155px;
  min-height: 90px;
  padding: .8rem;
  justify-content: center;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.map-node:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--gold-light);
  transform: translateY(-4px);
}

.map-node i {
  margin-bottom: .35rem;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.node-synex { top: 70px; left: 35px; }
.node-juriflow { top: 70px; right: 35px; }
.node-odoo { bottom: 20px; left: 35px; }
.node-web { right: 35px; bottom: 20px; }
.node-juriflow i { color: var(--juriflow-cyan); }

.trust-rail {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 105px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  grid-template-columns: repeat(4, 1fr);
}

.trust-rail > div {
  display: flex;
  padding: 1.2rem 1.6rem;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.trust-rail > div:first-child { padding-left: 0; }
.trust-rail > div:last-child { border-right: 0; }
.trust-rail strong { color: var(--gold-light); font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.trust-rail > div:last-child strong { white-space: nowrap; }
.trust-rail span { color: rgba(255, 255, 255, .68); font-size: .8rem; line-height: 1.3; }

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

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

.solution-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  content: "";
  transform: rotate(45deg);
  transition: background .3s ease, border .3s ease;
}

.solution-card:hover::after {
  background: var(--sage);
  border-color: var(--teal-light);
}

.solution-card.featured {
  color: rgba(255, 255, 255, .75);
  background: var(--navy);
}

.solution-card.featured h3,
.solution-card.featured a {
  color: var(--white);
}

.solution-card.featured::after {
  border-color: rgba(255, 255, 255, .18);
}

.card-index {
  margin-bottom: 3rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
}

.featured .card-index {
  color: #8ed9d1;
}

.solution-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.8rem;
  color: var(--teal);
  background: var(--sage);
  border-radius: 50%;
  font-size: 1.55rem;
  place-items: center;
}

.featured .solution-icon {
  color: var(--gold-light);
  background: rgba(255, 255, 255, .08);
}

.solution-card h3 {
  margin-bottom: 1.2rem;
  font-size: 2.1rem;
}

.solution-card p {
  color: var(--muted);
}

.solution-card.featured p {
  color: rgba(255, 255, 255, .7);
}

.solution-card.juriflow-card {
  background: #f0fbfd;
}

.juriflow-card .solution-icon {
  color: #0e7490;
  background: #cffafe;
}

.solution-card ul {
  margin: 1.1rem 0 2rem;
  padding: 0;
  list-style: none;
}

.solution-card li {
  padding: .38rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.featured li {
  border-color: rgba(255, 255, 255, .12);
}

.solution-card > a {
  z-index: 1;
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  font-weight: 700;
}

.solution-card > a i {
  transition: transform .2s ease;
}

.solution-card > a:hover i {
  transform: translateX(5px);
}

.team-section {
  background: var(--paper);
}

.image-copy-grid,
.product-intro-grid,
.odoo-overview-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem);
}

.team-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.team-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.team-intro-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.team-route {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.team-route i {
  height: 1px;
  background: var(--line);
  flex: 1;
}

.team-route strong {
  color: #a8460f;
  font-size: .64rem;
}

.team-grid {
  display: grid;
  max-width: 1080px;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.team-member:nth-child(2) {
  margin-top: 4rem;
}

.team-portrait {
  position: relative;
  margin-right: 1.25rem;
}

.team-portrait::before {
  position: absolute;
  top: 1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  left: 1.25rem;
  background: var(--teal);
  content: "";
}

.team-member:nth-child(2) .team-portrait::before {
  background: var(--navy);
}

.team-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-photo-label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.15rem 1.4rem 1.25rem;
  color: var(--white);
  background: rgba(7, 29, 34, .94);
  backdrop-filter: blur(8px);
}

.team-photo-label span {
  display: block;
  margin-bottom: .35rem;
  color: #ee8a51;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
}

.team-photo-label h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.team-member-copy {
  max-width: 620px;
  margin-top: 2.7rem;
}

.team-member-copy p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .95rem;
}

.team-member-copy .team-role {
  margin-bottom: .7rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.team-link {
  display: inline-flex;
  margin-top: .5rem;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.team-link span {
  transition: transform .2s ease;
}

.team-link:hover span {
  transform: translate(2px, -2px);
}

.team-principles {
  display: grid;
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.team-principles > div {
  display: grid;
  min-height: 150px;
  padding: 1.8rem;
  align-items: center;
  border-right: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
  gap: 1rem;
}

.team-principles > div:last-child {
  border-right: 0;
}

.team-principles i {
  color: var(--teal);
  font-size: 1.45rem;
}

.team-principles span {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}

.team-principles strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--ink);
  font-size: .95rem;
}

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

.case-card {
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.case-visual {
  position: relative;
  display: flex;
  min-height: 290px;
  padding: 2rem;
  color: var(--white);
  background: var(--navy);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-visual::before,
.case-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .14);
  content: "";
}

.case-visual::before {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.case-visual::after {
  width: 180px;
  height: 180px;
  transform: rotate(45deg);
}

.case-visual > span {
  position: absolute;
  top: 1.3rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
}

.case-visual i {
  z-index: 2;
  color: var(--gold-light);
  font-size: 5rem;
}

.case-warehouse .case-visual {
  background: var(--teal);
}

.case-content {
  padding: 2.3rem;
}

.case-content > span {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .11em;
}

.case-content h3 {
  margin: .8rem 0 1rem;
}

.case-content p {
  color: var(--muted);
}

.case-content a {
  display: inline-flex;
  margin-top: .8rem;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
}

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

.process-section .eyebrow {
  color: #8ed9d1;
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.process-grid h2 {
  color: var(--white);
}

.process-grid > div > p {
  color: rgba(255, 255, 255, .65);
}

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

.process-list li {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  grid-template-columns: 72px 1fr;
  gap: 1rem;
}

.process-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.process-list > li > span {
  color: #f08a4c;
  font-family: var(--font-mono);
  font-size: .76rem;
}

.process-list h3 {
  margin: 0 0 .3rem;
  color: var(--white);
  font-size: 1.5rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
}

.contact-section {
  position: relative;
  color: var(--white);
  background: var(--teal);
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 10%, black 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-intro h2 {
  max-width: 760px;
  color: var(--white);
}

.contact-intro > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .92);
}

.contact-section .eyebrow-light {
  color: var(--white);
}

.contact-direct-note {
  display: flex;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .24);
  gap: .8rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
}

.contact-direct-note i {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.contact-direct {
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 24px 24px 0 rgba(7, 29, 34, .18);
}

.contact-direct-head {
  display: flex;
  min-height: 54px;
  padding: .9rem 1.35rem;
  color: rgba(255, 255, 255, .58);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .09em;
}

.contact-direct-head i {
  color: #f08a4c;
  font-size: 1rem;
}

.contact-channel {
  display: grid;
  min-height: 128px;
  padding: 1.35rem;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  grid-template-columns: 40px 52px minmax(0, 1fr) 24px;
  gap: 1rem;
  transition: background .2s ease;
}

.contact-channel:last-child {
  border-bottom: 0;
}

a.contact-channel:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .055);
}

.contact-channel-index {
  color: #f08a4c;
  font-family: var(--font-mono);
  font-size: .7rem;
}

.contact-channel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: #8ed9d1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 1.15rem;
  place-items: center;
}

.contact-channel small {
  display: block;
  margin-bottom: .3rem;
  color: rgba(255, 255, 255, .56);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
}

.contact-channel strong,
.contact-channel address {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.contact-channel-arrow {
  color: #f08a4c;
  transition: transform .2s ease;
}

a.contact-channel:hover .contact-channel-arrow {
  transform: translate(3px, -3px);
}

.contact-address {
  grid-template-columns: 40px 52px minmax(0, 1fr);
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, .62);
  background: #06171b;
}

.footer-grid {
  display: grid;
  padding-bottom: 4rem;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
}

.brand-footer {
  margin-bottom: 1.4rem;
}

.footer-grid > div:first-child p {
  max-width: 390px;
}

.footer-grid h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid address,
.footer-grid p {
  display: block;
  margin-bottom: .55rem;
  color: rgba(255, 255, 255, .62);
  font-size: .86rem;
  font-style: normal;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .06em;
}

.scroll-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--accent-contrast);
  background: var(--gold-light);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .2s ease;
}

.scroll-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + clamp(5rem, 10vw, 9rem)) 0 clamp(5rem, 9vw, 8rem);
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, transparent 20%, rgba(57, 168, 157, .1)), linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: 4rem;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.22rem;
}

.page-hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-code {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
}

.route-line {
  position: relative;
  height: 2px;
  margin-top: 1.2rem;
  background: rgba(255, 255, 255, .18);
}

.route-line::before {
  position: absolute;
  width: 42%;
  height: 100%;
  background: var(--gold-light);
  content: "";
}

.route-line i {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  transform: translateY(-50%);
}

.route-line i:nth-child(1) { left: 0; background: var(--gold-light); }
.route-line i:nth-child(2) { left: 33%; }
.route-line i:nth-child(3) { left: 66%; }
.route-line i:nth-child(4) { right: 0; }

.product-intro-grid > div:first-child > p,
.odoo-overview-grid > div:last-child > p,
.image-copy-grid > div:last-child > p,
.split-content > div > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.deployment-options {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.deployment-options > div {
  display: grid;
  padding: 1.3rem;
  background: var(--paper);
  grid-template-columns: 40px 1fr;
}

.deployment-options i {
  grid-row: span 2;
  color: var(--teal);
  font-size: 1.4rem;
}

.deployment-options span {
  color: var(--muted);
  font-size: .75rem;
}

.product-window {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  height: 42px;
  padding: 0 1rem;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .62rem;
}

.window-bar i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--line);
  border-radius: 50%;
}

.window-bar span {
  margin-left: .45rem;
}

.window-body {
  display: grid;
  min-height: 380px;
  grid-template-columns: 70px 1fr;
}

.window-body aside {
  display: flex;
  padding: 1rem .75rem;
  color: var(--white);
  background: #163b2c;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.window-body aside b {
  color: var(--gold-light);
  font-size: .7rem;
}

.window-body aside span {
  width: 32px;
  height: 5px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
}

.window-body aside span.active {
  background: #bcd8ca;
}

.dashboard {
  padding: 1.5rem;
  background: #f7f8f6;
}

.dashboard-title {
  display: flex;
  margin-bottom: 1.2rem;
  justify-content: space-between;
}

.dashboard-title small {
  color: var(--muted);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

.kpi-row > div {
  display: flex;
  min-height: 88px;
  padding: .8rem;
  background: var(--white);
  border: 1px solid var(--line);
  flex-direction: column;
}

.kpi-row span {
  color: var(--muted);
  font-size: .55rem;
}

.kpi-row strong {
  margin: auto 0;
  font-size: .83rem;
}

.kpi-row i {
  color: var(--teal);
  font-size: .52rem;
  font-style: normal;
}

.chart {
  display: flex;
  height: 120px;
  margin-top: .8rem;
  padding: 1rem 1rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  align-items: end;
  gap: .6rem;
}

.chart span {
  width: 12%;
  background: linear-gradient(var(--teal-light), var(--teal));
}

.table-lines {
  margin-top: .8rem;
  padding: .5rem .8rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.table-lines span {
  display: block;
  height: 7px;
  margin: .55rem 0;
  background: linear-gradient(90deg, var(--line) 28%, transparent 28% 33%, var(--line) 33% 56%, transparent 56% 61%, var(--line) 61%);
}

.business-flow {
  display: grid;
  margin: 3.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
}

.business-flow li {
  position: relative;
  display: flex;
  min-height: 120px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .6rem;
}

.business-flow li:last-child {
  border-right: 1px solid var(--line);
}

.business-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.business-flow i {
  color: var(--teal);
  font-size: 1.4rem;
}

.business-flow span {
  font-size: .76rem;
  font-weight: 700;
}

.module-grid,
.odoo-app-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.module-grid article,
.odoo-app-grid article,
.capability-grid article {
  min-height: 250px;
  padding: 2rem;
  background: var(--white);
  transition: background .2s ease, color .2s ease;
}

.module-grid article:hover,
.odoo-app-grid article:hover,
.capability-grid article:hover {
  background: var(--sage);
}

.module-grid i,
.odoo-app-grid i,
.capability-grid i {
  display: block;
  margin-bottom: 2rem;
  color: var(--teal);
  font-size: 1.7rem;
}

.module-grid h3,
.odoo-app-grid h3,
.capability-grid h3 {
  margin-bottom: .8rem;
  font-size: 1.45rem;
}

.module-grid p,
.odoo-app-grid p,
.capability-grid p {
  color: var(--muted);
  font-size: .88rem;
}

.accounting-section {
  background: var(--sage);
}

.split-content {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
}

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

.check-list li {
  position: relative;
  padding: .6rem 0 .6rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: .72rem;
  left: 0;
  color: var(--teal);
  font-family: "bootstrap-icons";
  content: "\f633";
}

.ledger-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border-top: 5px solid var(--teal);
  box-shadow: var(--shadow);
  font-variant-numeric: tabular-nums;
}

.ledger-head,
.ledger-card > div:not(.ledger-head) {
  display: flex;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 1rem;
}

.ledger-head {
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.ledger-card > div span {
  color: var(--muted);
}

.ledger-card .ledger-total {
  margin-top: 1rem;
  color: var(--teal);
  border-bottom: 0;
  font-size: 1.15rem;
}

.ledger-card small {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .65rem;
}

.integrations-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
}

.integration-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.integration-tags span,
.tag-list span {
  padding: .5rem .75rem;
  color: var(--teal);
  background: var(--sage);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .7rem;
}

.security-card {
  padding: 2.5rem;
  color: rgba(255, 255, 255, .7);
  background: var(--navy);
}

.security-card > i {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold-light);
  font-size: 2.4rem;
}

.security-card h3 {
  color: var(--white);
}

.cta-band {
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: rgba(255, 255, 255, .86);
  background: var(--teal);
}

.cta-band .eyebrow-light {
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band h2 {
  max-width: 870px;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-band p {
  max-width: 700px;
}

.cta-band .btn {
  flex: 0 0 auto;
}

.juriflow-intro {
  overflow: hidden;
}

.juriflow-pill-list {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: .6rem;
}

.juriflow-pill-list span {
  display: inline-flex;
  padding: .55rem .8rem;
  color: #0e7490;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
}

.juriflow-window {
  min-width: 0;
  color: #cbd5e1;
  background: var(--juriflow-ink);
  border: 1px solid rgba(34, 211, 238, .35);
  box-shadow: 0 30px 90px rgba(2, 6, 23, .28);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.jf-window-bar {
  display: flex;
  min-height: 52px;
  padding: .65rem 1rem;
  background: rgba(15, 23, 42, .96);
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  align-items: center;
  gap: 1rem;
}

.jf-wordmark {
  display: inline-flex;
  color: var(--white);
  align-items: center;
  gap: .45rem;
  font-weight: 800;
}

.jf-wordmark i {
  color: var(--juriflow-cyan);
}

.jf-window-bar small {
  color: #64748b;
  font-family: var(--font-mono);
  font-size: .58rem;
}

.jf-user {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: auto;
  color: #083344;
  background: var(--juriflow-cyan);
  border-radius: 50%;
  place-items: center;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 800;
}

.jf-window-body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 58px minmax(0, 1fr);
}

.jf-sidebar {
  display: flex;
  padding: 1rem .6rem;
  background: #080d1c;
  border-right: 1px solid rgba(148, 163, 184, .13);
  align-items: center;
  flex-direction: column;
  gap: .8rem;
}

.jf-sidebar i {
  display: grid;
  width: 34px;
  height: 34px;
  color: #64748b;
  border-radius: 5px;
  place-items: center;
  font-size: .9rem;
}

.jf-sidebar i.active {
  color: var(--juriflow-cyan);
  background: rgba(34, 211, 238, .1);
}

.jf-dashboard {
  min-width: 0;
  padding: 1.25rem;
  background: radial-gradient(circle at 90% 10%, rgba(59, 130, 246, .12), transparent 35%), var(--juriflow-ink);
}

.jf-heading {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

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

.jf-heading small,
.jf-panel-title span,
.jf-check small {
  color: #64748b;
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .05em;
}

.jf-heading strong {
  color: var(--white);
  font-size: .92rem;
}

.jf-heading > span {
  padding: .25rem .45rem;
  color: #67e8f9;
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .22);
  font-family: var(--font-mono);
  font-size: .5rem;
}

.jf-kpis {
  display: grid;
  margin-bottom: .8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.jf-kpis > div {
  display: grid;
  min-height: 88px;
  padding: .7rem;
  background: rgba(15, 23, 42, .82);
  border: 1px solid rgba(148, 163, 184, .14);
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto 1fr;
}

.jf-kpis i {
  color: var(--juriflow-cyan);
  grid-row: span 2;
  font-size: .9rem;
}

.jf-kpis span {
  color: #64748b;
  font-size: .5rem;
  line-height: 1.25;
}

.jf-kpis strong {
  align-self: end;
  color: var(--white);
  font-size: .9rem;
}

.jf-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(120px, .6fr);
  gap: .55rem;
}

.jf-matters,
.jf-check {
  background: rgba(15, 23, 42, .82);
  border: 1px solid rgba(148, 163, 184, .14);
}

.jf-panel-title {
  display: flex;
  min-height: 38px;
  padding: .55rem .7rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, .13);
}

.jf-panel-title strong {
  color: #e2e8f0;
  font-size: .58rem;
}

.jf-matters > div:not(.jf-panel-title) {
  display: grid;
  min-height: 43px;
  padding: .45rem .7rem;
  align-items: center;
  border-bottom: 1px solid rgba(148, 163, 184, .09);
  grid-template-columns: 86px 1fr auto;
  gap: .45rem;
}

.jf-matters b,
.jf-matters span,
.jf-matters i {
  font-size: .5rem;
}

.jf-matters b {
  color: #e2e8f0;
  font-family: var(--font-mono);
}

.jf-matters span {
  color: #94a3b8;
}

.jf-matters i {
  padding: .18rem .35rem;
  color: #cbd5e1;
  background: rgba(148, 163, 184, .09);
  border-radius: 10px;
  font-style: normal;
}

.jf-matters i.status-active {
  color: #67e8f9;
  background: rgba(34, 211, 238, .09);
}

.jf-check {
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.jf-check > i {
  margin-bottom: auto;
  color: var(--juriflow-cyan);
  font-size: 1.6rem;
}

.jf-check strong {
  margin: .4rem 0 .15rem;
  color: var(--white);
  font-size: .66rem;
}

.jf-check span {
  color: #64748b;
  font-family: var(--font-mono);
  font-size: .48rem;
}

.juriflow-workflow {
  overflow: hidden;
}

.juriflow-flow {
  display: grid;
  margin: 3.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.juriflow-flow li {
  position: relative;
  display: flex;
  min-height: 210px;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 0;
  flex-direction: column;
}

.juriflow-flow li:last-child {
  border-right: 1px solid var(--line);
}

.juriflow-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.juriflow-flow li > span {
  margin-bottom: 2rem;
  color: #0e7490;
  font-family: var(--font-mono);
  font-size: .68rem;
}

.juriflow-flow i {
  margin-bottom: 1rem;
  color: #0891b2;
  font-size: 1.6rem;
}

.juriflow-flow strong {
  margin-bottom: .35rem;
  color: var(--navy);
}

.juriflow-flow small {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.juriflow-module-grid article:hover {
  background: #ecfeff;
}

.juriflow-module-grid i {
  color: #0891b2;
}

.juriflow-domain-section {
  background: #eaf4f5;
}

.juriflow-case-file {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #cbd5e1;
  background: var(--juriflow-panel);
  border: 1px solid rgba(34, 211, 238, .3);
  box-shadow: 18px 18px 0 rgba(14, 116, 144, .12);
}

.case-file-tab {
  display: flex;
  margin: calc(clamp(1.5rem, 4vw, 3rem) * -1) calc(clamp(1.5rem, 4vw, 3rem) * -1) 2rem;
  padding: .8rem 1rem;
  background: #080d1c;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .65rem;
}

.case-file-tab i {
  color: #67e8f9;
  font-style: normal;
}

.case-file-head {
  display: flex;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, .18);
  flex-direction: column;
}

.case-file-head small,
.case-file-head span,
.juriflow-case-file dt {
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: .6rem;
}

.case-file-head strong {
  margin: .25rem 0;
  color: var(--white);
  font-size: 1.5rem;
}

.juriflow-case-file dl {
  display: grid;
  margin: 1.5rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(148, 163, 184, .14);
}

.juriflow-case-file dl > div {
  display: flex;
  min-height: 82px;
  padding: 1rem;
  background: var(--juriflow-panel);
  flex-direction: column;
  justify-content: center;
}

.juriflow-case-file dd {
  margin: .3rem 0 0;
  color: var(--white);
  font-size: .84rem;
}

.juriflow-case-file dd.checked {
  color: #67e8f9;
}

.juriflow-case-file dd i {
  margin-right: .35rem;
}

.case-file-footer {
  display: flex;
  color: #94a3b8;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: .68rem;
}

.juriflow-security-tags span {
  color: #0e7490;
  background: #ecfeff;
  border-color: #a5f3fc;
}

.juriflow-security-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  border-top: 4px solid var(--juriflow-cyan);
}

.juriflow-security-card > i {
  color: var(--juriflow-cyan);
}

.juriflow-security-card > div {
  display: flex;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, .18);
  align-items: baseline;
  gap: .6rem;
}

.juriflow-security-card > div span {
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
}

.juriflow-security-card > div small {
  color: #67e8f9;
}

.odoo-brand-panel {
  display: flex;
  min-height: 390px;
  padding: 3rem;
  color: var(--white);
  background: #714b67;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.odoo-brand-panel img {
  width: min(300px, 80%);
  margin-bottom: 3rem;
  filter: brightness(0) invert(1);
}

.odoo-brand-panel span {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
}

.odoo-brand-panel strong {
  color: #f6d365;
  font-size: 1.2rem;
}

.odoo-app-grid article {
  min-height: 240px;
}

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

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

.edition-grid article {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--paper);
  border-top: 5px solid var(--teal);
}

.edition-grid article.enterprise {
  color: rgba(255, 255, 255, .72);
  background: #714b67;
  border-color: #f6d365;
}

.edition-grid article > span {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.edition-grid .enterprise > span,
.edition-grid .enterprise h3 {
  color: var(--white);
}

.edition-grid h3 {
  margin: 1rem 0;
  font-size: 2.2rem;
}

.edition-grid .enterprise .check-list li {
  border-color: rgba(255, 255, 255, .15);
}

.edition-grid .enterprise .check-list li::before {
  color: #f6d365;
}

.edition-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .78rem;
}

.odoo-services-section {
  background: var(--sage);
}

.service-steps {
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  list-style: none;
}

.service-steps li {
  display: grid;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
  gap: 1rem;
}

.service-steps li:last-child {
  border-bottom: 0;
}

.service-steps b {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .75rem;
}

.service-steps span {
  color: var(--muted);
  font-size: .82rem;
}

.service-steps strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.image-copy-grid > div:first-child {
  position: relative;
}

.image-copy-grid > div:first-child::after {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 75%;
  height: 75%;
  background: var(--teal);
  content: "";
}

.image-copy-grid img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.capability-grid {
  grid-template-columns: repeat(3, 1fr);
}

.rad-section {
  background: var(--navy-deep);
}

.rad-section .section-heading h2 {
  color: var(--white);
}

.rad-section .section-heading p {
  color: rgba(255, 255, 255, .6);
}

.rad-loop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.rad-loop::before {
  position: absolute;
  top: 48%;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  content: "";
}

.rad-loop > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 260px;
  padding: 1.7rem;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.rad-loop span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.rad-loop i {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 1.2rem;
  color: var(--gold-light);
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  font-size: 1.8rem;
  place-items: center;
}

.rad-loop strong {
  font-size: 1.1rem;
}

.rad-loop small {
  color: rgba(255, 255, 255, .5);
}

.reference-feature {
  display: grid;
  margin-bottom: 2rem;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper);
  grid-template-columns: 90px .55fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.reference-feature.reverse {
  color: rgba(255, 255, 255, .68);
  background: var(--navy);
}

.reference-feature.reverse h2 {
  color: var(--white);
}

.reference-number {
  align-self: stretch;
  padding-right: 1rem;
  color: var(--teal);
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}

.reverse .reference-number {
  color: var(--gold-light);
  border-color: rgba(255, 255, 255, .15);
}

.reference-icon {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  color: var(--teal);
  border: 1px solid var(--line);
  font-size: 5rem;
  place-items: center;
}

.reference-icon::after {
  position: absolute;
  width: 55%;
  height: 55%;
  border: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.reverse .reference-icon {
  color: var(--gold-light);
  border-color: rgba(255, 255, 255, .15);
}

.reference-feature p {
  color: var(--muted);
}

.reverse p {
  color: rgba(255, 255, 255, .62);
}

.reference-feature .tag-list {
  margin: 1.5rem 0;
}

.reverse .tag-list span {
  color: #8ed9d1;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .15);
}

.reverse .btn-dark {
  color: var(--accent-contrast);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.case-summary {
  display: grid;
  margin-bottom: 5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-summary > div {
  display: flex;
  min-height: 130px;
  padding: 1.5rem;
  background: var(--paper);
  flex-direction: column;
  justify-content: center;
}

.case-summary span {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .09em;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.story-index {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.case-story-grid h2 {
  font-size: 2.1rem;
}

.case-story-grid p {
  color: var(--muted);
}

.integration-diagram {
  display: grid;
  margin-top: 6rem;
  padding: 2.5rem;
  color: var(--white);
  background: var(--navy-deep);
  align-items: center;
  grid-template-columns: 1fr .6fr 1fr .6fr 1fr;
  gap: 1rem;
}

.integration-diagram > div {
  display: flex;
  min-height: 170px;
  padding: 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.integration-diagram > div i {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 2rem;
}

.integration-diagram > div span {
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
}

.diagram-arrow {
  display: flex;
  color: rgba(255, 255, 255, .5);
  align-items: center;
  flex-direction: column;
  font-size: .62rem;
  text-align: center;
}

.diagram-arrow i {
  color: #8ed9d1;
  font-size: 1.6rem;
}

.legal-content {
  max-width: 850px;
}

.legal-updated {
  margin-bottom: 3rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

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

@media (max-width: 1199px) {
  .main-nav { gap: 1rem; }
  .main-nav > a { font-size: .75rem; }
  .hero-grid { grid-template-columns: 1fr minmax(380px, .8fr); gap: 3rem; }
  .module-grid, .odoo-app-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  :root { --header-height: 74px; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    padding: 2rem max(1.5rem, calc((100vw - 720px) / 2));
    background: var(--navy-deep);
    align-items: stretch;
    flex-direction: column;
    gap: .25rem;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; visibility: visible; transform: none; }
  .main-nav > a { padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 1.05rem; }
  .main-nav .nav-contact { margin-top: 1rem; padding: 1rem; text-align: center; }
  .language-switch { margin-top: 1.5rem; font-size: 1rem; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .system-map { max-width: 650px; width: 100%; margin: 0 auto; }
  .trust-rail { grid-template-columns: repeat(2, 1fr); }
  .trust-rail > div:nth-child(2) { border-right: 0; }
  .trust-rail > div { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .solution-card { min-height: 0; }
  .team-intro, .image-copy-grid, .product-intro-grid, .odoo-overview-grid, .split-content, .process-grid, .contact-grid, .integrations-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-code { max-width: 400px; }
  .business-flow { grid-template-columns: repeat(4, 1fr); }
  .business-flow li:nth-child(4) { border-right: 1px solid var(--line); }
  .business-flow li:nth-child(4)::after { display: none; }
  .business-flow li:nth-child(n+5) { border-top: 0; }
  .juriflow-window { transform: none; }
  .juriflow-flow { grid-template-columns: repeat(2, 1fr); }
  .juriflow-flow li:nth-child(even) { border-right: 1px solid var(--line); }
  .juriflow-flow li:nth-child(even)::after { display: none; }
  .juriflow-flow li:nth-child(n+3) { border-top: 0; }
  .juriflow-flow li:last-child { grid-column: 1 / -1; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .rad-loop { grid-template-columns: repeat(2, 1fr); }
  .reference-feature { grid-template-columns: 65px .45fr 1fr; gap: 2rem; }
  .integration-diagram { grid-template-columns: 1fr; }
  .diagram-arrow { flex-direction: row; justify-content: center; gap: .7rem; }
  .diagram-arrow i { transform: rotate(90deg); }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  h1 { font-size: 2.5rem; }
  .section { padding: 5rem 0; }
  .home-hero { min-height: auto; }
  .hero-grid { padding-top: 4.5rem; padding-bottom: 4rem; }
  .system-map { min-height: 420px; }
  .node-synex { left: 16px; }
  .node-juriflow { right: 16px; }
  .node-odoo { left: 16px; }
  .node-web { right: 16px; }
  .map-node { width: 132px; padding: .65rem; }
  .trust-rail > div { padding: 1rem; }
  .trust-rail > div:first-child { padding-left: 1rem; }
  .team-intro, .image-copy-grid, .product-intro-grid, .odoo-overview-grid { gap: 3.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-member:nth-child(2) { margin-top: 2rem; }
  .team-principles { grid-template-columns: 1fr; }
  .team-principles > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .team-principles > div:last-child { border-bottom: 0; }
  .page-hero { padding-top: calc(var(--header-height) + 4.5rem); }
  .deployment-options { grid-template-columns: 1fr; }
  .product-window { transform: none; }
  .window-body { grid-template-columns: 52px 1fr; }
  .dashboard { padding: .8rem; }
  .kpi-row { grid-template-columns: 1fr; }
  .kpi-row > div { min-height: 64px; }
  .chart { height: 90px; }
  .business-flow { grid-template-columns: repeat(2, 1fr); }
  .business-flow li:nth-child(even) { border-right: 1px solid var(--line); }
  .business-flow li:nth-child(even)::after { display: none; }
  .business-flow li:nth-child(n+3) { border-top: 0; }
  .solution-grid { grid-template-columns: 1fr; }
  .jf-window-bar small { display: none; }
  .jf-window-body { min-height: 0; grid-template-columns: 44px minmax(0, 1fr); }
  .jf-sidebar { padding: .8rem .3rem; }
  .jf-sidebar i { width: 30px; height: 30px; }
  .jf-dashboard { padding: .8rem; }
  .jf-kpis { grid-template-columns: 1fr; }
  .jf-kpis > div { min-height: 64px; }
  .jf-content-grid { grid-template-columns: 1fr; }
  .jf-check { min-height: 130px; }
  .jf-check > i { margin-bottom: 1rem; }
  .juriflow-flow { grid-template-columns: 1fr; }
  .juriflow-flow li { min-height: 0; border: 1px solid var(--line); border-bottom: 0; }
  .juriflow-flow li:last-child { border-bottom: 1px solid var(--line); grid-column: auto; }
  .juriflow-flow li::after { display: none; }
  .juriflow-flow li > span { margin-bottom: 1rem; }
  .juriflow-case-file dl { grid-template-columns: 1fr; }
  .module-grid, .odoo-app-grid, .capability-grid { grid-template-columns: 1fr; }
  .module-grid article, .odoo-app-grid article, .capability-grid article { min-height: 0; }
  .edition-grid { grid-template-columns: 1fr; }
  .rad-loop { grid-template-columns: 1fr; }
  .rad-loop::before { display: none; }
  .reference-feature, .reference-feature.reverse { grid-template-columns: 1fr; }
  .reference-number { min-height: 0; padding: 0 0 1rem; border-right: 0; border-bottom: 1px solid var(--line); writing-mode: initial; }
  .reference-icon { max-width: 280px; width: 100%; }
  .case-summary, .case-story-grid { grid-template-columns: 1fr; }
  .case-story-grid { gap: 3rem; }
  .case-summary > div { min-height: 100px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575px) {
  .container-xl { --bs-gutter-x: 2.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 2.55rem; }
  .brand-name { font-size: 1.4rem; }
  .system-map { min-height: 570px; }
  .map-core { top: 50%; }
  .node-synex { top: 62px; left: 16px; transform: none; }
  .node-juriflow { top: 62px; right: 16px; }
  .node-odoo { top: auto; right: auto; bottom: 35px; left: 16px; }
  .node-web { right: 16px; bottom: 35px; }
  .map-node:hover { transform: none; }
  .trust-rail { grid-template-columns: 1fr; }
  .trust-rail > div { border-right: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .solution-card { padding: 2rem 1.5rem; }
  .case-content { padding: 1.5rem; }
  .contact-direct { box-shadow: 12px 12px 0 rgba(7, 29, 34, .18); }
  .contact-channel { min-height: 112px; padding: 1rem; grid-template-columns: 28px 40px minmax(0, 1fr) 18px; gap: .7rem; }
  .contact-channel-icon { width: 38px; height: 38px; }
  .contact-address { grid-template-columns: 28px 40px minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .business-flow li { min-height: 100px; padding: .7rem; }
  .ledger-head, .ledger-card > div:not(.ledger-head) { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .integration-diagram { padding: 1rem; }
}

@media (max-width: 400px) {
  .map-node { width: 120px; padding: .55rem; }
  .map-node span { font-size: .72rem; }
  .map-node small { font-size: .57rem; }
  .node-synex, .node-odoo { left: 12px; }
  .node-juriflow, .node-web { right: 12px; }
  .map-core { width: 108px; }
  .map-header { font-size: .56rem; }
}

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