:root {
  --ink: #0d1027;
  --ink-soft: #292c38;
  --paper: #f7f7f5;
  --muted: #bfb5b2;
  --blue: #4b84dd;
  --aqua: #9edfd9;
  --orange: #f09a00;
  --green: #1f8a70;
  --text: #161616;
  --line: rgba(13, 16, 39, .14);
  --max: 1344px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
h1,
h2,
h3,
p,
li,
a,
td,
th,
input,
textarea {
  overflow-wrap: anywhere;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 54px);
  font-size: 15px;
  font-weight: 700;
}
.nav-links a {
  padding: 10px 0;
  color: rgba(255, 255, 255, .94);
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 18px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}
.language-switcher a.active {
  background: var(--orange);
  color: #fff;
}
.flag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  font-size: 15px;
  line-height: 1;
}
.hero,
.subhero {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero-grid,
.subhero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
}
.hero-grid > *,
.subhero-grid > *,
.split > *,
.value-grid > *,
.solution-block > *,
.lead-panel > *,
.footer-grid > * {
  min-width: 0;
}
.hero-grid {
  min-height: 640px;
  padding: 72px 0 88px;
}
.hero-copy { max-width: 780px; }
h1,
.hero h1,
.subhero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}
h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}
p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.75;
}
.lede {
  max-width: 840px;
  color: rgba(255, 255, 255, .92);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.btn.secondary {
  background: transparent;
  color: var(--orange);
}
.hero-art,
.media-art {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art img {
  width: min(400px, 100%);
  height: 600px;
  object-fit: cover;
  object-position: center top;
}
.media-art img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 6px;
}
.section { padding: 78px 0; }
.section.light { background: #fff; }
.section.muted { background: #beb5b2; }
.section.blue { background: var(--blue); color: #fff; }
.section.dark { background: #4b4b4b; color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 20px;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.section.dark .eyebrow,
.section.blue .eyebrow { background: rgba(0, 0, 0, .45); }
.value-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.value-art img {
  width: 330px;
  height: 495px;
  object-fit: cover;
}
.check-list,
.simple-list {
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}
.check-list li,
.simple-list li {
  position: relative;
  padding-left: 26px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
}
.check-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}
.stats-grid,
.process-grid,
.plan-grid,
.team-grid,
.office-grid,
.solution-grid {
  display: grid;
  gap: 28px;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-number {
  margin: 0;
  font-size: clamp(42px, 5vw, 54px);
  line-height: 1;
  color: var(--aqua);
  font-weight: 400;
}
.stat-label {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}
.process-grid { grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
.process-item,
.plan-card,
.team-card,
.office-card,
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.process-item { padding: 30px; }
.process-item img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 22px;
}
.solution-grid { grid-template-columns: 1fr; }
.solution-block {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}
.solution-block.reverse { grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); }
.solution-block img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}
.solution-block.tall img { aspect-ratio: 2 / 3; }
.inline-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.solutions-hero .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  min-height: 540px;
  padding: 54px 0 62px;
}
.solutions-hero h1 {
  font-size: clamp(40px, 4.3vw, 60px);
}
.hero-grid.hero-grid-no-art,
.solutions-hero .hero-grid.hero-grid-no-art {
  grid-template-columns: minmax(0, 1040px);
  justify-content: start;
  min-height: auto;
  padding: 72px 0 84px;
}
.hero-grid-no-art .lede {
  max-width: 820px;
}
.product-proof {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  align-self: center;
  margin: 0;
}
.product-proof-school {
  max-width: 660px;
}
.product-proof-os {
  position: relative;
  min-height: 390px;
}
.proof-window {
  overflow: hidden;
  border: 1px solid rgba(145, 163, 194, .28);
  border-radius: 8px;
  background: linear-gradient(145deg, #101a35, #0c1229);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}
.proof-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.proof-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f59d00;
}
.proof-topbar span:nth-child(2) { background: #8fe8df; }
.proof-topbar span:nth-child(3) { background: #d5dbe8; }
.proof-topbar strong,
.proof-mini-title,
.proof-heading span,
.proof-rail b,
.proof-tabs span {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}
.proof-os-layout,
.proof-school-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 300px;
}
.proof-rail {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.proof-rail i {
  display: block;
  min-height: 34px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.proof-main,
.proof-school-main {
  min-width: 0;
  padding: 22px;
  background: #eef3f9;
}
.proof-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.proof-tabs span {
  min-height: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
}
.proof-table {
  display: grid;
  gap: 10px;
}
.proof-table p {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.proof-table b {
  color: var(--blue);
}
.proof-table span {
  min-width: 0;
  font-weight: 900;
}
.proof-table em {
  color: #12a594;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.proof-app-window {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  padding: 18px;
  border-color: rgba(240, 154, 0, .42);
}
.proof-mini-title {
  margin-bottom: 14px;
  color: #fff;
}
.proof-app-grid,
.proof-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.proof-app-grid i,
.proof-role-grid i {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}
.proof-school-window {
  background: linear-gradient(145deg, #0e2a62, #0d1731);
}
.proof-school-main {
  background: #f3f8ff;
}
.proof-heading {
  margin-bottom: 18px;
}
.proof-heading span {
  color: var(--blue);
  text-transform: uppercase;
}
.proof-heading strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}
.proof-school-main .proof-role-grid i {
  border-color: #dbe6f4;
  background: #fff;
  color: var(--ink);
}
.proof-feed {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  margin-top: 18px;
}
.proof-feed span {
  display: block;
  min-height: 74px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(79, 130, 220, .18), rgba(143, 232, 223, .22));
}
.proof-feed span:first-child {
  grid-row: span 2;
  min-height: 160px;
}
.solution-preview {
  align-self: center;
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}
.solution-preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #e1e6ee;
  background: #fff;
  color: var(--ink);
}
.solution-preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6dbe6;
}
.solution-preview-bar span:first-child { background: var(--orange); }
.solution-preview-bar strong {
  margin-left: 10px;
  font-size: 13px;
}
.solution-preview-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 312px;
}
.solution-preview-body aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 16px;
  background: #10142f;
  color: #fff;
}
.solution-preview-body aside b {
  font-size: 12px;
  text-transform: uppercase;
}
.solution-preview-body aside em {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}
.solution-preview-body main {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
}
.solution-preview-body main > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.solution-preview-body main > strong {
  font-size: 24px;
  line-height: 1.2;
}
.solution-preview-body main > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.solution-preview-body i {
  min-height: 62px;
  display: flex;
  align-items: end;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e1e6ee;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.solution-card-grid,
.customer-grid,
.past-project-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.solution-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.customer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.past-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.past-project-grid.single {
  grid-template-columns: minmax(0, 680px);
}
.solution-card,
.customer-card,
.past-project-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
}
.section.muted .solution-card {
  background: rgba(255, 255, 255, .92);
}
.solution-card {
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}
.solution-card:hover,
.customer-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.solution-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.customer-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.customer-card-title {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.customer-card-name {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 900;
}
.solution-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}
.solution-card-top > span:not(.solution-icon),
.customer-card-label {
  color: var(--blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}
.customer-card-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.customer-card-logo img {
  max-width: 64px;
  max-height: 58px;
  object-fit: contain;
}
.customer-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin: 14px 0 22px;
}
.customer-card-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid #d7dde8;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}
.customer-local-name {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-local-name {
  margin: -10px 0 18px;
  color: rgba(255, 255, 255, .72);
  letter-spacing: 0;
}
.customer-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: #fff;
}
.customer-hero-logo img {
  max-width: 76px;
  max-height: 68px;
  object-fit: contain;
}
.customer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.customer-facts article {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.customer-facts span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}
.customer-facts strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}
.solution-card h3,
.customer-card h3,
.past-project-card h3 {
  font-size: 21px;
}
.solution-card p,
.customer-card p,
.past-project-card p {
  font-size: 14px;
  line-height: 1.65;
}
.customer-card > p {
  min-height: 116px;
  margin-bottom: 0;
}
.solution-card strong,
.customer-card strong {
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange);
}
.past-project-section {
  border-top: 1px solid var(--line);
}
.past-project-card {
  background: #f8fafc;
}
.past-project-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.past-project-heading h3 {
  margin: 0;
}
.past-project-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}
.past-project-icon.loyalty {
  background: #fff4dc;
  color: #a66700;
}
.past-project-icon.travel {
  background: #eaf4ff;
  color: #2d6db3;
}
.past-project-icon.health {
  background: #fff0f0;
  color: #d12626;
}
.ai-use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.ai-use-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(13, 16, 39, .12);
  border-radius: 8px;
  background: #fff;
}
.section.blue .ai-use-grid {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}
.section.blue .ai-use-grid article {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.ai-use-grid h3 {
  font-size: 17px;
  line-height: 1.3;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.school-hero .media-art img {
  aspect-ratio: 4 / 3;
  max-height: 420px;
}
.school-hero .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  min-height: 520px;
  padding: 48px 0 56px;
}
.school-hero h1 {
  font-size: clamp(40px, 4.2vw, 58px);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 800;
}
.school-subnav-wrap {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}
.school-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 12px 0;
}
.school-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #3a4050;
  font-size: 13px;
  font-weight: 800;
}
.school-subnav a:hover,
.school-subnav a.current {
  border-color: rgba(240, 154, 0, .38);
  background: #fff4dc;
  color: #9b6200;
}
.school-os-preview {
  align-self: center;
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}
.preview-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #e1e6ee;
  background: #fff;
  color: var(--ink);
}
.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6dbe6;
}
.preview-topbar span:first-child { background: var(--orange); }
.preview-topbar strong {
  margin-left: 10px;
  font-size: 13px;
}
.preview-body {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  min-height: 312px;
}
.preview-body aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 16px;
  background: #10142f;
  color: #fff;
}
.preview-body aside b {
  font-size: 12px;
  text-transform: uppercase;
}
.preview-body aside em {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}
.preview-body main {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px;
  color: var(--ink);
}
.preview-heading {
  display: grid;
  gap: 6px;
}
.preview-heading span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.preview-heading strong {
  font-size: 24px;
  line-height: 1.2;
}
.preview-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.preview-app-grid i {
  min-height: 76px;
  display: flex;
  align-items: end;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e1e6ee;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.preview-data-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.preview-data-line small {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eaf1fb;
  color: #285da8;
  font-size: 11px;
  font-weight: 800;
}
.os-signal {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}
.os-signal .stat-number {
  color: var(--aqua);
}
.school-feature-grid,
.role-grid,
.school-model-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}
.school-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.school-feature-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.school-feature,
.role-grid article,
.school-model-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.section.muted .school-feature,
.section.muted .school-model-card {
  background: rgba(255, 255, 255, .92);
}
.school-feature h3,
.role-grid h3,
.school-model-card h3 {
  font-size: 20px;
}
.school-feature p,
.role-grid p,
.school-model-card p {
  font-size: 14px;
  line-height: 1.65;
}
.module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.module-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: #f1f4f8;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}
.capability-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.capability-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.capability-card h3 {
  font-size: 19px;
}
.capability-card .simple-list {
  margin: 14px 0 0;
}
.capability-card .simple-list li {
  font-size: 13px;
  line-height: 1.5;
}
.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section.blue .role-grid article {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}
.school-model-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.school-model-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.model-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.model-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 8px;
  background: #f1f4f8;
  color: var(--blue);
  overflow: hidden;
}
.model-icon svg {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.model-card-top > span:not(.model-icon) {
  color: var(--blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}
.school-model-card strong {
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange);
}
.school-model-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.school-model-card:hover .model-icon {
  background: #fff3dc;
  color: var(--orange);
}
.school-model-card.current {
  border-color: var(--orange);
  background: #fff8ea;
}
.school-model-card em {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}
.school-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.model-nav-section {
  border-top: 1px solid var(--line);
  background: #f7f7f5;
}
.model-nav-section h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.model-nav-section .school-model-card {
  padding: 18px;
}
.model-nav-section .school-model-card p {
  font-size: 13px;
  line-height: 1.55;
}
.section.blue .simple-list li,
.section.dark .simple-list li {
  color: #fff;
}
.page-intro {
  padding: 76px 0 58px;
  background: var(--ink);
  color: #fff;
}
.page-intro p { max-width: 880px; color: rgba(255, 255, 255, .9); }
.plan-grid { grid-template-columns: repeat(3, 1fr); }
.plan-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.plan-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 24px;
}
.plan-card .eyebrow {
  align-self: flex-start;
  margin-bottom: 18px;
  font-size: 11px;
}
.plan-card .simple-list {
  margin-bottom: 28px;
}
.plan-card .btn {
  margin-top: auto;
  text-align: center;
}
.price {
  margin-top: 20px;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  color: var(--orange);
}
.price small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}
.table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 14px;
}
th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
th {
  background: #f0f2f5;
  font-size: 15px;
}
.section-row td {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.ok { color: var(--green); font-weight: 800; }
.dash { color: #777; font-weight: 800; }
.team-grid { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.team-card div { padding: 22px; }
.timeline {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 36px;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 62px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(75, 132, 221, .42), rgba(13, 16, 39, .18));
}
.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.timeline-year-block {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding-top: 18px;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(13, 16, 39, .16), 0 8px 18px rgba(13, 16, 39, .18);
}
.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(13, 16, 39, .1);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}
.timeline-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
.timeline-card {
  min-width: 0;
  padding: 24px 28px;
  border: 1px solid rgba(13, 16, 39, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 40px rgba(13, 16, 39, .08);
}
.timeline-row.current .timeline-card {
  border-color: rgba(240, 154, 0, .54);
  background: #fffaf0;
  box-shadow: 0 24px 52px rgba(240, 154, 0, .16);
}
.timeline-row.current .timeline-dot {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(240, 154, 0, .18), 0 10px 24px rgba(13, 16, 39, .18);
}
.timeline-row.current .timeline-year {
  color: #9b6200;
  border-color: rgba(240, 154, 0, .35);
  background: #fff4dc;
}
.timeline ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 54px;
  align-items: start;
}
.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.hp-field {
  display: none !important;
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(13, 16, 39, .22);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  background: #fff;
}
textarea { resize: vertical; }
.privacy-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #555;
}
.privacy-note a { color: var(--blue); text-decoration: underline; }
.lead-form-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}
.lead-form-status.success { color: var(--green); }
.lead-form-status.error { color: #b42318; }
.office-grid { grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
.office-card { padding: 26px; }
.office-card img {
  width: 150px;
  height: 69px;
  object-fit: contain;
  margin-bottom: 22px;
}
.news-card {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
}
.news-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}
.article {
  background: #fff;
  padding: 70px 0;
}
.article-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}
.article-media {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 36px;
}
.article p {
  font-size: 17px;
  line-height: 1.85;
}
.footer {
  background: #fff;
  border-top: 1px solid rgba(13, 16, 39, .1);
  padding: 46px 0 40px;
}
.footer .shell {
  width: min(var(--max), calc(100% - 48px));
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(340px, .92fr) minmax(420px, 1.08fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.footer-brand,
.footer-menu,
.contact {
  min-width: 0;
}
.footer-brand {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.footer-brand img { width: 70px; height: 70px; object-fit: contain; }
.footer-brand strong,
.footer h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}
.footer p,
.footer li,
.contact-line {
  font-size: 14px;
  line-height: 1.65;
}
.footer p {
  max-width: 430px;
  margin: 0;
  color: rgba(22, 22, 22, .78);
}
.footer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu a {
  display: block;
  padding: 0;
  color: rgba(13, 16, 39, .82);
  font-weight: 700;
}
.footer-menu a:hover {
  color: var(--orange);
}
.contact {
  display: grid;
  gap: 14px;
  font-style: normal;
}
.contact h3 { margin-bottom: 2px; }
.contact-line {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(13, 16, 39, .84);
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #eef3fb;
}
.contact-icon img {
  width: 16px;
  max-height: 16px;
  object-fit: contain;
  opacity: .72;
}
.copyright {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 18px 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  .hero-grid,
  .subhero-grid,
  .split,
  .value-grid,
  .solution-block,
  .solution-block.reverse,
  .plan-grid,
  .team-grid,
  .office-grid,
  .lead-panel,
  .footer-grid,
  .school-feature-grid,
  .capability-map,
  .role-grid,
  .school-model-grid,
  .solution-card-grid,
  .customer-grid,
  .past-project-grid,
  .ai-use-grid,
  .school-cta,
  .news-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: 0;
    padding: 56px 0 64px;
  }
  .hero-art { justify-content: flex-start; }
  .hero-art img {
    width: min(360px, 100%);
    height: auto;
    aspect-ratio: 2 / 3;
  }
  .value-art img {
    width: min(330px, 100%);
    height: auto;
    aspect-ratio: 2 / 3;
  }
  .stats-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { padding-top: 0; }
  .solution-block.reverse .media-art { order: 0; }
  .solution-block.reverse .solution-copy { order: 1; }
  .school-feature-grid,
  .school-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .school-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .solutions-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .product-proof {
    justify-self: start;
    max-width: 720px;
  }
  .proof-app-window {
    position: relative;
    width: 72%;
    margin: -58px 0 0 auto;
  }
  .capability-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solution-card-grid,
  .customer-grid,
  .past-project-grid,
  .ai-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }
  thead { display: none; }
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }
  tr {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(80px, auto);
    gap: 16px;
    align-items: start;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(13, 16, 39, .1);
    font-size: 13px;
  }
  td::before {
    content: attr(data-label);
    color: #5d6270;
    font-weight: 700;
  }
  td:first-child {
    display: block;
    padding: 14px;
    background: #f0f2f5;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
  }
  td:first-child::before { content: none; }
  td:last-child { border-bottom: 0; }
  .section-row {
    border: 0;
    background: transparent;
  }
  .section-row td {
    display: block;
    border: 0;
    border-radius: 6px;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
  }
  .section-row td::before { content: none; }
}

