/* ============================================================
   LANIAKEA CLOUD SERVICES — Design System
   Theme: Blueprint (engineering-forward) + Horizon contrast blocks
   ============================================================ */

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

:root {
  --bg:           #0F172A;  /* slate-900 */
  --bg-2:         #0B1220;  /* darker variant */
  --surface:      #1E293B;  /* slate-800 */
  --surface-2:    #172033;
  --surface-hover:#334155;  /* slate-700 */
  --text-1:       #F1F5F9;  /* slate-100 */
  --text-2:       #94A3B8;  /* slate-400 */
  --text-3:       #64748B;  /* slate-500 */
  --sky:          #38BDF8;  /* primary accent */
  --sky-d:        #0EA5E9;
  --cyan:         #22D3EE;
  --green:        #4ADE80;
  --amber:        #F59E0B;  /* CTA */
  --amber-d:      #D97706;
  --red:          #F87171;
  --border:       rgba(148,163,184,0.10);
  --border-2:     rgba(148,163,184,0.18);
  --grid:         rgba(148,163,184,0.05);
  --stone-900:    #1C1917;  /* horizon dark contrast section */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}
/* Subtle engineering grid pattern on background */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
}

.mono { font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', ui-monospace, monospace; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
#nav.scrolled { border-bottom-color: var(--border); background: rgba(15,23,42,0.95); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 10px rgba(56,189,248,0.6);
  flex-shrink: 0;
}
.logo-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--text-1); display: block;
}
.logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-3);
  display: block; margin-top: 1px;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn-amber):not(.btn-sky):not(.btn-nav) {
  color: var(--text-2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a:not(.btn-amber):not(.btn-sky):not(.btn-nav):hover { color: var(--text-1); }
.nav-links a.active:not(.btn-amber):not(.btn-sky):not(.btn-nav) { color: var(--text-1); }
.nav-links a.active:not(.btn-amber):not(.btn-sky):not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--sky); border-radius: 1px;
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: default; }
.drop-caret { transition: transform .2s; }
.nav-dropdown:hover .drop-caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(15,23,42,0.98);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 300;
  box-shadow: 0 20px 48px rgba(0,0,0,.5);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(56,189,248,0.08); color: var(--text-1); }
.dropdown-menu a::after { display: none !important; }
.dropdown-item-icon {
  width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dropdown-item-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.di-cloud { background: rgba(56,189,248,0.12); color: var(--sky); }
.di-odoo  { background: rgba(74,222,128,0.12); color: var(--green); }
.di-ai    { background: rgba(34,211,238,0.12); color: var(--cyan); }

/* ── BUTTONS ── */
.btn-amber {
  background: var(--amber); color: var(--bg);
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.2);
}
.btn-amber:hover { background: var(--amber-d); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,158,11,0.3); }
.btn-amber.large { padding: 14px 28px; font-size: 15px; border-radius: 8px; }

