/* ============================================================
   SCM Software Lab — SAP Consulting Website
   Design system v2: clean & minimal — white / light grey,
   dark text, single blue accent, subtle borders & shadows
   ============================================================ */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --bg-soft: #fafbfc;
  --ink: #16181d;
  --ink-2: #2b2f36;
  --slate: #5f6673;
  --muted: #8a919e;
  --line: #e6e8ec;
  --line-2: #d9dce2;
  --blue: #714B67;
  --blue-dark: #5a3a52;
  --blue-soft: #f5eff3;
  --marker: #ffe999;
  --teal: #12a594;
  --orange: #b45309;
  --pink: #0f62fe;
  --mist: #f5f6f8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(22, 24, 29, 0.06);
  --shadow-md: 0 8px 28px rgba(22, 24, 29, 0.09);
  --shadow-lg: 0 20px 50px rgba(22, 24, 29, 0.12);
  --radius: 14px;
  --font-head: "Inter", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  /* Logo palette — the six colors of the SCM elephant mark */
  --logo-teal: #16b98d;
  --logo-blue: #2b7fe0;
  --logo-yellow: #f5a800;
  --logo-orange: #ff7300;
  --logo-pink: #ee2a7b;
  --logo-purple: #5b45d1;
  --logo-gradient: linear-gradient(90deg, #16b98d, #2b7fe0, #f5a800, #ff7300, #ee2a7b, #5b45d1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; color: var(--ink); font-weight: 700; letter-spacing: -0.015em; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bg);
  color: var(--slate);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--slate); transition: color .2s; }