@media (max-width: 560px) {
  .shell,
  .article-shell { width: min(var(--max), calc(100% - 28px)); }
  .site-header { position: sticky; }
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 10px 0 12px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
    min-width: 0;
  }
  .brand img { width: 36px; height: 36px; }
  .brand-title {
    font-size: 0;
    white-space: nowrap;
  }
  .brand-title::after {
    content: "InnoDigi";
    font-size: 16px;
    line-height: 1;
  }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: visible;
    padding: 2px 0 0;
    font-size: 11px;
  }
  .nav-links a {
    flex: 0 1 auto;
    white-space: nowrap;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(245, 157, 0, .12);
    border-color: rgba(245, 157, 0, .88);
  }
  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    justify-self: end;
    gap: 2px;
    padding: 3px;
  }
  .language-switcher a {
    min-height: 26px;
    gap: 4px;
    padding: 0 8px;
    font-size: 10.5px;
  }
  .flag-icon {
    width: 14px;
    font-size: 12px;
  }
  h1,
  .hero h1,
  .subhero h1,
  h2 { font-size: 32px; }
  h3 { font-size: 21px; }
  p { font-size: 15px; line-height: 1.65; }
  .hero-grid {
    padding: 42px 0 48px;
    gap: 32px;
  }
  .product-proof-os { min-height: 0; }
  .proof-os-layout,
  .proof-school-layout {
    grid-template-columns: 1fr;
  }
  .proof-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
  }
  .proof-rail b {
    width: 100%;
  }
  .proof-rail i {
    min-height: 30px;
    padding: 8px 10px;
  }
  .proof-main,
  .proof-school-main {
    padding: 16px;
  }
  .proof-app-window {
    display: none;
  }
  .proof-table p {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 46px;
  }
  .proof-table em {
    display: none;
  }
  .proof-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-feed {
    grid-template-columns: 1fr 1fr;
  }
  .proof-feed span,
  .proof-feed span:first-child {
    grid-row: auto;
    min-height: 58px;
  }
  .school-subnav {
    flex-wrap: wrap;
    overflow: visible;
    min-height: 0;
    padding: 12px 0;
    gap: 8px;
  }
  .school-subnav a {
    flex: 0 1 auto;
    justify-content: center;
    white-space: normal;
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
  .preview-body {
    grid-template-columns: 1fr;
  }
  .solution-preview-body {
    grid-template-columns: 1fr;
  }
  .preview-body aside {
    display: flex;
    flex-wrap: wrap;
  }
  .solution-preview-body aside {
    display: flex;
    flex-wrap: wrap;
  }
  .preview-app-grid,
  .solution-preview-body main > div,
  .capability-map {
    grid-template-columns: 1fr;
  }
  .page-intro {
    padding: 46px 0 42px;
  }
  .section { padding: 42px 0; }
  .btn { width: 100%; }
  .actions { gap: 12px; }
  .hero-art img,
  .media-art img,
  .solution-block img,
  .news-card img,
  .article-media {
    max-height: 340px;
  }
  .plan-card,
  .process-item,
  .office-card,
  .news-card {
    padding: 20px;
  }
  .plan-card img {
    width: 112px;
    height: 112px;
    margin-bottom: 18px;
  }
  .price { font-size: 28px; }
  .lead-panel { gap: 26px; }
  .stats-grid,
  .process-grid,
  .form-grid { grid-template-columns: 1fr; }
  .footer {
    padding: 34px 0 30px;
  }
  .footer-grid { gap: 24px; }
  .footer-brand,
  .footer-menu {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(13, 16, 39, .1);
  }
  .footer-brand {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }
  .footer-brand img {
    width: 58px;
    height: 58px;
  }
  .footer-menu ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .footer-menu a {
    padding: 0;
    background: transparent;
  }
  .timeline {
    gap: 14px;
  }
  .timeline::before {
    left: 15px;
  }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 36px;
  }
  .timeline-year-block {
    justify-items: start;
    grid-template-columns: auto auto auto;
    align-items: center;
    padding-top: 0;
  }
  .timeline-dot {
    position: absolute;
    left: -30px;
    top: 12px;
    width: 16px;
    height: 16px;
  }
  .timeline-year {
    min-width: 70px;
    min-height: 36px;
    font-size: 22px;
  }
  .timeline-card {
    padding: 20px;
  }
  .lead-form { padding: 20px; }
  .os-signal,
  .school-feature,
  .role-grid article,
  .school-model-card {
    padding: 20px;
  }
  .module-cloud span {
    min-height: 38px;
    font-size: 13px;
  }
  .customer-card-top {
    gap: 14px;
  }
  .customer-card-logo {
    width: 64px;
    height: 64px;
  }
  .customer-card-logo img {
    max-width: 52px;
    max-height: 48px;
  }
  .customer-card-name {
    font-size: 19px;
  }
  .customer-card > p {
    min-height: 0;
  }
  .customer-local-name {
    font-size: 11px;
  }
  .school-feature-grid,
  .school-model-grid,
  .solution-card-grid,
  .customer-grid,
  .past-project-grid,
  .ai-use-grid {
    grid-template-columns: 1fr;
  }
  .privacy-note { font-size: 11px; }
  .copyright { font-size: 12px; }
}

@media (max-width: 380px) {
  .section.blue .ai-use-grid {
    grid-template-columns: 1fr;
  }
}