.btn-sky {
  background: var(--sky); color: var(--bg);
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-sky:hover { background: #7DD3FC; transform: translateY(-1px); }
.btn-sky.large { padding: 14px 28px; font-size: 15px; border-radius: 8px; }

.btn-ghost {
  color: var(--text-2); background: transparent;
  border: 1px solid var(--surface-hover);
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--text-1); background: rgba(56,189,248,0.05); }
.btn-ghost.large { padding: 14px 28px; font-size: 15px; border-radius: 8px; }

.btn-nav {
  background: var(--amber); color: var(--bg);
  padding: 9px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--amber-d); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 140px 80px 80px;
  position: relative; z-index: 1;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at center right, rgba(56,189,248,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; z-index: 2; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  color: var(--sky); margin-bottom: 22px; display: block;
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 800; letter-spacing: -2.2px; line-height: 1.04;
  margin-bottom: 26px; color: var(--text-1);
}
.hero h1 .sky { color: var(--sky); }
.hero h1 .amber { color: var(--amber); }

.cursor {
  display: inline-block; width: 3px; height: 0.85em; background: var(--sky);
  margin-left: 4px; vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.7;
  max-width: 560px; margin-bottom: 38px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (for non-home pages) */
.page-hero {
  padding: 140px 80px 70px;
  position: relative; z-index: 1;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 20% 30%, rgba(56,189,248,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.06;
  margin-bottom: 20px; color: var(--text-1);
}
.page-hero h1 .sky { color: var(--sky); }
.page-hero-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.7;
  max-width: 640px; margin-bottom: 32px;
}
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── METRICS DASHBOARD ── */
.metrics {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.m-cell { text-align: center; padding: 0 24px; }
.m-cell:not(:last-child) { border-right: 1px solid var(--border); }
.m-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.m-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.m-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(32px, 4vw, 44px); font-weight: 700;
  letter-spacing: -2px; line-height: 1;
  color: var(--text-1); margin-bottom: 8px;
}
.m-lbl { font-size: 13px; color: var(--text-2); font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 96px 80px; position: relative; z-index: 1; }
.section-alt { background: rgba(30,41,59,0.4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-h {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700; letter-spacing: -1.6px; line-height: 1.1;
  margin-bottom: 16px;
}
.section-h .sky { color: var(--sky); }
.section-h .amber { color: var(--amber); }
.section-p {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  max-width: 560px; margin-bottom: 56px;
}

/* ── CAPABILITY MATRIX ── */
.cap-matrix {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.cap-col { padding: 36px 32px; background: var(--surface); transition: background .2s; }
.cap-col:hover { background: var(--surface-hover); }
.cap-col:not(:last-child) { border-right: 1px solid var(--border); }
.cap-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 2px solid var(--sky);
}
.cap-col:nth-child(2) .cap-header { border-bottom-color: var(--green); color: var(--green); }
.cap-col:nth-child(3) .cap-header { border-bottom-color: var(--cyan); color: var(--cyan); }
.cap-col:nth-child(1) .cap-header { color: var(--sky); }
.cap-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2);
  padding: 9px 0; line-height: 1.5;
}
.cap-dot {
  width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.cap-col:nth-child(1) .cap-dot { background: var(--sky); }
.cap-col:nth-child(2) .cap-dot { background: var(--green); }
.cap-col:nth-child(3) .cap-dot { background: var(--cyan); }
.cap-cta { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.cap-cta a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.cap-col:nth-child(1) .cap-cta a { color: var(--sky); }
.cap-col:nth-child(2) .cap-cta a { color: var(--green); }
.cap-col:nth-child(3) .cap-cta a { color: var(--cyan); }
.cap-cta a:hover { gap: 10px; }

/* ── RESULTS (Horizon-style big numbers) ── */
.results-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.result-row {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 48px; align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.result-row:last-child { border-bottom: none; }
.result-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 5vw, 72px); font-weight: 700;
  letter-spacing: -3px; line-height: 1;
  color: var(--sky);
}
.result-row:nth-child(2) .result-num { color: var(--green); }
.result-row:nth-child(3) .result-num { color: var(--cyan); }
.result-row:nth-child(4) .result-num { color: var(--amber); }
.result-story {
  font-size: 18px; color: var(--text-1); line-height: 1.55;
  font-weight: 500;
}
.result-story .muted { color: var(--text-2); font-weight: 400; }

/* ── PROCESS VERTICAL TIMELINE ── */
.v-timeline { position: relative; padding-left: 52px; max-width: 720px; }
.v-timeline::before {
  content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(var(--sky), var(--cyan));
  border-radius: 2px;
}
.vt-step { position: relative; padding-bottom: 52px; }
.vt-step:last-child { padding-bottom: 0; }
.vt-dot {
  position: absolute; left: -52px; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--sky);
  display: flex; align-items: center; justify-content: center;
}
.vt-dot-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky);
}
.vt-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; color: var(--sky);
  margin-bottom: 10px; letter-spacing: 1px;
}
.vt-name {
  font-size: 22px; font-weight: 700;
  color: var(--text-1); margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.vt-desc {
  font-size: 15px; color: var(--text-2);
  line-height: 1.7; max-width: 560px;
}

/* ── TESTIMONIALS ── */
.t-featured {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--sky);
  border-radius: 8px; padding: 40px 36px;
  max-width: 780px; margin-bottom: 22px;
}
.t-featured .tquote {
  font-size: 18px; color: var(--text-1);
  line-height: 1.7; margin-bottom: 24px; font-weight: 400;
}
.tauthor { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.aname {
  font-size: 14px; font-weight: 700;
  color: var(--text-1);
}
.arole {
  font-size: 12px; color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 1px;
}

.t-small-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; max-width: 780px;
}
.t-small {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 8px; padding: 28px 26px;
  transition: border-color .2s, transform .2s;
}
.t-small:nth-child(2) { border-left-color: var(--cyan); }
.t-small:hover { transform: translateY(-2px); }
.t-small .tquote {
  font-size: 14px; color: var(--text-1);
  line-height: 1.65; margin-bottom: 18px;
}

