/* ============================================================
   OMNISOFT Technologies — design system
   Brand: teal #2BC5B4 / mint #51D9C1 / indigo #4A489D / ink #12102E
   Type:  Sora (display) + Inter (body)
   ============================================================ */

:root {
  --teal: #2BC5B4;
  --teal-bright: #51D9C1;
  --teal-deep: #1FA8A0;
  --indigo: #4A489D;
  --indigo-soft: #5B59B8;
  --indigo-deep: #312F6E;
  --ink: #12102E;
  --ink-2: #1B1847;
  --mint: #EEFBF9;
  --bg: #FFFFFF;
  --bg-soft: #F6FAF9;
  --text: #3B3B52;
  --text-light: #6B6B85;
  --line: #E4EDEB;
  --grad: linear-gradient(120deg, var(--teal) 0%, var(--indigo) 100%);
  --grad-text: linear-gradient(100deg, #51D9C1 10%, #7C7ADF 90%);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 8px 30px rgba(18, 16, 46, .08);
  --shadow-lg: 0 24px 60px rgba(18, 16, 46, .14);
  --font-display: "Sora", "Avenir Next", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { color: var(--indigo); }
::selection { background: var(--teal); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.06rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.on-dark .eyebrow { color: var(--teal-bright); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lead { font-size: clamp(1.1rem, 1.7vw, 1.28rem); color: var(--text-light); max-width: 46em; }
.on-dark .lead { color: #B9B8D9; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 16px 30px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: .92rem; }
.btn-primary {
  background: var(--grad); color: #fff !important;
  box-shadow: 0 10px 26px rgba(43, 197, 180, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(43, 197, 180, .45); }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--teal); transform: translateY(-2px); }
.on-dark .btn-ghost { color: #fff !important; box-shadow: inset 0 0 0 2px rgba(255,255,255,.28); }
.on-dark .btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--teal-bright); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.arrow-link {
  font-family: var(--font-display); font-weight: 600; color: var(--teal-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.arrow-link::after { content: "→"; transition: transform .2s ease; }
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- topbar ---------- */
.topbar { background: var(--ink); color: #B9B8D9; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 38px; }
.topbar-group { display: flex; gap: 22px; align-items: center; }
.topbar a { color: #B9B8D9; font-weight: 500; white-space: nowrap; }
.topbar a:hover { color: var(--teal-bright); }
@media (max-width: 1020px) { .topbar { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(18,16,46,.06); }
.nav-wrap { display: flex; align-items: center; gap: 28px; height: 76px; }

.brand { display: flex; align-items: center; gap: 11px; }
.logo-mark { width: 42px; height: 42px; flex: none; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.18rem;
  color: #14BEBE; letter-spacing: .04em;
}
.brand-sub {
  font-family: var(--font-display); font-weight: 600; font-size: .55rem;
  color: var(--indigo); letter-spacing: .34em;
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.site-nav li { display: flex; align-items: center; height: 76px; position: relative; }
.site-nav a {
  display: block; padding: 10px 15px; border-radius: 10px;
  font-family: var(--font-display); font-size: .92rem; font-weight: 600; color: var(--ink);
}
.site-nav a:hover { background: var(--mint); color: var(--teal-deep); }
.site-nav a[aria-current="page"] { color: var(--teal-deep); background: var(--mint); }

/* services dropdown */
.has-sub > a::after { content: "▾"; font-size: .68em; margin-left: 7px; opacity: .55; }
.site-nav ul.submenu {
  display: block;
  position: absolute; top: 100%; left: 0; min-width: 240px; z-index: 60;
  list-style: none; margin: 0; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: none;
}
.submenu li { display: block; height: auto; }
.submenu a { display: block; padding: 11px 14px; border-radius: 9px; font-size: .9rem; }
.submenu a::after { content: none; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--ink); }
.nav-phone:hover { color: var(--teal-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { display: none; padding: 18px 24px 30px; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu ul { list-style: none; margin: 0 0 18px; padding: 0; }
.mobile-menu li a {
  display: block; padding: 13px 4px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { width: 100%; margin-bottom: 14px; }
.mobile-menu .nav-phone { display: block; text-align: center; }

@media (max-width: 1020px) {
  .site-nav, .nav-phone { display: none; }
  .mobile-menu .nav-phone { display: block; }
  .nav-toggle { display: block; }
  .mobile-menu.open { display: block; }
}
@media (max-width: 560px) { .nav-actions .btn { display: none; } .mobile-menu .btn { display: inline-flex; } }

/* ---------- dark hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 620px at 78% -10%, #24215C 0%, transparent 60%),
              radial-gradient(900px 600px at -8% 110%, #123E3F 0%, transparent 55%),
              var(--ink);
  color: #fff;
  padding: clamp(84px, 11vw, 150px) 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  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: 56px 56px;
  mask-image: radial-gradient(900px 540px at 60% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 540px at 60% 20%, #000 30%, transparent 75%);
}
.hero h1 { color: #fff; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.orb-teal { width: 480px; height: 480px; background: #1FA8A0; top: -160px; right: -120px; animation: drift 16s ease-in-out infinite alternate; }
.orb-indigo { width: 420px; height: 420px; background: #4A489D; bottom: -180px; left: -140px; animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(50px, 36px) scale(1.12); } }

.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy .lead { margin-bottom: 34px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(81, 217, 193, .12); border: 1px solid rgba(81, 217, 193, .35);
  color: var(--teal-bright); border-radius: 999px; padding: 8px 18px;
  font-family: var(--font-display); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; margin-bottom: 26px;
}
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 12px var(--teal-bright); }

/* hero visual — dashboard mock */
.hero-visual { position: relative; }
.dash {
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 26px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 40px 90px rgba(0,0,0,.42);
}
.dash-head { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.dash-head .dots { display: flex; gap: 6px; }
.dash-head .dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.2); }
.dash-head span { margin-left: auto; font-size: .75rem; color: #9F9EC4; font-family: var(--font-display); }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 14px; }
.kpi b { display: block; font-family: var(--font-display); font-size: 1.25rem; color: #fff; }
.kpi span { font-size: .72rem; color: #9F9EC4; }
.kpi .up { color: var(--teal-bright); font-size: .72rem; font-weight: 600; }
.dash-chart { display: flex; align-items: flex-end; gap: 9px; height: 120px; padding: 14px; background: rgba(255,255,255,.05); border-radius: 14px; }
.dash-chart i { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--teal-bright), rgba(74, 72, 157, .65)); opacity: .9; animation: grow 1.2s cubic-bezier(.2, .7, .3, 1) both; }
@keyframes grow { from { transform: scaleY(.15); } to { transform: scaleY(1); } }
.dash-chart i:nth-child(1) { height: 42%; animation-delay: .10s }
.dash-chart i:nth-child(2) { height: 58%; animation-delay: .18s }
.dash-chart i:nth-child(3) { height: 40%; animation-delay: .26s }
.dash-chart i:nth-child(4) { height: 72%; animation-delay: .34s }
.dash-chart i:nth-child(5) { height: 55%; animation-delay: .42s }
.dash-chart i:nth-child(6) { height: 86%; animation-delay: .50s }
.dash-chart i:nth-child(7) { height: 68%; animation-delay: .58s }
.dash-chart i:nth-child(8) { height: 100%; animation-delay: .66s }
.float-card {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px;
  padding: 12px 16px; font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 9px;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card .ic { width: 26px; height: 26px; border-radius: 8px; background: var(--mint); display: grid; place-items: center; color: var(--teal-deep); font-size: .8rem; }
.fc-1 { top: -22px; right: 8%; }
.fc-2 { bottom: -20px; left: -4%; animation-delay: 2.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* hero stats band */
.hero-stats {
  position: relative; margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hstat { padding: 26px 18px; text-align: center; border-left: 1px solid rgba(255,255,255,.10); }
.hstat:first-child { border-left: 0; }
.hstat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; }
.hstat b em { font-style: normal; color: var(--teal-bright); }
.hstat span { font-size: .82rem; color: #9F9EC4; letter-spacing: .04em; }

.hero-grid > * { min-width: 0; }
@media (max-width: 560px) {
  .hero-chip { font-size: .68rem; letter-spacing: .02em; padding: 7px 13px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hstat:nth-child(3) { border-left: 0; }
  .hstat { border-top: 1px solid rgba(255,255,255,.10); }
  .hstat:nth-child(-n+2) { border-top: 0; }
}

/* ---------- marquee ---------- */
.marquee-section { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.marquee-label { text-align: center; font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); margin-bottom: 18px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  color: #A7B4B1; white-space: nowrap; letter-spacing: .02em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- cards & grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity .3s ease;
}
.card:hover::after { opacity: 1; }
.card h3 { margin-top: 18px; font-size: 1.14rem; }
.card p { font-size: .95rem; color: var(--text-light); margin: 0; }
.card .arrow-link { margin-top: 14px; font-size: .9rem; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--mint); color: var(--teal-deep);
}
.icon-badge svg { width: 26px; height: 26px; }

.section-head { margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head.split .lead { margin-bottom: 0; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.bento-item {
  border-radius: var(--radius-lg); padding: 36px 32px; position: relative; overflow: hidden;
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-item h3 { font-size: 1.3rem; }
.bento-item p { color: var(--text-light); font-size: .98rem; margin: 0; }
.b-7 { grid-column: span 7; }
.b-5 { grid-column: span 5; }
.b-dark { background: var(--ink); border-color: transparent; }
.b-dark h3 { color: #fff; }
.b-dark p { color: #B9B8D9; }
.b-mint { background: var(--mint); }
.b-grad { background: var(--grad); border-color: transparent; }
.b-grad h3, .b-grad p { color: #fff; }
.bento-metric { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--teal-bright); line-height: 1; margin-bottom: 12px; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.bento-tags span {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.6); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px; color: var(--ink);
}
.b-dark .bento-tags span { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #D5D4EE; }
@media (max-width: 880px) { .b-7, .b-5 { grid-column: span 12; } }

/* ---------- cert chips ---------- */
.cert-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 24px;
  box-shadow: var(--shadow);
}
.cert-chip .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: .7rem; }

/* ---------- numbered steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step::before {
  content: "0" counter(step); font-family: var(--font-display); font-weight: 800;
  font-size: 2.2rem; background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: .93rem; color: var(--text-light); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ---------- process timeline ---------- */
.process { position: relative; max-width: 820px; margin: 0 auto; }
.process::before { content: ""; position: absolute; left: 25px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--teal), var(--indigo)); border-radius: 2px; }
.process-item { position: relative; padding: 0 0 34px 76px; }
.process-item:last-child { padding-bottom: 0; }
.process-item .n {
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 2px solid var(--teal); color: var(--teal-deep);
  font-family: var(--font-display); font-weight: 700; display: grid; place-items: center;
}
.process-item h3 { font-size: 1.12rem; margin-bottom: 4px; }
.process-item p { color: var(--text-light); font-size: .96rem; margin: 0; }

/* ---------- story timeline ---------- */
.timeline { display: grid; gap: 0; max-width: 760px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 110px 40px 1fr; align-items: flex-start; }
.tl-year { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--indigo); text-align: right; padding-top: 2px; }
.tl-line { position: relative; display: flex; justify-content: center; }
.tl-line::before { content: ""; position: absolute; top: 8px; bottom: -8px; width: 2px; background: var(--line); }
.tl-item:last-child .tl-line::before { display: none; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--grad); position: relative; z-index: 1; margin-top: 8px; box-shadow: 0 0 0 5px var(--mint); }
.tl-body { padding: 0 0 40px 10px; }
.tl-body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.tl-body p { color: var(--text-light); font-size: .95rem; margin: 0; }

/* ---------- case study cards ---------- */
.cs-card {
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: var(--radius-lg); padding: 34px 30px; min-height: 320px;
  background: var(--ink); color: #fff; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cs-card::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  filter: blur(70px); opacity: .5; right: -120px; top: -120px;
  background: var(--cs-glow, var(--indigo));
}
.cs-card .tag { position: relative; font-family: var(--font-display); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-bright); }
.cs-card h3 { position: relative; color: #fff; font-size: 1.3rem; margin: 12px 0 8px; }
.cs-card p { position: relative; color: #B9B8D9; font-size: .92rem; }
.cs-metric { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--teal-bright); margin-top: 16px; }
.cs-metric small { display: block; font-size: .78rem; font-weight: 600; color: #9F9EC4; letter-spacing: .04em; }
.cs-card .arrow-link { position: relative; color: #fff; margin-top: 18px; }

/* ---------- testimonials ---------- */
.t-carousel { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 22px; scrollbar-width: thin; }
.t-card {
  flex: 0 0 min(480px, 86vw); scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.t-card .stars { color: #F5B301; letter-spacing: 2px; margin-bottom: 14px; font-size: .95rem; }
.t-card blockquote { margin: 0 0 22px; font-size: 1.02rem; color: var(--text); flex: 1; }
.t-who { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff; font-family: var(--font-display);
  font-weight: 700; display: grid; place-items: center; font-size: .95rem;
}
.t-who b { font-family: var(--font-display); color: var(--ink); font-size: .95rem; display: block; }
.t-who span { font-size: .82rem; color: var(--text-light); }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(800px 420px at 85% -20%, #24215C 0%, transparent 60%),
              radial-gradient(700px 420px at -10% 130%, #123E3F 0%, transparent 55%),
              var(--ink);
  padding: clamp(70px, 9vw, 110px) 0;
}
.page-hero h1 { color: #fff; max-width: 17em; }
.page-hero .lead { color: #B9B8D9; }
.breadcrumb { font-size: .84rem; color: #9F9EC4; margin-bottom: 22px; font-family: var(--font-display); }
.breadcrumb a { color: var(--teal-bright); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- stats (light) ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card { text-align: center; background: var(--mint); border-radius: var(--radius-lg); padding: 40px 20px; }
.stat-card b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); }
.stat-card b em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card span { color: var(--text-light); font-size: .95rem; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 900px; margin: 0 auto; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 36px; position: relative; }
.price-card.featured { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box; box-shadow: var(--shadow-lg); }
.price-card .plan { font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; font-size: .84rem; text-transform: uppercase; color: var(--teal-deep); }
.price-card .amount { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--ink); margin: 14px 0 2px; }
.price-card .amount small { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.price-card .per { color: var(--text-light); font-size: .9rem; margin-bottom: 22px; }
.price-card ul { list-style: none; margin: 0 0 28px; padding: 0; }
.price-card li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 9px; width: 20px; height: 20px; border-radius: 50%; background: var(--mint); color: var(--teal-deep); font-size: .7rem; display: grid; place-items: center; font-weight: 700; }
.badge-pop { position: absolute; top: -14px; right: 28px; background: var(--grad); color: #fff; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .08em; padding: 7px 15px; border-radius: 999px; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 56px 22px 26px; position: relative;
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--mint); color: var(--teal-deep);
  display: grid; place-items: center; font-weight: 700; transition: transform .25s ease;
}
.faq details[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); }
.faq details p { padding: 0 26px 22px; margin: 0; color: var(--text-light); font-size: .97rem; }

/* ---------- metric tiles (case study results) ---------- */
.metric-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.metric-tile { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; position: relative; overflow: hidden; }
.metric-tile::before { content: ""; position: absolute; inset: auto -40px -60px auto; width: 180px; height: 180px; border-radius: 50%; background: var(--indigo); filter: blur(60px); opacity: .55; }
.metric-tile b { position: relative; display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--teal-bright); }
.metric-tile span { position: relative; font-size: .88rem; color: #B9B8D9; }
@media (max-width: 880px) { .metric-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .metric-tiles { grid-template-columns: 1fr; } }

/* ---------- case study article ---------- */
.cs-body { max-width: 780px; margin: 0 auto; }
.cs-body h2 { margin-top: 1.8em; }
.pull-quote {
  border-left: 4px solid; border-image: var(--grad) 1;
  background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px 34px; margin: 40px 0; font-size: 1.12rem; color: var(--ink);
}
.pull-quote footer { margin-top: 14px; font-size: .9rem; color: var(--text-light); font-family: var(--font-display); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.cta-band .orb-teal { opacity: .35; }
.cta-band .orb-indigo { opacity: .4; }
.cta-band h2 { color: #fff; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.cta-info .lead { margin-bottom: 30px; }
.cta-list { list-style: none; padding: 0; margin: 0 0 34px; }
.cta-list li { padding: 8px 0 8px 34px; position: relative; color: #D5D4EE; }
.cta-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px; border-radius: 50%; background: rgba(81,217,193,.15); color: var(--teal-bright); font-size: .72rem; display: grid; place-items: center; font-weight: 700; }
.cta-contacts { display: flex; flex-direction: column; gap: 10px; font-family: var(--font-display); font-weight: 600; }
.cta-contacts a { color: #fff; display: inline-flex; gap: 10px; align-items: center; }
.cta-contacts a:hover { color: var(--teal-bright); }
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } }

/* ---------- form ---------- */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 38px 34px; color: var(--text); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.form-card h3 { font-size: 1.35rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-display); font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--bg-soft); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(43,197,180,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: 14px; }
.form-card .btn { width: 100%; margin-top: 8px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- app grid (what is odoo) ---------- */
.app-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.app-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 10px; text-align: center; font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.app-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal); }
.app-chip .em { display: block; font-size: 1.5rem; margin-bottom: 8px; }
@media (max-width: 980px) { .app-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px) { .app-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- offices ---------- */
.office-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow); }
.office-card .flag { font-size: 1.8rem; margin-bottom: 12px; }
.office-card h3 { margin-bottom: 6px; }
.office-card p { color: var(--text-light); font-size: .95rem; margin-bottom: 6px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #B9B8D9; padding: clamp(56px, 7vw, 84px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr; gap: 38px; padding-bottom: 54px; }
.footer-brand p { font-size: .92rem; margin-top: 18px; }
.footer-badge { font-family: var(--font-display); font-size: .8rem !important; font-weight: 600; color: var(--teal-bright) !important; }
.site-footer .brand-name { color: var(--teal-bright); }
.site-footer .brand-sub { color: #8f8ec9; }
.site-footer h2 { color: #fff; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 11px; }
.site-footer a { color: #B9B8D9; font-size: .94rem; }
.site-footer a:hover { color: var(--teal-bright); }
.footer-offices p { font-size: .88rem; line-height: 1.7; }
.footer-offices strong { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; padding-bottom: 26px;
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- soft sections ---------- */
.section-soft { background: var(--bg-soft); }
.section-mint { background: var(--mint); }
.section-dark { background: var(--ink); color: #B9B8D9; }
.section-dark h2, .section-dark h3 { color: #fff; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

@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 { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ---------- 404 ---------- */
.nf { min-height: 55vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.nf b { font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 14vw, 9rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; }

/* ============================================================
   V3 LAYER — IMMERSIVE DARK + 3D
   Full-dark neon theme over the v1 system, WebGL hero, glass
   surfaces, glow accents, 3D tilt depth everywhere.
   ============================================================ */

:root {
  --bg: #07071A;
  --bg-soft: #0C0C24;
  --mint: rgba(43, 197, 180, .10);
  --ink: #EDEDFF;                     /* headings become light */
  --text: #C3C2DE;
  --text-light: #9A99BE;
  --line: rgba(255, 255, 255, .10);
  --surface: #10102D;
  --surface-2: #14143A;
  --neon: 0 0 24px rgba(43, 197, 180, .35);
  --shadow: 0 10px 34px rgba(0, 0, 0, .5);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, .6);
}

body { background: var(--bg); color: var(--text); }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(74, 72, 157, .22) 0%, transparent 60%),
    radial-gradient(800px 560px at -10% 40%, rgba(31, 168, 160, .12) 0%, transparent 55%),
    radial-gradient(700px 500px at 60% 110%, rgba(74, 72, 157, .16) 0%, transparent 60%);
}
::selection { background: var(--teal); color: #07071A; }
a { color: var(--teal-bright); }
a:hover { color: #fff; }

/* ---------- header: dark glass ---------- */
.site-header { background: rgba(7, 7, 26, .7); }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.site-nav a { color: var(--ink); }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(43,197,180,.12); color: var(--teal-bright); }
.site-nav ul.submenu { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-lg), var(--neon); }
.nav-phone { color: var(--ink); }
.nav-toggle span { background: var(--ink); }
.mobile-menu { background: var(--bg-soft); border-color: var(--line); }
.mobile-menu li a { color: var(--ink); border-color: var(--line); }
.brand-name { color: var(--teal-bright); }
.brand-sub { color: #8f8ec9; }

/* ---------- WebGL hero ---------- */
.hero-3d { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; }
#webgl { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-3d .container.hero-grid, .hero-3d .hero-stats { position: relative; z-index: 2; }
.hero { background: transparent; }
.hero::before { opacity: .5; }
.hero-copy { text-shadow: 0 2px 30px rgba(7, 7, 26, .8); }
.dash {
  background: linear-gradient(160deg, rgba(20, 20, 58, .75), rgba(16, 16, 45, .55));
  border-color: rgba(43, 197, 180, .25);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), var(--neon);
}

/* ---------- glow buttons ---------- */
.btn-primary { box-shadow: 0 10px 30px rgba(43,197,180,.4), 0 0 0 1px rgba(81,217,193,.4) inset; }
.btn-primary:hover { box-shadow: 0 16px 44px rgba(43,197,180,.55), var(--neon); }
.btn-ghost { box-shadow: inset 0 0 0 2px rgba(255,255,255,.22); color: var(--ink) !important; }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--teal-bright), var(--neon); }

/* ---------- surfaces go glass ---------- */
.card, .t-card, .office-card, .price-card, .step, .app-chip, .cert-chip, .form-card,
.faq details, .stat-card, .kpi, .float-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: var(--line);
  color: var(--text);
}
.card h3, .t-card blockquote, .office-card h3, .price-card .amount, .step h3,
.faq summary, .t-who b, .stat-card b, .form-card h3, .process-item h3, .tl-body h3 { color: var(--ink); }
.card:hover { border-color: rgba(43,197,180,.5); box-shadow: var(--shadow-lg), var(--neon); }
.icon-badge { background: rgba(43,197,180,.12); color: var(--teal-bright); }
.card:hover .icon-badge { background: var(--grad); color: #fff; }
.t-avatar { box-shadow: 0 0 0 3px var(--surface), 0 0 0 5px var(--teal); }
.float-card { color: var(--ink); }
.float-card .ic { background: rgba(43,197,180,.15); color: var(--teal-bright); }

.section-soft { background: transparent; }
.section-mint { background: rgba(43,197,180,.05); }
.marquee-section { background: rgba(255,255,255,.02); border-color: var(--line); }
.marquee-track span { color: #4B4A78; }
.marquee:hover .marquee-track span { color: var(--teal-bright); }

.bento-item { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border-color: var(--line); }
.bento-item h3 { color: var(--ink); }
.bento-item:hover { box-shadow: var(--shadow-lg), var(--neon); }
.bento-tags span { background: rgba(255,255,255,.06); border-color: var(--line); color: var(--text); }
.b-mint { background: linear-gradient(160deg, rgba(31,168,160,.25), rgba(31,168,160,.08)); }
.b-grad { background: var(--grad); }
.b-dark { background: #05051426; background: rgba(5,5,20,.6); }

.cert-chip { box-shadow: none; }
.cert-chip:hover { box-shadow: var(--neon); border-color: rgba(43,197,180,.5); }

.steps .step::before { filter: drop-shadow(0 0 12px rgba(81,217,193,.5)); }
.process::before { background: linear-gradient(180deg, var(--teal), var(--indigo)); box-shadow: var(--neon); }
.process-item .n { background: var(--surface); border-color: var(--teal); color: var(--teal-bright); }
.process-item p, .tl-body p { color: var(--text-light); }
.tl-dot { box-shadow: 0 0 0 5px rgba(43,197,180,.15), 0 0 18px rgba(81,217,193,.6); }
.tl-line::before { background: var(--line); }

.pull-quote { background: var(--surface); color: var(--ink); }
.cs-body h2, .section-head h2, h2, h3 { color: var(--ink); }
.faq details p { color: var(--text-light); }
.faq summary::after { background: rgba(43,197,180,.12); color: var(--teal-bright); }

.price-card.featured { background: linear-gradient(var(--surface-2), var(--surface-2)) padding-box, var(--grad) border-box; box-shadow: var(--shadow-lg), var(--neon); }
.price-card li { border-color: var(--line); color: var(--text); }
.price-card li::before { background: rgba(43,197,180,.15); color: var(--teal-bright); }
.price-card .per { color: var(--text-light); }

.field label { color: var(--ink); }
.field input, .field textarea { background: rgba(255,255,255,.05); border-color: var(--line); color: var(--ink); }
.field input:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(43,197,180,.18), var(--neon); background: rgba(255,255,255,.08); }
.form-card { box-shadow: var(--shadow-lg), var(--neon); }
.cta-band .form-card, .form-card { border: 1px solid rgba(43,197,180,.3); }

.app-chip:hover { border-color: var(--teal); box-shadow: var(--neon); }
.stat-card::before { content: ""; position: absolute; inset: auto -40px -60px auto; width: 160px; height: 160px; border-radius: 50%; background: var(--indigo); filter: blur(60px); opacity: .5; }
.stat-card { position: relative; overflow: hidden; }
.stat-card b em { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card span { color: var(--text-light); }

.metric-tile { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); }
.metric-tile:hover { box-shadow: var(--shadow-lg), var(--neon); transform: translateY(-5px); }

.cs-card { border: 1px solid var(--line); background: var(--surface); }
.cs-card:hover { box-shadow: var(--shadow-lg), var(--neon); }

.page-hero { background: radial-gradient(800px 420px at 85% -20%, #24215C 0%, transparent 60%), radial-gradient(700px 420px at -10% 130%, #123E3F 0%, transparent 55%), var(--bg); }
.cta-band { background: var(--bg-soft); }
.site-footer { background: #050514; }

/* ---------- 3D tilt cards (JS drives --rx/--ry) ---------- */
.tilt { transform-style: preserve-3d; transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0)); transition: box-shadow .3s ease; will-change: transform; }
.tilt > * { transform: translateZ(18px); }

/* ---------- neon divider between sections ---------- */
main > section + section { position: relative; }

@media (prefers-reduced-motion: reduce) {
  #webgl { display: none; }
}

/* v3 fixes: components that used --ink as a *background* */
.topbar { background: #050514; }
.skip-link { background: #050514; }

/* v3 on Odoo: native website_form styled for the dark theme */
.v3-odoo-form .form-control, .v3-odoo-form .form-select {
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line);
  color: var(--ink); border-radius: 12px; padding: 12px 14px;
}
.v3-odoo-form .form-control:focus { background: rgba(255,255,255,.08); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(43,197,180,.18); color: var(--ink); }
.v3-odoo-form .form-control::placeholder { color: var(--text-light); }
.v3-odoo-form .s_website_form_label, .v3-odoo-form label { color: var(--ink); font-family: var(--font-display); font-size: .85rem; font-weight: 600; }
.v3-odoo-form .s_website_form_mark { color: var(--teal-bright); }

/* v3 on Odoo: Bootstrap adds ::before/::after to .container (clearfix),
   which becomes a phantom first grid/flex item and shifts every cell.
   Remove it from our grid/flex containers. */
.hero-grid::before, .hero-grid::after,
.cta-grid::before, .cta-grid::after,
.footer-grid::before, .footer-grid::after,
.hero-stats .container::before, .hero-stats .container::after,
.nav-wrap::before, .nav-wrap::after,
.footer-bottom::before, .footer-bottom::after,
.topbar .container::before, .topbar .container::after { content: none !important; }

/* fix: .section-dark missed the V3 dark-layer override — the base layer paints
   it with --ink, which the dark layer flips to near-white (#EDEDFF) */
.section-dark { background: var(--bg-soft); }

/* ---------- clientele sector panels ---------- */
.client-sector-head { display: flex; align-items: center; gap: 12px; }
.client-sector-head .em { font-size: 1.5rem; }
.client-sector-head h3 { margin: 0; font-size: 1.15rem; flex: 1; }
.client-sector-head .count {
  font-family: var(--font-display); font-size: .8rem; font-weight: 700;
  color: var(--teal-bright); background: rgba(43,197,180,.12);
  border-radius: 999px; padding: 3px 11px;
}
.client-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.client-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  border-bottom: 1px solid var(--line); padding-bottom: 10px; font-size: .95rem;
}
.client-list li:last-child { border-bottom: none; padding-bottom: 0; }
.client-list strong { color: var(--ink); font-weight: 600; }
.client-list span { color: var(--text-light); text-align: right; }