.topbar a:hover { color: var(--blue); }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar i { color: var(--blue); margin-right: 6px; font-size: 12px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-text { line-height: 1.2; }
.brand-text .brand-name { font-weight: 700; font-size: 17.5px; color: var(--ink); letter-spacing: -0.01em; }
.brand-text .brand-tag { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav a.nav-link {
  display: block; padding: 24px 14px; font-weight: 500; font-size: 14.5px;
  color: var(--ink-2); position: relative; transition: color .2s;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 15px;
  height: 2px; border-radius: 2px; background: var(--ink);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.main-nav li:hover > a.nav-link, .main-nav a.nav-link.active { color: var(--ink); }
.main-nav li:hover > a.nav-link::after, .main-nav a.nav-link.active::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 310px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .25s ease; z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-wide { min-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown a {
  display: block; padding: 10px 12px;
  border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: all .18s;
}
.dropdown a small { display: block; color: var(--slate); font-size: 12.5px; font-weight: 400; margin-top: 2px; }
.dropdown a:hover { background: var(--bg-alt); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600;
  font-family: var(--font-head); font-size: 14.5px; padding: 12px 24px;
  border-radius: 6px; cursor: pointer; border: 1px solid transparent; transition: all .22s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(113, 75, 103, .3); }
.btn-warm { background: var(--blue); color: #fff; }
.btn-warm:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(113, 75, 103, .3); }
.btn-ghost { background: var(--white); color: var(--blue); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-soft); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--blue); background: var(--blue-soft); }

.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--ink); cursor: pointer; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; color: var(--ink); overflow: hidden;
  background: var(--bg);
  padding: 100px 0 84px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 88% -10%, var(--blue-soft) 0%, transparent 60%),
    radial-gradient(600px 380px at -8% 110%, #f0f1f4 0%, transparent 55%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .35;
  -webkit-mask-image: radial-gradient(700px 500px at 75% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(700px 500px at 75% 20%, #000 0%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase; color: var(--slate);
  background: var(--white); border: 1px solid var(--line-2);
  padding: 7px 16px; border-radius: 40px; margin-bottom: 26px;
}
.hero-kicker i { color: var(--blue); }
.hero h1 { color: var(--ink); font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero h1 .grad-text, .page-hero h1 .grad-text, .marker {
  color: inherit;
  background: linear-gradient(180deg, transparent 62%, var(--marker) 62%);
  padding: 0 5px; border-radius: 3px;
}
/* Odoo-style centered hero variant */
.hero-center { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-center p.lead { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions, .hero-center .hero-trust { justify-content: center; }
.hero-center .hero-tagline { font-size: clamp(19px, 2.2vw, 26px); font-weight: 600; color: var(--ink-2); margin-bottom: 14px; letter-spacing: -0.01em; }
.hero p.lead { color: var(--slate); font-size: 18px; max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; color: var(--slate); font-size: 14px; }
.hero-trust span i { color: var(--teal); margin-right: 8px; }

.hero-panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 32px; box-shadow: var(--shadow-md);
}
.hero-panel h3 { color: var(--ink); font-size: 18px; margin-bottom: 18px; }
.hero-panel h3 span { color: var(--blue); }
.hero-panel ul li {
  display: flex; gap: 12px; align-items: flex-start; padding: 10px 0;
  border-bottom: 1px solid var(--line); color: var(--slate); font-size: 14.5px;
}
.hero-panel ul li:last-child { border-bottom: none; }
.hero-panel ul li i { color: var(--blue); margin-top: 5px; font-size: 13px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; color: var(--ink); overflow: hidden; padding: 82px 0 68px;
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(113, 75, 103, .10), transparent 65%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .3;
  -webkit-mask-image: radial-gradient(800px 400px at 85% 10%, #000 0%, transparent 70%);
  mask-image: radial-gradient(800px 400px at 85% 10%, #000 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 880px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--slate); } .breadcrumb a:hover { color: var(--blue); }
.breadcrumb i { font-size: 10px; }
.page-hero h1 { color: var(--ink); font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.page-hero p { color: var(--slate); font-size: 17.5px; max-width: 760px; }
.page-hero .hero-actions { margin-top: 28px; margin-bottom: 0; }

/* ---------- Stats strip (borderless, Odoo style) ---------- */
.stats-strip {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(255,255,255,.14) 0%, transparent 70%),
              radial-gradient(600px 300px at 85% 100%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.stat { text-align: center; padding: 38px 12px; border: none; }
.stat:first-child { border: none; }
.stat .num { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; color: #ffffff; }
.stat .lbl { color: rgba(255, 255, 255, .78); font-size: 13.5px; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section.tint { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.tint + .section.tint { border-top: none; }
.section.dark { background: var(--bg-alt); color: var(--slate); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark h2, .section.dark h3 { color: var(--ink); }
.sec-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.sec-head.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; margin-bottom: 13px; color: var(--blue);
}
.sec-head h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 15px; letter-spacing: -0.025em; }
.sec-head p { color: var(--slate); font-size: 16.5px; }
.section.dark .sec-head p { color: var(--slate); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

/* Boxed feature cards, matching the wyg/risk/next card language */
.card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  font-size: 19px; color: var(--blue); background: var(--blue-soft); margin-bottom: 18px;
  transition: all .25s;
}
.card:hover .icon { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 18.5px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 14.5px; margin-bottom: 12px; }
.card ul { margin: 0 0 14px; }
.card ul li { font-size: 13.8px; color: var(--slate); padding: 4px 0 4px 24px; position: relative; }
.card ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--teal); font-size: 11px; top: 7px; }
.card .link-more { font-weight: 600; font-size: 14px; color: var(--blue); display: inline-flex; align-items: center; gap: 7px; }
.card .link-more i { transition: transform .2s; }
.card .link-more:hover i { transform: translateX(4px); }
.section.dark .card h3 { color: var(--ink); }
.section.dark .card p, .section.dark .card ul li { color: var(--slate); }

/* Zoho-style big typographic statement */
.big-statement {
  font-family: var(--font-head); font-size: clamp(26px, 3.8vw, 44px); font-weight: 800;
  text-align: center; line-height: 1.4; letter-spacing: -0.02em;
  max-width: 980px; margin: 0 auto; color: var(--ink);
}
.big-statement .sub { display: block; font-size: clamp(15px, 1.6vw, 18px); font-weight: 500; color: var(--slate); letter-spacing: 0; margin-top: 22px; line-height: 1.7; }
/* Accent-color band variant of the big statement section */
.section.statement-band {
  position: relative; overflow: hidden;
  background: #714B67;
}
.section.statement-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 340px at 85% -20%, rgba(255, 233, 153, .16), transparent 65%),
              radial-gradient(520px 320px at 8% 120%, rgba(255, 255, 255, .08), transparent 60%);
}
.section.statement-band .container { position: relative; z-index: 1; }
.section.statement-band .big-statement { color: #fff; }
.section.statement-band .big-statement .sub { color: rgba(255, 255, 255, .78); }
.section.statement-band .marker { background: linear-gradient(180deg, transparent 62%, rgba(255, 233, 153, .32) 62%); }

/* ---------- Feature / checklist rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.checklist li { display: flex; gap: 13px; padding: 9px 0; color: var(--slate); font-size: 15px; }
.checklist li i { color: var(--blue); background: var(--blue-soft); width: 25px; height: 25px; flex: 0 0 25px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; margin-top: 3px; }
.section.dark .checklist li { color: var(--slate); }
.checklist li strong { color: var(--ink); }

.info-panel {
  background: transparent; border: none; border-left: 3px solid var(--blue);
  border-radius: 0; padding: 10px 0 10px 36px; color: var(--slate); box-shadow: none;
}
.info-panel h3 { color: var(--ink); margin-bottom: 14px; font-size: 21px; }
.info-panel .big-grad { font-size: 44px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.info-panel strong { color: var(--ink); }
.section.tint .info-panel { box-shadow: none; }

/* ---------- Process: connected timeline ---------- */
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process.cols-5 { grid-template-columns: repeat(5, 1fr); }
.process.cols-6 { grid-template-columns: repeat(6, 1fr); }
.p-step { background: transparent; border: none; border-radius: 0; padding: 0 26px 0 0; position: relative; }
.p-step::before {
  counter-increment: step; content: "0" counter(step);
  font-weight: 700; font-size: 13px;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--line-2); color: var(--ink);
  margin-bottom: 20px; position: relative; z-index: 1; transition: all .25s;
}
.p-step::after {
  content: ""; position: absolute; top: 21px; left: 42px; right: 0;
  height: 2px; background: var(--line);
}
.p-step:last-child::after { display: none; }
.p-step:hover::before { background: var(--blue); border-color: var(--blue); color: #fff; }
.p-step h4 { font-size: 16px; margin-bottom: 8px; }
.p-step p { color: var(--slate); font-size: 13.5px; padding-right: 6px; }
.section.dark .p-step::before, .section.tint .p-step::before { background: var(--white); }

/* ---------- Bento area: borderless feature layout with hairline dividers ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: 44px 40px; }
.b-card { background: transparent; border: none; border-radius: 0; padding: 0; position: relative; display: flex; flex-direction: column; }
.b-card .icon {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  font-size: 18px; color: var(--blue); background: var(--blue-soft); margin-bottom: 16px; transition: all .25s;
}
.b-card:hover .icon { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.06); }
.b-card h3 { font-size: 17.5px; margin-bottom: 9px; }
.b-card p { color: var(--slate); font-size: 14px; margin-bottom: 12px; flex: 1; }
.b-card .link-more { font-weight: 600; font-size: 13.5px; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.b-card .link-more i { transition: transform .2s; }
.b-card .link-more:hover i { transform: translateX(4px); }
.b-card.b-lg { grid-column: span 2; grid-row: span 2; padding-right: 40px; border-right: 1px solid var(--line); }
.b-card.b-lg h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }
.b-card.b-lg p { font-size: 15.5px; flex: 0; }
.b-card.b-lg .b-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.b-card.b-lg .b-tags span { font-size: 12.5px; font-weight: 600; color: var(--blue); background: var(--blue-soft); border-radius: 30px; padding: 5px 13px; }
.b-card.b-lg .b-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.b-card.b-lg .b-stat { font-size: 13px; color: var(--muted); }
.b-card.b-lg .b-stat strong { display: block; font-size: 28px; color: var(--blue); font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Pillars — columns split by hairlines (Apple style) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillars.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pillars.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pillar { padding: 8px 36px; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar .ph-icon { font-size: 26px; color: var(--blue); margin-bottom: 16px; }
.pillar .ph-tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.pillar h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.015em; }
.pillar p { color: var(--slate); font-size: 14.5px; margin-bottom: 12px; }
.pillar ul li { font-size: 13.8px; color: var(--slate); padding: 4px 0 4px 24px; position: relative; }
.pillar ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--teal); font-size: 11px; top: 7px; }

/* ---------- Vertical timeline (Linear style) ---------- */
.vtimeline { max-width: 760px; margin: 0 auto; counter-reset: vt; }
.vt-item { position: relative; padding: 0 0 38px 58px; }
.vt-item::before {
  counter-increment: vt; content: counter(vt, decimal-leading-zero);
  position: absolute; left: 0; top: -2px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line-2); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--ink);
  z-index: 1; transition: all .25s;
}
.vt-item::after { content: ""; position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: var(--line); }
.vt-item:last-child { padding-bottom: 0; }
.vt-item:last-child::after { display: none; }
.vt-item:hover::before { border-color: var(--blue); color: var(--blue); }
.vt-item h4 { font-size: 17px; margin-bottom: 6px; }
.vt-item p { color: var(--slate); font-size: 14.5px; }
.section.tint .vt-item::before { background: var(--bg-alt); }

/* ---------- Directory index list (Stripe style) ---------- */
.dir-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 70px; }
.dir-item { padding: 24px 0 22px; border-top: 1px solid var(--line); }
.dir-item h3 { font-size: 17px; margin: 0; }
.dir-item h3 a { color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: color .2s; }
.dir-item h3 a i { font-size: 12px; color: var(--muted); transition: transform .2s, color .2s; }
.dir-item h3 a:hover { color: var(--blue); }
.dir-item h3 a:hover i { transform: translateX(5px); color: var(--blue); }
.dir-item p { color: var(--slate); font-size: 13.8px; margin-top: 7px; padding-right: 30px; }

/* ---------- Stacked icon rows with dividers ---------- */
.icon-rows { max-width: 900px; margin: 0 auto; }
.icon-row {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 26px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.icon-row:first-child { border-top: 1px solid var(--line); }
.icon-row .ir-icon {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  font-size: 17px; color: var(--blue); background: var(--blue-soft); transition: all .25s;
}
.icon-row:hover .ir-icon { background: var(--blue); color: #fff; transform: rotate(-6deg); }
.icon-row h3 { font-size: 16.5px; margin-bottom: 4px; }
.icon-row p { color: var(--slate); font-size: 14px; margin: 0; }
.icon-row .ir-link { font-weight: 600; font-size: 13.5px; color: var(--blue); white-space: nowrap; }
.icon-row .ir-link i { font-size: 11px; transition: transform .2s; margin-left: 5px; }
.icon-row .ir-link:hover i { transform: translateX(4px); }

/* ---------- Trusted-by logo strip ---------- */
.logo-strip-wrap { padding: 30px 0 8px; text-align: center; }
.logo-strip-wrap .ls-label { font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
.logo-strip { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.logo-strip img { height: 34px; width: auto; filter: grayscale(1); opacity: .55; transition: filter .25s, opacity .25s; }
.logo-strip img:hover { filter: none; opacity: 1; }

/* ---------- Product screenshots ---------- */
.shot { margin: 0; }
.shot img { display: block; width: 100%; height: auto; }
.shot figcaption { margin-top: 12px; font-size: 13.5px; color: var(--muted); text-align: center; line-height: 1.6; }
.section.dark .shot figcaption { color: var(--slate); }
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 30px; align-items: start; }
.shot-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.shot-phone img { max-width: 292px; margin: 0 auto; border-radius: 20px; box-shadow: var(--shadow-lg); }
@media (max-width: 1024px) { .shot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .shot-grid, .shot-grid.cols-2 { grid-template-columns: 1fr; } }

/* ---------- Browser-frame mockup ---------- */
.mockup { background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; }
.m-top { display: flex; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--bg-soft); align-items: center; }
.m-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.m-top i:nth-child(1) { background: #f06050; }
.m-top i:nth-child(2) { background: #e4a900; }
.m-top i:nth-child(3) { background: #2e937a; }
.m-top .m-url { flex: 1; height: 18px; margin-left: 10px; border-radius: 9px; background: var(--bg-alt); border: 1px solid var(--line); }
.m-body { display: grid; grid-template-columns: 96px 1fr; min-height: 250px; }
.m-side { border-right: 1px solid var(--line); padding: 14px 10px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }
.m-side span { height: 8px; border-radius: 4px; background: var(--line-2); }
.m-side span:first-child { background: var(--blue); }
.m-main { padding: 16px; }
.m-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.m-kpi { border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; }
.m-kpi .v { font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -0.02em; }
.m-kpi .l { font-size: 10.5px; color: var(--muted); }
.m-chart { display: flex; gap: 8px; align-items: flex-end; height: 108px; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.m-chart span { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue-soft); }
.m-chart span.hi { background: var(--blue); }
.m-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.m-col { border: 1px solid var(--line); border-radius: 8px; padding: 10px; background: var(--bg-soft); }
.m-col .m-col-h { height: 9px; width: 60%; border-radius: 4px; background: var(--blue); margin-bottom: 10px; }
.m-col:nth-child(2) .m-col-h { background: #e4a900; }
.m-col:nth-child(3) .m-col-h { background: #2e937a; }
.m-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 8px; margin-bottom: 8px; }
.m-card i { display: block; height: 6px; border-radius: 3px; background: var(--line); margin-bottom: 5px; }
.m-card i:last-child { width: 55%; margin-bottom: 0; }

/* ---------- Yellow ribbon quote ---------- */
.ribbon { background: #ffd60a; padding: 66px 0; }
.ribbon blockquote {
  font-size: clamp(19px, 2.4vw, 27px); font-weight: 600; color: #2e2708;
  text-align: center; max-width: 880px; margin: 0 auto 20px; line-height: 1.5; letter-spacing: -0.015em;
}
.ribbon .r-who { text-align: center; color: #5c4d14; font-size: 14px; font-weight: 600; }

/* ---------- Odoo-style apps grid ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 30px 14px; }
.app-tile { text-align: center; display: block; }
.app-tile .tile {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 10px;
  display: grid; place-items: center; color: #fff; font-size: 22px;
  box-shadow: 0 6px 16px rgba(22, 24, 29, .14);
  transition: transform .22s, box-shadow .22s;
}
.app-tile:hover .tile { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 26px rgba(22, 24, 29, .2); }
.app-tile span { font-size: 13px; font-weight: 600; color: var(--ink-2); display: block; line-height: 1.35; }
.app-tile:hover span { color: var(--blue); }
/* Odoo-ish app icon palette, cycling */
.app-tile:nth-child(8n+1) .tile { background: #714B67; }
.app-tile:nth-child(8n+2) .tile { background: #00A09D; }
.app-tile:nth-child(8n+3) .tile { background: #F06050; }
.app-tile:nth-child(8n+4) .tile { background: #6460AC; }
.app-tile:nth-child(8n+5) .tile { background: #2E937A; }
.app-tile:nth-child(8n+6) .tile { background: #E4A900; }
.app-tile:nth-child(8n+7) .tile { background: #21B799; }
.app-tile:nth-child(8n) .tile { background: #985184; }
.apps-more { text-align: center; margin-top: 34px; color: var(--slate); font-size: 14.5px; }
.apps-more a { color: var(--blue); font-weight: 700; }
.apps-more a:hover { text-decoration: underline; }

/* ---------- Marquee (product ticker) ---------- */
.marquee {
  overflow: hidden; position: relative; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee + .marquee { margin-top: 14px; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marqueeX 46s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .chip { flex: 0 0 auto; }
@keyframes marqueeX { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Editorial numbered feature rows ---------- */
.feature-editorial { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.feature-editorial .fe-intro { position: sticky; top: 110px; }
.feature-editorial .fe-intro h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 18px; letter-spacing: -0.025em; }
.feature-editorial .fe-intro p { color: var(--slate); margin-bottom: 26px; }
.f-row { display: grid; grid-template-columns: 78px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.f-row:first-child { padding-top: 0; }
.f-row .f-num {
  font-size: 34px; font-weight: 800; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px var(--line-2); letter-spacing: -0.02em; padding-top: 3px;
  transition: all .3s;
}
.f-row:hover .f-num { -webkit-text-stroke-color: var(--blue); }
.f-row h4 { font-size: 16.5px; margin-bottom: 7px; }
.f-row p { color: var(--slate); font-size: 14.5px; }

/* ---------- Industry tabs — Zoho-style underline tabs, no box ---------- */
.tabs { display: block; background: transparent; border: none; border-radius: 0; box-shadow: none; }
.tab-list {
  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 2px;
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 0; margin-bottom: 38px;
}
.tab-btn {
  width: auto; text-align: center; padding: 13px 16px 15px; border: none; border-radius: 0;
  background: none; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--slate); display: inline-flex; align-items: center; gap: 9px; transition: all .2s;
  position: relative; margin-bottom: -1px; border-bottom: 2px solid transparent;
}
.tab-btn i { width: auto; height: auto; background: transparent; color: var(--muted); font-size: 14px; transition: color .2s; }
.tab-btn:hover { color: var(--ink); background: transparent; }
.tab-btn:hover i { color: var(--blue); }
.tab-btn.active { background: transparent; color: var(--blue); box-shadow: none; border-bottom-color: var(--blue); }
.tab-btn.active i { background: transparent; color: var(--blue); }
.tab-panel { display: none; padding: 0; max-width: 900px; margin: 0 auto; }
.tab-panel.active { display: block; animation: tabFade .35s ease; }
@keyframes tabFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tab-panel h3 { font-size: 24px; margin-bottom: 12px; letter-spacing: -0.02em; }
.tab-panel > p { color: var(--slate); font-size: 15.5px; margin-bottom: 22px; }
.tab-panel .checklist { columns: 2; column-gap: 40px; margin-bottom: 24px; }
.tab-panel .checklist li { break-inside: avoid; }

/* ---------- Quote slider ---------- */
.quote-slider { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.q-mark { font-size: 40px; color: var(--blue); opacity: .25; margin-bottom: 8px; }
.q-slide { display: none; }
.q-slide.active { display: block; animation: tabFade .4s ease; }
.q-slide blockquote { font-size: clamp(17px, 2vw, 21px); font-weight: 500; color: var(--ink-2); line-height: 1.65; letter-spacing: -0.01em; margin-bottom: 28px; }
.q-slide .t-who { justify-content: center; }
.q-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.q-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--white);
  color: var(--ink); cursor: pointer; font-size: 14px; transition: all .2s;
}
.q-arrow:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.q-dots { display: flex; gap: 8px; }
.q-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); border: none; cursor: pointer; transition: all .25s; padding: 0; }
.q-dot.active { background: var(--blue); width: 22px; border-radius: 5px; }

/* ---------- Chips / tags ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--white); border: 1px solid var(--line); color: var(--ink-2);
  padding: 9px 18px; border-radius: 40px; font-size: 13.5px; font-weight: 500;
  transition: all .2s;
}
.chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.section.dark .chip { background: var(--white); border-color: var(--line); color: var(--ink-2); }
.section.dark .chip:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Tables — card style with brand header ---------- */
.table-wrap {
  overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); background: var(--white);
}
table.data { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); min-width: 680px; }
table.data th {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; text-align: left; padding: 16px 20px;
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.1px;
}
table.data td { padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--slate); vertical-align: top; }
table.data td:first-child { border-left: 3px solid transparent; }
table.data tbody tr:nth-child(even) td { background: var(--bg-soft); }
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:hover td { background: var(--blue-soft); }
table.data tbody tr:hover td:first-child { border-left-color: var(--blue); }
table.data td strong { color: var(--ink); font-weight: 600; }

/* ---------- Accordion (FAQ) — minimal divider style, no boxes ---------- */
.accordion { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.acc-item { background: transparent; border: none; border-bottom: 1px solid var(--line); border-radius: 0; margin-bottom: 0; overflow: hidden; }
.acc-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 6px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.acc-q:hover { color: var(--blue); }
.acc-q i { color: var(--muted); transition: transform .3s; flex: 0 0 auto; font-size: 13px; }
.acc-item.open .acc-q { color: var(--blue); }
.acc-item.open .acc-q i { transform: rotate(180deg); color: var(--blue); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-a-inner { padding: 0 6px 24px; color: var(--slate); font-size: 14.5px; max-width: 740px; }

/* ---------- Testimonials ---------- */
.t-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .22s, box-shadow .22s; }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { color: #eab308; margin-bottom: 15px; font-size: 13px; letter-spacing: 2px; }
.t-card p.quote { color: var(--slate); font-size: 14.5px; margin-bottom: 22px; }
.t-who { display: flex; align-items: center; gap: 13px; }
.t-who .avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: var(--ink); background: var(--bg-alt); border: 1px solid var(--line-2); }
.t-who .name { font-weight: 600; font-size: 14.5px; }
.t-who .role { color: var(--muted); font-size: 12.5px; }

/* ---------- CTA band (Odoo purple gradient) ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, #714B67 0%, #4b3245 100%); padding: 84px 0; color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 340px at 85% -20%, rgba(255, 233, 153, .18), transparent 65%),
              radial-gradient(500px 300px at 5% 120%, rgba(255, 255, 255, .08), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; text-align: center; max-width: 780px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; letter-spacing: -0.025em; }
.cta-band p { color: rgba(255, 255, 255, .78); font-size: 16.5px; margin-bottom: 32px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }
.cta-band .btn-warm { background: #fff; color: var(--blue); }
.cta-band .btn-warm:hover { background: var(--marker); color: #3f3521; box-shadow: 0 8px 22px rgba(0, 0, 0, .25); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-card { background: transparent; color: var(--slate); border-radius: 0; padding: 10px 0; border: none; }
.contact-info-card h3 { color: var(--ink); font-size: 22px; margin-bottom: 12px; }
.contact-info-card > p { font-size: 14.5px; margin-bottom: 28px; }
.ci-row { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.ci-row:last-of-type { border-bottom: none; }
.ci-row .ci-icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 11px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); color: var(--blue); font-size: 16px; }
.ci-row h4 { color: var(--ink); font-size: 15px; margin-bottom: 3px; }
.ci-row p, .ci-row a { color: var(--slate); font-size: 14px; }
.ci-row a:hover { color: var(--blue); }
.contact-info-card h4 { color: var(--ink); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 40px; box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 22px; margin-bottom: 8px; }
.form-card > p { color: var(--slate); font-size: 14.5px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-weight: 600; font-size: 13.5px; }
.form-group label span { color: var(--blue); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 15px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(113, 75, 103, .15);
}
.map-embed { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 56px; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }
.form-msg { display: block; margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-msg.ok { color: var(--teal); }
.form-msg.err { color: #b91c1c; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); color: var(--slate); border-top: 1px solid var(--line); }
.footer-top { padding: 70px 0 46px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 42px; }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; margin-bottom: 20px; max-width: 320px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line); color: var(--slate); transition: all .2s; font-size: 14px;
}
.f-social a:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.site-footer h4 { color: var(--ink); font-size: 15.5px; margin-bottom: 20px; }
.f-links li { margin-bottom: 10px; }
.f-links a { font-size: 14px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; color: var(--slate); }
.f-links a i { font-size: 10px; color: var(--muted); }
.f-links a:hover { color: var(--blue); padding-left: 4px; }
.f-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; }
.f-contact li i { color: var(--blue); margin-top: 5px; font-size: 13px; }
.f-contact a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--slate); } .footer-bottom a:hover { color: var(--blue); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
#toTop {
  position: fixed; right: 26px; bottom: 26px; width: 46px; height: 46px; border-radius: 12px;
  background: var(--ink); color: #fff; border: none; cursor: pointer; font-size: 16px;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all .3s; z-index: 998;
}
#toTop.show { opacity: 1; visibility: visible; }
#toTop:hover { transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4, .process { grid-template-columns: repeat(2, 1fr); }
  .process.cols-5, .process.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .process .p-step { padding-bottom: 26px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-card.b-lg { grid-column: span 2; grid-row: span 1; }
  .apps-grid { grid-template-columns: repeat(5, 1fr); }
  .m-kpis, .m-cols { grid-template-columns: repeat(2, 1fr); }
  .m-col:nth-child(3) { display: none; }
  .feature-editorial { grid-template-columns: 1fr; gap: 40px; }
  .feature-editorial .fe-intro { position: static; }
  .tabs { grid-template-columns: 1fr; }
  .tab-list { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .tab-btn { white-space: nowrap; width: auto; flex: 0 0 auto; }
  .hero .container { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); background: var(--white);
    padding: 84px 26px 40px; transform: translateX(100%); transition: transform .3s ease; z-index: 1000;
    overflow-y: auto; border-left: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a.nav-link { color: var(--ink); padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .main-nav a.nav-link::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 8px 10px; min-width: 0; }
  .dropdown-wide { display: block; min-width: 0; }
  .dropdown a { color: var(--slate); padding: 9px 10px; }
  .nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--ink); font-size: 24px; cursor: pointer; display: block; }
  .header-cta .btn { display: none; }
  .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dir-list { grid-template-columns: 1fr; gap: 0; }
  .icon-row { grid-template-columns: 44px 1fr; }
  .icon-row .ir-link { grid-column: 2; justify-self: start; }
  .pillars, .pillars.cols-2, .pillars.cols-4 { grid-template-columns: 1fr; }
  .pillar { padding: 24px 0; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--line); }
  .vt-item { padding-left: 50px; }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .pillars.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pillars.cols-4 .pillar { padding: 22px 30px; }
  .pillars.cols-4 .pillar:nth-child(odd) { border-left: none; padding-left: 0; }
  .pillars.cols-4 .pillar:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- Specializations showcase (accent cards) ---------- */
.section.spec-band { background: linear-gradient(180deg, var(--blue-soft) 0%, var(--bg) 90%); border-top: 1px solid var(--line); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.spec-card {
  --accent: var(--blue); --accent-soft: var(--blue-soft);
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 36px 30px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.spec-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.spec-card:hover::before { transform: scaleX(1); }
.spec-num {
  position: absolute; top: 14px; right: 28px;
  font-family: var(--font-head); font-size: 72px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--bg-alt); line-height: 1; user-select: none; transition: color .3s ease;
}
.spec-card:hover .spec-num { color: var(--accent-soft); }
.spec-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  font-size: 22px; color: var(--accent); background: var(--accent-soft);
  margin-bottom: 20px; position: relative; z-index: 1; transition: all .25s;
}
.spec-card:hover .spec-icon { background: var(--accent); color: #fff; transform: rotate(-6deg) scale(1.06); }
.spec-card h3 { font-size: clamp(19px, 1.9vw, 22px); margin-bottom: 10px; letter-spacing: -0.015em; position: relative; z-index: 1; }
.spec-card > p { color: var(--slate); font-size: 14.8px; margin-bottom: 20px; position: relative; z-index: 1; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; position: relative; z-index: 1; }
.spec-tags span { font-size: 12.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border-radius: 30px; padding: 5px 13px; }
.spec-link {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
  font-weight: 600; font-size: 14px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 7px;
}
.spec-link i { transition: transform .2s; }
.spec-card:hover .spec-link i { transform: translateX(5px); }
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .spec-card { padding: 30px 24px 24px; } .spec-num { font-size: 56px; } }

/* ---------- Delivery journey (How We Deliver) ---------- */
.process-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 34px; }
.pf-step {
  position: relative; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 14px 22px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pf-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.pf-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-size: 20px;
  color: var(--blue); background: var(--blue-soft); transition: all .25s;
}
.pf-step:hover .pf-icon { background: var(--blue); color: #fff; }
.pf-num { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pf-step h4 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.01em; }
.pf-week {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft); padding: 4px 11px; border-radius: 30px; white-space: nowrap; margin-bottom: 12px;
}
.pf-step p { font-size: 12.8px; color: var(--slate); line-height: 1.5; margin: 0; }
.pf-arrow {
  position: absolute; top: 50%; right: -28px; transform: translateY(-50%);
  color: var(--blue); font-size: 17px; line-height: 1; z-index: 1;
}
@media (max-width: 1100px) {
  .process-flow { grid-template-columns: repeat(3, 1fr); }
  .pf-step:nth-child(3) .pf-arrow { display: none; }
}
@media (max-width: 640px) {
  .process-flow { grid-template-columns: 1fr; gap: 42px; }
  .pf-step:nth-child(3) .pf-arrow { display: block; }
  .pf-arrow {
    top: auto; right: auto; bottom: -33px; left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.deliver-note { text-align: center; margin-top: 44px; }
.deliver-note p { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }

/* ---------- Service index (editorial, no cards) ---------- */
.svc-wrap { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: 76px; align-items: start; }
.svc-intro { position: sticky; top: 110px; }
.svc-intro h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 16px; letter-spacing: -0.025em; }
.svc-intro > p { color: var(--slate); font-size: 16px; margin-bottom: 8px; }
.svc-stats { display: flex; gap: 40px; margin: 28px 0 30px; }
.svc-stats strong { display: block; font-size: 30px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; line-height: 1.2; }
.svc-stats span { font-size: 13px; color: var(--muted); }
.svc-list .svc-row {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 22px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.svc-list .svc-row:first-child { border-top: 1px solid var(--line); }
.svc-row .n { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--muted); transition: color .2s; }
.svc-row h3 { font-size: 18.5px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; transition: color .2s; }
.svc-row h3 .flag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft); border-radius: 30px; padding: 3px 11px;
}
.svc-row p { color: var(--slate); font-size: 14px; margin-top: 4px; padding-right: 20px; }
.svc-row .go {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--muted); font-size: 13px; transition: all .25s;
}
.svc-row:hover .n, .svc-row:hover h3 { color: var(--blue); }
.svc-row:hover .go { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateX(5px); }
@media (max-width: 1024px) {
  .svc-wrap { grid-template-columns: 1fr; gap: 44px; }
  .svc-intro { position: static; }
}
@media (max-width: 620px) {
  .svc-list .svc-row { grid-template-columns: 36px 1fr; }
  .svc-row .go { display: none; }
  .svc-row p { padding-right: 0; }
}

/* ---------- Team: zero-layers comparison ---------- */
.layers { display: grid; grid-template-columns: 1fr 1fr; max-width: 920px; margin: 0 auto 68px; }
.layers-col { padding: 8px 54px; }
.layers-col:first-child { padding-left: 0; }
.layers-col:last-child { padding-right: 0; }
.layers-col + .layers-col { border-left: 1px solid var(--line); }
.layers-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 26px;
}
.layers-col.us .layers-label { color: var(--blue); }
.chain { display: flex; flex-direction: column; align-items: flex-start; }
.chain-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 19px;
  border: 1px solid var(--line-2); border-radius: 30px; background: var(--white);
  font-size: 13.5px; font-weight: 600; color: var(--slate);
}
.chain-pill i { font-size: 12px; color: var(--muted); }
.chain-pill.you { color: var(--ink); border-color: var(--ink); font-weight: 700; }
.chain-pill.you i { color: var(--ink); }
.chain-pill.pro { background: var(--blue); border-color: var(--blue); color: #fff; font-size: 15px; font-weight: 700; padding: 12px 24px; }
.chain-pill.pro i { color: #fff; font-size: 14px; }
.chain-gap { width: 2px; height: 16px; background: var(--line-2); margin-left: 27px; }
.us .chain-gap { background: transparent; height: 26px; display: grid; place-items: center; margin-left: 14px; width: auto; }
.us .chain-gap i { color: var(--blue); font-size: 15px; }
.chain-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); font-style: italic; }
.us .chain-note { color: var(--ink-2); font-style: normal; font-weight: 600; }
.us .chain-checks { margin-top: 20px; }
.us .chain-checks li { font-size: 13.8px; color: var(--slate); padding: 4px 0 4px 24px; position: relative; }
.us .chain-checks li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 7px; color: var(--teal); font-size: 11px;
}
@media (max-width: 860px) {
  .layers { grid-template-columns: 1fr; }
  .layers-col { padding: 8px 0 36px; }
  .layers-col + .layers-col { border-left: none; border-top: 1px solid var(--line); padding-top: 36px; }
}
@media (min-width: 861px) { .nav-close { display: none; } }
@media (max-width: 620px) {
  .grid-3, .grid-4, .process, .process.cols-5, .process.cols-6 { grid-template-columns: 1fr; }
  .process .p-step::after { display: none; }
  .bento { grid-template-columns: 1fr; }
  .b-card.b-lg { grid-column: span 1; }
  .apps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 10px; }
  .tab-panel { padding: 28px 22px; }
  .tab-panel .checklist { columns: 1; }
  .f-row { grid-template-columns: 56px 1fr; gap: 16px; }
  .f-row .f-num { font-size: 26px; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 58px; }
}

/* ---------- Showcase section ("See It Working") — light grey with grid ---------- */
.section.showcase {
  position: relative; overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section.showcase::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(113, 75, 103, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(113, 75, 103, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.section.showcase .container { position: relative; z-index: 1; }
/* Laptop-mockup PNGs are transparent and carry their own frame — no card box */
.section.showcase .shot img { background: transparent; }
.section.showcase .shot figcaption { margin-top: 22px; }
.section.showcase .mockup { box-shadow: var(--shadow-lg); }

/* numbered chapter pill */
.chapter-num {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.chapter-num b {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--white);
  color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 0;
  box-shadow: var(--shadow-sm);
}

/* floating glass chips over screenshots */
.shot-wrap { position: relative; }
.shot-phone .shot-wrap { max-width: 292px; margin: 0 auto; }
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 40px;
  background: rgba(255, 255, 255, .92); border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--ink-2); font-size: 12.5px; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: chipFloat 5s ease-in-out infinite;
}
.float-chip i { color: var(--blue); }
.float-chip.tl { top: -14px; left: -12px; }
.float-chip.br { bottom: -14px; right: -12px; animation-delay: 2.5s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none; } }
@media (max-width: 620px) { .float-chip { display: none; } }

/* ---------- Logo palette accents (homepage) ---------- */
/* Thin brand-gradient strip across the very top of the page */
body.home::before { content: ""; display: block; height: 4px; background: var(--logo-gradient); }

/* Six delivery steps — one logo color each */
.home .pf-step { --sc: var(--blue); --sc-soft: var(--blue-soft); }
.home .pf-step:nth-child(1) { --sc: var(--logo-teal);   --sc-soft: #e7f8f2; }
.home .pf-step:nth-child(2) { --sc: var(--logo-blue);   --sc-soft: #eaf2fd; }
.home .pf-step:nth-child(3) { --sc: var(--logo-yellow); --sc-soft: #fff5e0; }
.home .pf-step:nth-child(4) { --sc: var(--logo-orange); --sc-soft: #ffefe2; }
.home .pf-step:nth-child(5) { --sc: var(--logo-pink);   --sc-soft: #fde8f1; }
.home .pf-step:nth-child(6) { --sc: var(--logo-purple); --sc-soft: #efecfb; }
.home .pf-icon { color: var(--sc); background: var(--sc-soft); }
.home .pf-step:hover .pf-icon { background: var(--sc); color: #fff; }
.home .pf-week { color: var(--sc); background: var(--sc-soft); }
.home .pf-arrow { color: var(--muted); }

/* Service list numbers cycle through the logo colors */
.home .svc-row:nth-child(6n+1) .n { color: var(--logo-teal); }
.home .svc-row:nth-child(6n+2) .n { color: var(--logo-blue); }
.home .svc-row:nth-child(6n+3) .n { color: var(--logo-yellow); }
.home .svc-row:nth-child(6n+4) .n { color: var(--logo-orange); }
.home .svc-row:nth-child(6n+5) .n { color: var(--logo-pink); }
.home .svc-row:nth-child(6n)   .n { color: var(--logo-purple); }

/* Module tiles — recolor to the logo palette */
.home .app-tile:nth-child(6n+1) .tile { background: var(--logo-teal); }
.home .app-tile:nth-child(6n+2) .tile { background: var(--logo-blue); }
.home .app-tile:nth-child(6n+3) .tile { background: var(--logo-yellow); }
.home .app-tile:nth-child(6n+4) .tile { background: var(--logo-orange); }
.home .app-tile:nth-child(6n+5) .tile { background: var(--logo-pink); }
.home .app-tile:nth-child(6n)   .tile { background: var(--logo-purple); }

/* ---------- "What you get" feature cards + document-flow band ---------- */
.wyg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 30px; }
.wyg-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.wyg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.wyg-icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  font-size: 20px; color: var(--wc, var(--blue)); background: var(--wc-soft, var(--blue-soft));
  margin-bottom: 18px; transition: all .25s;
}
.wyg-card:hover .wyg-icon { background: var(--wc, var(--blue)); color: #fff; }
.wyg-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.wyg-card p { color: var(--slate); font-size: 14.5px; line-height: 1.65; margin: 0; }

.flow-band {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 38px;
}
.flow-band h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.flow-band p { color: var(--slate); font-size: 14.5px; line-height: 1.65; margin: 0; }
.flow-chain { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.flow-chain i { color: var(--muted); font-size: 15px; }
.flow-pill {
  font-size: 13px; font-weight: 700; white-space: nowrap;
  padding: 9px 16px; border-radius: 30px;
  background: var(--white); border: 1px solid var(--line-2); color: var(--ink-2);
}
.flow-pill.acct { background: var(--blue); border-color: var(--blue); color: #fff; }
@media (max-width: 900px) {
  .wyg-grid { grid-template-columns: 1fr; }
  .flow-band { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
}

/* ---------- Risk / containment cards ("Why ERP projects slip") ---------- */
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.risk-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 4px solid var(--rc, var(--blue));
  padding: 26px 24px 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.risk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.risk-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.risk-icon {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 18px;
  color: var(--rc, var(--blue)); background: var(--rc-soft, var(--blue-soft)); transition: all .25s;
}
.risk-card:hover .risk-icon { background: var(--rc, var(--blue)); color: #fff; }
.risk-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.risk-card h3 { font-size: 18px; letter-spacing: -0.01em; margin: 2px 0 0; }
.risk-p { color: var(--slate); font-size: 14px; line-height: 1.65; margin: 0 0 18px; flex: 1; }
.risk-fix { background: #e6f7f4; border-radius: 10px; padding: 14px 16px; }
.risk-fix-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.risk-fix p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .risk-grid { grid-template-columns: 1fr; } }

/* ---------- Handover manifest (Deliverables) ---------- */
.manifest {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.manifest-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 20px 30px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.manifest-title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; color: var(--ink); }
.manifest-title i { color: var(--blue); }
.manifest-count { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.manifest-grid { display: grid; grid-template-columns: 1fr 1fr; }
.manifest-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px 30px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.manifest-item:nth-child(odd) { border-right: 1px solid var(--line); }
.manifest-item:nth-last-child(-n+2) { border-bottom: none; }
.manifest-item:hover { background: var(--bg-soft); }
.mi-icon {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 17px;
  color: var(--mc, var(--blue)); background: var(--mc-soft, var(--blue-soft)); transition: all .25s;
}
.manifest-item:hover .mi-icon { background: var(--mc, var(--blue)); color: #fff; }
.mi-body h3 { font-size: 16.5px; letter-spacing: -0.01em; margin-bottom: 6px; }
.mi-body p { font-size: 13.8px; color: var(--slate); line-height: 1.6; margin: 0; }
.mi-check { color: var(--teal); font-size: 16px; flex: 0 0 auto; margin-left: auto; margin-top: 4px; }
@media (max-width: 900px) {
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest-item { padding: 20px 22px; }
  .manifest-item:nth-child(odd) { border-right: none; }
  .manifest-item:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Related-services "next step" cards ---------- */
.next-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.next-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.next-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--nc, var(--blue)); }
.next-icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  font-size: 19px; color: var(--nc, var(--blue)); background: var(--nc-soft, var(--blue-soft));
  margin-bottom: 16px; transition: all .25s;
}
.next-card:hover .next-icon { background: var(--nc, var(--blue)); color: #fff; }
.next-card h3 { font-size: 17.5px; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px; }
.next-card p { color: var(--slate); font-size: 14px; line-height: 1.65; margin: 0 0 16px; flex: 1; }
.next-go { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; color: var(--nc, var(--blue)); }
.next-go i { transition: transform .2s; }
.next-card:hover .next-go i { transform: translateX(5px); }
@media (max-width: 760px) { .next-grid { grid-template-columns: 1fr; } }

/* ---------- Home hero background: logo-tint glows + floating module tiles ---------- */
.home .hero::before {
  background:
    radial-gradient(560px 360px at 12% 15%, rgba(43, 127, 224, .10), transparent 60%),
    radial-gradient(520px 340px at 88% 12%, rgba(238, 42, 123, .07), transparent 60%),
    radial-gradient(600px 400px at 92% 88%, rgba(22, 185, 141, .10), transparent 60%),
    radial-gradient(520px 360px at 6% 90%, rgba(245, 168, 0, .09), transparent 60%);
}
.hero-float { position: absolute; inset: 0; pointer-events: none; }
.hero-float span {
  position: absolute; width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 22px;
  color: var(--fc, var(--blue)); background: var(--fcs, var(--blue-soft));
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 12px 28px rgba(22, 24, 29, .07);
  opacity: .55;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) { .hero-float span { animation: none; } }
@media (max-width: 900px) { .hero-float { display: none; } }

/* ---------- Two-phone mobile app showcase ---------- */
.phone-duo { display: flex; gap: 20px; justify-content: center; align-items: flex-start; }
.phone-duo .shot-wrap { max-width: 225px; flex: 1 1 0; }
.phone-duo img { display: block; width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow-lg); }
.phone-duo .shot-wrap:last-child { margin-top: 38px; }
@media (max-width: 620px) { .phone-duo .shot-wrap { max-width: 46%; } }

/* ---------- Integration hub diagram ---------- */
.hub-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 64px;
  align-items: center; max-width: 960px; margin: 0 auto 30px;
}
.hub-col { display: flex; flex-direction: column; gap: 13px; }
.hub-col.left { align-items: flex-end; }
.hub-col.right { align-items: flex-start; }
.hub-col-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.hub-col-label i { color: var(--blue); font-size: 13px; }
.hub-node {
  position: relative; display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 12px 20px; font-weight: 700; font-size: 14px; color: var(--ink-2);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.hub-node:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hub-node::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--hc, var(--muted)); flex: 0 0 9px; }
.hub-node.more { border-style: dashed; font-weight: 600; font-size: 12.5px; color: var(--muted); box-shadow: none; }
.hub-node.more::before { display: none; }
.hub-col.left .hub-node::after,
.hub-col.right .hub-node::after {
  content: ""; position: absolute; top: 50%; width: 64px; height: 2px;
}
.hub-col.left .hub-node::after { left: 100%; background: linear-gradient(90deg, var(--hc, var(--line-2)), var(--line-2)); }
.hub-col.right .hub-node::after { right: 100%; background: linear-gradient(270deg, var(--hc, var(--line-2)), var(--line-2)); }
.hub-col .hub-node.more::after { display: none; }
.hub-core {
  width: 186px; height: 186px; border-radius: 50%; padding: 5px;
  background: conic-gradient(#16b98d, #2b7fe0, #f5a800, #ff7300, #ee2a7b, #5b45d1, #16b98d);
  box-shadow: var(--shadow-lg);
}
.hub-core-in {
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(135deg, #714B67 0%, #4b3245 100%);
  border: 4px solid var(--white);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  text-align: center;
}
.hub-core-in b { font-size: 20px; letter-spacing: -0.01em; }
.hub-core-in small { font-size: 11px; line-height: 1.5; opacity: .82; }
.hub-flow { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (max-width: 860px) {
  .hub-wrap { grid-template-columns: 1fr; gap: 30px; max-width: 420px; }
  .hub-col.left, .hub-col.right { align-items: stretch; }
  .hub-col .hub-node::after { display: none; }
  .hub-center { display: flex; justify-content: center; order: -1; }
}

section[id] { scroll-margin-top: 110px; }

/* ---------- Homepage band rhythm ---------- */
/* White / light-grey alternation; brand plum bands (stats, statement, CTA) and the
   yellow ribbon are the only color accents. No two adjacent bands share a color. */
.section.spec-band { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