/* ── HORIZON DARK CONTRAST SECTION ── */
.philosophy {
  background: var(--stone-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 110px 80px;
  position: relative; z-index: 1;
}
.philosophy-inner { max-width: 1100px; }
.philosophy .eyebrow { color: var(--amber); }
.philosophy h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -1.8px; line-height: 1.1;
  color: #fff; margin-bottom: 18px; max-width: 760px;
}
.philosophy h2 .amber { color: var(--amber); }
.philosophy-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 620px; margin-bottom: 60px;
}
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.phil-item { }
.phil-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 14px;
}
.phil-name {
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.phil-desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  padding: 110px 80px;
  text-align: center;
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-h {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700; letter-spacing: -1.6px;
  margin-bottom: 18px; line-height: 1.1;
}
.cta-h .sky { color: var(--sky); }
.cta-h .amber { color: var(--amber); }
.cta-p {
  font-size: 17px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CTA strip (thinner, used on interior pages) */
.cta-strip {
  padding: 72px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700; letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.cta-strip h2 .sky { color: var(--sky); }
.cta-strip p {
  font-size: 16px; color: var(--text-2);
  max-width: 560px; margin: 0 auto 28px;
}
.cta-strip .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 80px 40px;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px; margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-1);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px; color: var(--text-3);
  text-decoration: none; transition: color .2s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--sky); }

.footer-social { display: flex; gap: 14px; margin-top: 10px; }
.footer-social a { color: var(--text-3); transition: color .2s; }
.footer-social a:hover { color: var(--sky); }

.footer-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 13px; color: var(--text-3); font-family: 'JetBrains Mono', monospace; }

/* ── SCROLL ANIMATIONS ── */
.fu { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER MOBILE NAV ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 8px;
  background: transparent; border: none;
  z-index: 250; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-1); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 210;
  flex-direction: column; padding: 100px 32px 48px;
  gap: 4px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-1); font-size: 22px; font-weight: 700;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: color .15s;
}
.mobile-nav a:hover { color: var(--sky); }
.mobile-nav .mob-sub {
  font-size: 15px; font-weight: 500;
  color: var(--text-2);
  padding: 12px 0 12px 16px;
  font-family: 'JetBrains Mono', monospace;
}
.mobile-nav .mob-cta {
  margin-top: 24px;
  background: var(--amber); color: var(--bg) !important;
  border-radius: 6px; padding: 16px 24px !important;
  text-align: center; font-size: 16px !important;
  border-bottom: none !important;
  font-family: 'Inter', sans-serif !important;
}

/* ── PAGE HERO STATS ROW ── */
.page-hero-stats {
  display: flex; gap: 56px; margin-top: 36px; flex-wrap: wrap;
}
.phs-item { }
.phs-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px; font-weight: 700; letter-spacing: -1.2px;
  color: var(--sky); line-height: 1;
}
.phs-lbl {
  font-size: 12px; color: var(--text-3);
  margin-top: 6px; font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ── SERVICE LIST (services.html, ai.html) ── */
.svc-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; background: var(--surface);
}
.svc-item {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 40px; padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.svc-item:last-child { border-bottom: none; }
.svc-item:hover { background: rgba(30,41,59,0.8); }
.svc-left { display: flex; flex-direction: column; gap: 14px; }
.svc-item .svc-icon {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.svc-item .svc-icon svg {
  width: 22px; height: 22px; stroke: currentColor;
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-title {
  font-size: 19px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.4px;
  line-height: 1.25;
}
.svc-tag {
  display: inline-block; align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.svc-right { display: flex; flex-direction: column; gap: 16px; }
.svc-desc {
  font-size: 15px; color: var(--text-2);
  line-height: 1.7;
}
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--text-3);
  background: rgba(148,163,184,0.08);
  border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 4px;
}

/* ── FAQ ── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-wrap .section-h { text-align: center; margin-bottom: 40px; }
.faq-list {
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none;
  color: var(--text-1); font-size: 16px; font-weight: 600;
  cursor: pointer; text-align: left;
  padding: 22px 28px; font-family: inherit;
  transition: background .15s;
}
.faq-q:hover { background: rgba(148,163,184,0.04); }
.faq-q .faq-icon {
  color: var(--sky); font-size: 22px; font-weight: 300;
  transition: transform .25s;
  font-family: 'JetBrains Mono', monospace;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  color: var(--text-2); font-size: 15px; line-height: 1.7;
}
.faq-a p { padding: 0 28px 22px; margin: 0; }

/* ── HERO SPLIT (odoo.html) ── */
.hero-split {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; padding: 140px 80px 90px;
  position: relative; z-index: 1;
  border-bottom: 1px solid var(--border);
}
.hero-split::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 40%, rgba(56,189,248,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-split > * { position: relative; z-index: 1; }
.hero-split h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.06;
  margin-bottom: 20px; color: var(--text-1);
}
.hero-split h1 .sky { color: var(--sky); }
.hero-split .hero-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  max-width: 560px; margin-bottom: 32px;
}
.hero-split .hs-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-split .hs-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 700; letter-spacing: -1px;
  color: var(--sky); line-height: 1;
}
.hero-split .hs-stat-lbl {
  font-size: 12px; color: var(--text-3); margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--sky); border-radius: 10px 10px 0 0;
}
.form-card-title {
  font-size: 22px; font-weight: 700; color: var(--text-1);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.form-card-sub {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px; color: var(--text-1);
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--sky);
  background: rgba(56,189,248,0.04);
}
.form-textarea { min-height: 90px; resize: vertical; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-submit {
  width: 100%;
  background: var(--amber); color: var(--bg);
  padding: 13px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--amber-d); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 12px; color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}
.form-trust svg {
  width: 14px; height: 14px; stroke: var(--green);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.form-success {
  display: none;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.form-success h3 {
  color: var(--green); font-size: 18px;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-2); font-size: 14px;
}

/* ── COMPARISON TABLE (odoo.html) ── */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-3);
  background: rgba(0,0,0,0.15);
  border-bottom: 2px solid var(--border);
}
.compare-table thead th.highlight {
  color: var(--sky);
  background: rgba(56,189,248,0.08);
  border-bottom-color: var(--sky);
}
.compare-table .row-label {
  color: var(--text-1);
  font-weight: 600;
}
.compare-table td.highlight {
  color: var(--text-1);
  background: rgba(56,189,248,0.05);
  font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-savings {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: var(--green);
  background: rgba(74,222,128,0.12);
  padding: 3px 8px; border-radius: 4px;
  margin-left: 8px;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ── MODULES GRID (odoo.html) ── */
.modules-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: background .2s, border-color .2s, transform .2s;
}
.module-card:hover {
  border-color: var(--surface-hover);
  transform: translateY(-2px);
}
.module-icon {
  font-size: 28px; margin-bottom: 12px;
  display: block;
}
.module-name {
  font-size: 15px; font-weight: 700;
  color: var(--text-1); margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.module-sub {
  font-size: 12px; color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}

/* ── SVC CARD GRID (odoo.html services, ai.html) ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: background .2s, border-color .2s, transform .2s;
  display: flex; flex-direction: column; gap: 14px;
}
.svc-card:hover {
  border-color: var(--surface-hover);
  transform: translateY(-2px);
}
.svc-card-icon {
  width: 42px; height: 42px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,189,248,.12); color: var(--sky);
}
.svc-card-icon svg {
  width: 20px; height: 20px; stroke: currentColor;
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-card-icon.di-green { background: rgba(74,222,128,.12); color: var(--green); }
.svc-card-icon.di-indigo { background: rgba(99,102,241,.12); color: #818CF8; }
.svc-card-icon.di-amber { background: rgba(245,158,11,.12); color: var(--amber); }
.svc-card-title {
  font-size: 17px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.3px;
}
.svc-card-desc {
  font-size: 14px; color: var(--text-2);
  line-height: 1.65; flex: 1;
}

/* ── ODOO CASE STUDIES ── */
.odoo-cases {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.odoo-case {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 28px 26px;
  transition: transform .2s, border-color .2s;
}
.odoo-case:hover { transform: translateY(-2px); }
.oc-industry {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 12px;
}
.oc-title {
  font-size: 18px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.3px;
  line-height: 1.3; margin-bottom: 12px;
}
.oc-desc {
  font-size: 14px; color: var(--text-2);
  line-height: 1.65; margin-bottom: 16px;
}
.oc-results { display: flex; flex-direction: column; gap: 8px; }
.oc-result {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-2);
}
.oc-result-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* ── REASON CARDS (odoo why community) ── */
.reason-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}
.reason-icon {
  width: 42px; height: 42px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,189,248,.12); color: var(--sky);
  margin-bottom: 16px;
}
.reason-icon svg {
  width: 20px; height: 20px; stroke: currentColor;
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.reason-icon.di-green { background: rgba(74,222,128,.12); color: var(--green); }
.reason-icon.di-indigo { background: rgba(99,102,241,.12); color: #818CF8; }
.reason-icon.di-amber { background: rgba(245,158,11,.12); color: var(--amber); }
.reason-title {
  font-size: 17px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.reason-body {
  font-size: 14px; color: var(--text-2);
  line-height: 1.7;
}

/* ── RELATED SOLUTIONS (cross-link section) ── */
.related-solutions {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
  display: flex; flex-direction: column; gap: 12px;
}
.related-card:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
  background: rgba(30,41,59,0.8);
}
.related-card .rc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sky);
}
.related-card .rc-title {
  font-size: 22px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.5px;
}
.related-card .rc-desc {
  font-size: 14px; color: var(--text-2);
  line-height: 1.65;
}
.related-card .rc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--sky);
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* ── ABOUT PAGE ── */
.story-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-text { display: flex; flex-direction: column; gap: 22px; }
.story-text p { font-size: 16px; color: var(--text-2); line-height: 1.8; }

.story-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
.story-side::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--sky);
}
.story-side-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--sky); text-transform: uppercase;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.story-side-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.story-side-list { display: flex; flex-direction: column; gap: 18px; }
.story-side-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.story-side-row:last-child { padding-bottom: 0; border-bottom: none; }
.story-side-key {
  font-size: 13px; color: var(--text-2); font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}
.story-side-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px; font-weight: 700;
  color: var(--sky);
  letter-spacing: -0.5px;
}

/* Differentiators grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.diff-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.diff-item:nth-child(2n) { border-right: none; }
.diff-item:nth-child(n+3) { border-bottom: none; }
.diff-item:hover { background: var(--surface-hover); }
.diff-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sky);
  margin-bottom: 14px;
}
.diff-title {
  font-size: 18px; font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.diff-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* History timeline (year → event) */
.history-tl {
  display: flex; flex-direction: column;
  max-width: 880px;
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}
.history-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 40px;
  padding: 24px 0;
  align-items: start;
  position: relative;
}
.history-item::before {
  content: ''; position: absolute;
  left: -33px; top: 32px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 3px var(--bg), 0 0 10px rgba(56,189,248,0.5);
}
.history-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.history-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--sky);
  text-transform: uppercase;
  padding-top: 2px;
}
.history-content {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 56px 100px;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 24px;
  position: relative;
}
.sidebar-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sky);
}
.sidebar-section h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-section h3::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}
.timeline-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.4);
  color: var(--sky);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}
.timeline-content p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}
.badge-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.badge-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
}
.badge-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--green);
  stroke-width: 3;
}
.badge-text {
  font-size: 13px;
  color: var(--text-2);
}
.quote-card {
  background: var(--bg-2, #0B1220);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 24px 26px;
}
.quote-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.quote-attr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.4px;
}

/* ── CASE STUDIES (work.html) ── */
.case-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.case-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: border-color .2s;
}
.case-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sky);
}
.case-item:hover { border-color: rgba(56,189,248,0.35); }
.case-left {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 1px solid var(--border);
}
.case-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}
.case-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--text-1);
  margin-bottom: 14px;
}
.case-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--text-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 4px;
}
.case-right {
  padding: 40px 36px;
  background: var(--bg-2, #0B1220);
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  height: 100%;
  align-content: center;
}
.case-stat {
  border-left: 2px solid var(--sky);
  padding-left: 14px;
}
.case-stat:nth-child(2) { border-left-color: var(--amber); }
.case-stat:nth-child(3) { border-left-color: var(--green); }
.case-stat:nth-child(4) { border-left-color: var(--cyan); }
.case-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.case-stat-lbl {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── BLOG INDEX (blog.html) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 56px 100px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  border-radius: 8px 8px 0 0;
  transition: background .2s;
}
.blog-card:hover {
  border-color: rgba(56,189,248,0.35);
  transform: translateY(-2px);
}
.blog-card:hover::before { background: var(--sky); }
.blog-card.blog-featured {
  grid-column: 1 / -1;
  padding: 40px 44px 36px;
}
.blog-card.blog-featured::before {
  background: var(--sky);
}
.blog-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  align-self: flex-start;
  border: 1px solid transparent;
}
.cat-odoo { color: var(--green); background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.25); }
.cat-cloud { color: var(--sky); background: rgba(56,189,248,0.08); border-color: rgba(56,189,248,0.25); }
.cat-aws { color: var(--amber); background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.3); }
.cat-ai { color: var(--cyan); background: rgba(34,211,238,0.08); border-color: rgba(34,211,238,0.25); }
.cat-iac { color: var(--accent-2, #A78BFA); background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.25); }
.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-1);
  letter-spacing: -0.3px;
  margin: 0;
}
.blog-featured .blog-card-title {
  font-size: 28px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.blog-featured .blog-card-excerpt {
  font-size: 16px;
  max-width: 860px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.3px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.blog-card-meta .blog-card-read {
  margin-left: auto;
  color: var(--sky);
  font-weight: 600;
  transition: transform .2s;
}
.blog-card:hover .blog-card-read { transform: translateX(4px); }

/* ── LANDING PAGE (aws-cost-audit, db2-migration-assessment) ── */
.landing-top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.landing-top-bar a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.landing-hero {
  padding: 140px 56px 72px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.landing-hero h1 {
  font-size: clamp(36px, 5.5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 20px;
}
.landing-hero p.lh-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 44px;
}
.landing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.landing-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sky);
}
.landing-stat {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0 16px;
}
.landing-stat:last-child { border-right: none; }
.landing-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.landing-stat-lbl {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

/* 3-col feature grid (pain / how / what-you-get / trust) */
.landing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.landing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px 28px;
  position: relative;
}
.landing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}
.landing-card.lc-sky::before { background: var(--sky); }
.landing-card.lc-amber::before { background: var(--amber); }
.landing-card.lc-green::before { background: var(--green); }
.landing-card.lc-cyan::before { background: var(--cyan); }
.landing-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.landing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.landing-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* 2-col checklist grid */
.landing-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.landing-check-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.landing-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.landing-check-icon svg {
  width: 12px; height: 12px;
  stroke: var(--green);
  stroke-width: 3;
  fill: none;
}
.landing-check-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
}
.landing-check-text span {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 3px;
}

.landing-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.landing-form-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 20px;
  letter-spacing: 0.3px;
}

.landing-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  flex-wrap: wrap;
}
.landing-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-2);
  text-transform: uppercase;
}
.landing-trust-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(74,222,128,0.6);
}

.landing-footer {
  padding: 32px 56px;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}
.landing-footer a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
}
.landing-footer a:hover { text-decoration: underline; }

/* ── ARTICLE / LONG-FORM (blog posts, resource pages) ── */
.article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.article-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.5px;
  margin: 56px 0 18px;
  line-height: 1.25;
}
.article-content h2::before {
  content: '// ';
  color: var(--sky);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 1px;
  vertical-align: middle;
  margin-right: 6px;
}
.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-1);
  margin: 36px 0 14px;
  letter-spacing: -0.2px;
}
.article-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.article-content ul li, .article-content ol li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 10px;
}
.article-content ul li::marker { color: var(--sky); }
.article-content strong { color: var(--text-1); font-weight: 700; }
.article-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--sky);
}
.article-content pre {
  background: var(--bg-2, #0B1220);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sky);
  border-radius: 8px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 13.5px;
  line-height: 1.7;
}
.article-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-2);
  font-size: inherit;
}
.article-content a {
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.3);
  transition: border-color .2s;
}
.article-content a:hover { border-color: var(--sky); }

.article-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
}
.article-callout p {
  margin: 0;
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.75;
}

.article-framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.article-framework-grid .full-width-card { grid-column: 1 / -1; }
.article-framework-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
  position: relative;
}
.article-framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sky);
}
.article-framework-card:nth-child(2n)::before { background: var(--amber); }
.article-framework-card:nth-child(3)::before { background: var(--green); }
.article-framework-card:nth-child(4)::before { background: var(--cyan); }
.article-framework-card:nth-child(5)::before { background: var(--accent-2, #A78BFA); }
.article-framework-card .card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.article-framework-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
.article-framework-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 14px;
}
.article-framework-card .pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: -0.5px;
  line-height: 1;
}
.article-framework-card .pct-label {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 4px;
}

.article-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 40px;
  text-align: center;
  margin: 56px 0 0;
  position: relative;
}
.article-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
}
.article-cta-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-1);
  letter-spacing: -0.4px;
}
.article-cta-card p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 26px;
  line-height: 1.7;
}
.article-cta-card .cta-btns { justify-content: center; }

.related-reading {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.related-reading h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.related-link {
  display: block;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.related-link:hover {
  border-color: rgba(56,189,248,0.35);
  transform: translateX(4px);
}
.related-link .rl-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
  line-height: 1.4;
}
.related-link .rl-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  #nav { padding: 0 28px; }
  .hero { padding: 120px 32px 60px; min-height: auto; }
  .page-hero { padding: 120px 32px 60px; }
  .metrics { grid-template-columns: repeat(2, 1fr); padding: 40px 32px; gap: 32px 0; }
  .m-cell:nth-child(2) { border-right: none; }
  .m-cell:nth-child(1), .m-cell:nth-child(2) { padding-bottom: 32px; border-bottom: 1px solid var(--border); }
  .section { padding: 72px 32px; }
  .cap-matrix { grid-template-columns: 1fr; }
  .cap-col:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .t-small-grid { grid-template-columns: 1fr; }
  .result-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .philosophy { padding: 80px 32px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-section { padding: 80px 32px; }
  .cta-strip { padding: 60px 32px; }
  .svc-item { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .page-hero-stats { gap: 32px; }
  .hero-split { grid-template-columns: 1fr; padding: 120px 32px 60px; gap: 40px; }
  .hero-split .hs-stats { gap: 28px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .odoo-cases { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; gap: 16px; }
  .related-solutions { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .diff-item:last-child { border-bottom: none !important; }
  .history-tl { padding-left: 24px; }
  .history-item { grid-template-columns: 1fr; gap: 8px; }
  .history-item::before { left: -29px; top: 28px; }
  .contact-grid { grid-template-columns: 1fr; padding: 32px 32px 80px; gap: 32px; }
  .case-item { grid-template-columns: 1fr; }
  .case-left { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 28px; }
  .case-right { padding: 32px 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); padding: 32px 32px 80px; }
  .blog-card.blog-featured { padding: 32px 32px 28px; }
  .blog-featured .blog-card-title { font-size: 24px; }
  .landing-top-bar { padding: 0 28px; }
  .landing-hero { padding: 120px 32px 56px; }
  .landing-grid-3 { grid-template-columns: 1fr; padding: 0 32px; }
  .landing-check-grid { grid-template-columns: 1fr; padding: 0 32px; }
  .landing-stats { max-width: calc(100% - 64px); }
  .landing-trust { gap: 28px; }
  .article-wrap { padding: 48px 32px 72px; }
  .article-framework-grid { grid-template-columns: 1fr; }
  .article-framework-grid .full-width-card { grid-column: 1; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  footer { padding: 56px 32px 32px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .nav-links { display: none !important; }
  #nav { padding: 0 20px; }
  .hero { padding: 100px 24px 50px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1.5px; }
  .page-hero { padding: 100px 24px 56px; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 44px); letter-spacing: -1.4px; }
  .metrics { padding: 32px 24px; }
  .m-num { font-size: 32px; }
  .section { padding: 56px 24px; }
  .section-h { font-size: clamp(26px, 6.5vw, 36px); }
  .philosophy { padding: 64px 24px; }
  .cta-section { padding: 64px 24px; }
  .cta-strip { padding: 48px 24px; }
  .v-timeline { padding-left: 40px; }
  .vt-dot { left: -40px; }
  .svc-item { padding: 24px 20px; gap: 16px; }
  .svc-title { font-size: 17px; }
  .hero-split { padding: 100px 24px 50px; }
  .hero-split h1 { font-size: clamp(30px, 7vw, 44px); letter-spacing: -1.4px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 24px 20px; }
  .modules-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a p { padding: 0 20px 18px; font-size: 14px; }
  .page-hero-stats { gap: 28px; }
  .phs-num { font-size: 26px; }
  .contact-grid { padding: 24px 20px 64px; }
  .case-stats { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .case-title { font-size: 19px; }
  .case-stat-num { font-size: 22px; }
  .case-left, .case-right { padding: 28px 22px; }
  .blog-grid { grid-template-columns: 1fr; padding: 24px 20px 64px; gap: 18px; }
  .blog-card { padding: 24px 22px 22px; }
  .blog-featured .blog-card-title { font-size: 21px; }
  .blog-featured .blog-card-excerpt { font-size: 14.5px; }
  .landing-top-bar { padding: 0 20px; height: 64px; }
  .landing-hero { padding: 100px 20px 48px; }
  .landing-hero h1 { font-size: clamp(28px, 7vw, 38px); letter-spacing: -1px; }
  .landing-hero p.lh-sub { font-size: 16px; }
  .landing-stats { grid-template-columns: 1fr; padding: 20px 0; }
  .landing-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .landing-stat:last-child { border-bottom: none; }
  .landing-grid-3 { padding: 0 20px; gap: 14px; }
  .landing-check-grid { padding: 0 20px; }
  .landing-trust { flex-direction: column; gap: 16px; padding: 32px 20px; }
  .article-wrap { padding: 36px 20px 56px; }
  .article-content h2 { font-size: 22px; margin: 40px 0 14px; }
  .article-content h3 { font-size: 17px; margin: 28px 0 12px; }
  .article-content p, .article-content ul li, .article-content ol li { font-size: 15px; }
  .article-framework-card { padding: 22px 20px; }
  .article-cta-card { padding: 32px 24px; }
  .article-cta-card h3 { font-size: 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 24px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
