:root {
  --ink: #07334d;
  --ink-2: #194962;
  --muted: #5e7280;
  --line: #bfd1d8;
  --paper: #ffffff;
  --mist: #e9f3f1;
  --mist-2: #f5fbfb;
  --teal: #148a93;
  --green: #3e9d5c;
  --blue: #075a8c;
  --amber: #c6841c;
  --red: #c7443d;
  --shadow: 10px 12px 0 rgba(18, 45, 55, 0.22), 0 16px 28px rgba(17, 45, 55, 0.15);
  --soft-shadow: 0 14px 34px rgba(15, 53, 68, 0.14);
  --radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
}

[data-theme="dark"] {
  --ink: #edf8ff;
  --ink-2: #c9e3ee;
  --muted: #a9bdc8;
  --line: #36586a;
  --paper: #10293a;
  --mist: #071a26;
  --mist-2: #143146;
  --teal: #23a6b0;
  --green: #58b777;
  --blue: #42a2d4;
  --amber: #e0a846;
  --red: #ef6b62;
  --shadow: 10px 12px 0 rgba(0, 0, 0, 0.42), 0 16px 28px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(7, 51, 77, 0.14);
  background: rgba(239, 248, 247, 0.92);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .site-header {
  background: rgba(8, 25, 36, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: 160px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--ink-2);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
  background: var(--blue);
  transform: translateY(-1px);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--red);
  box-shadow: 5px 6px 0 rgba(68, 86, 91, 0.28);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.language-select,
.theme-toggle {
  min-height: 42px;
  border: 1px solid rgba(7, 51, 77, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 5px 6px 0 rgba(34, 66, 73, 0.16);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.language-select {
  width: 148px;
  padding: 0 12px;
}

.theme-toggle {
  min-width: 78px;
  padding: 0 14px;
  cursor: pointer;
}

.language-select:focus-visible,
.theme-toggle:focus-visible {
  outline: 3px solid rgba(20, 138, 147, 0.35);
  outline-offset: 2px;
}

[data-theme="dark"] .language-select,
[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: #17364b;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 690px);
  overflow: hidden;
  isolation: isolate;
  background: #cdddda;
}

[data-theme="dark"] .hero {
  background: #0b2232;
}

.hero-collage,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-collage {
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background: rgba(205, 221, 218, 0.84);
}

[data-theme="dark"] .hero-shade {
  background: rgba(7, 26, 38, 0.82);
}

.logo-tile,
.hero-screen,
.system-frame {
  position: absolute;
  border: 1px solid rgba(7, 51, 77, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

[data-theme="dark"] .logo-tile,
[data-theme="dark"] .hero-screen,
[data-theme="dark"] .system-frame {
  background: rgba(16, 41, 58, 0.9);
}

.logo-tile {
  display: grid;
  place-items: center;
  padding: 18px;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-screen {
  overflow: hidden;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-screen img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  object-position: top center;
}

.hero-main-screen {
  top: 78px;
  right: 4vw;
  width: min(720px, 52vw);
  height: min(460px, 45vw);
}

.hero-login-screen {
  right: 39vw;
  bottom: 58px;
  width: 260px;
  height: 176px;
}

.hero-lms-screen {
  right: 6vw;
  bottom: 48px;
  width: 315px;
  height: 190px;
}

.tile-1 {
  top: 96px;
  right: 8vw;
  width: 176px;
  height: 118px;
  transform: rotate(-2deg);
}

.tile-2 {
  right: 24vw;
  bottom: 68px;
  width: 210px;
  height: 126px;
  transform: rotate(2deg);
}

.tile-3 {
  right: -34px;
  bottom: 96px;
  width: 245px;
  height: 178px;
  opacity: 0.86;
}

.tile-4 {
  top: 260px;
  right: 18vw;
  width: 162px;
  height: 110px;
}

.tile-5 {
  top: 52px;
  right: 34vw;
  width: 170px;
  height: 92px;
}

.system-frame {
  width: 250px;
  padding: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.system-frame strong {
  display: block;
  font-size: 1.15rem;
  color: var(--blue);
}

.system-frame span {
  color: var(--muted);
  font-size: 0.92rem;
}

.frame-1 {
  right: 46vw;
  top: 42%;
}

.frame-2 {
  right: 18vw;
  top: 54%;
}

.frame-3 {
  right: 5vw;
  top: 27%;
}

.hero-content {
  width: min(780px, calc(100% - 36px));
  padding: clamp(82px, 12vw, 135px) 0 80px;
  margin-left: clamp(18px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1,
.section-heading h2,
.platform-copy h2,
.delivery-panel h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.04;
  color: var(--ink);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #264d60;
}

[data-theme="dark"] .hero-lead {
  color: var(--ink-2);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 6px 7px 0 rgba(34, 66, 73, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 8px 9px 0 rgba(34, 66, 73, 0.22);
  outline: none;
}

.button.primary {
  color: var(--paper);
  background: var(--blue);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(7, 51, 77, 0.22);
  background: rgba(255, 255, 255, 0.82);
}

[data-theme="dark"] .button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(16, 41, 58, 0.92);
}

.button.dark {
  color: var(--paper);
  background: var(--ink);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
}

.metric,
.product-card,
.capability-grid article,
.client-grid figure,
.delivery-panel,
.contact-section {
  border: 1px solid rgba(7, 51, 77, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .metric,
[data-theme="dark"] .product-card,
[data-theme="dark"] .capability-grid article,
[data-theme="dark"] .screen-card,
[data-theme="dark"] .client-grid figure,
[data-theme="dark"] .delivery-panel {
  background: rgba(16, 41, 58, 0.94);
}

.metric {
  min-height: 112px;
  padding: 20px;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-weight: 700;
}

.section,
.platform-section,
.delivery-section,
.contact-section {
  width: min(1240px, calc(100% - 32px));
  margin: 86px auto 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 840px;
}

.section-heading h2,
.platform-copy h2,
.delivery-panel h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p:not(.eyebrow),
.platform-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 730px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--blue);
}

.product-card.accent-green::before {
  background: var(--green);
}

.product-card.accent-teal::before {
  background: var(--teal);
}

.product-card.accent-amber::before {
  background: var(--amber);
}

.product-card.accent-red::before {
  background: var(--red);
}

.product-card.accent-blue::before {
  background: var(--blue);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
}

.product-code {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 5px 6px 0 rgba(22, 54, 63, 0.18);
}

.product-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--ink);
  background: var(--mist-2);
  border: 1px solid rgba(7, 51, 77, 0.14);
}

[data-theme="dark"] .product-mark,
[data-theme="dark"] .school-feature-list span {
  border-color: rgba(255, 255, 255, 0.16);
  background: #17364b;
}

.iphr-card .product-top img {
  width: 82px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
}

.product-card h3 {
  margin: 24px 0 12px;
  font-size: 2rem;
  line-height: 1;
  color: var(--blue);
}

.product-card p,
.product-card li,
.capability-grid p,
.delivery-steps p,
.site-footer p,
.site-footer span {
  font-family: Arial, Helvetica, sans-serif;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-preview {
  width: 100%;
  height: 128px;
  margin: 20px 0 0;
  border: 1px solid rgba(7, 51, 77, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 10px 22px rgba(17, 45, 55, 0.12);
}

.featured-product {
  grid-column: span 2;
}

.product-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  color: var(--ink-2);
  font-weight: 700;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.ipschools-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  width: min(1240px, calc(100% - 32px));
  margin: 86px auto 0;
}

.ipschools-copy,
.showcase-device,
.screen-card {
  border: 1px solid rgba(7, 51, 77, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.ipschools-copy {
  align-self: start;
  padding: clamp(24px, 4vw, 42px);
  background: #f8fbfa;
}

[data-theme="dark"] .ipschools-copy {
  background: #10293a;
}

.ipschools-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.03;
}

.ipschools-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 1.05rem;
}

.school-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.school-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 51, 77, 0.14);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--mist-2);
}

.showcase-device {
  overflow: hidden;
  grid-row: span 2;
  margin: 0;
  padding: 14px;
  background: #dbe9e7;
}

[data-theme="dark"] .showcase-device {
  background: #0d2637;
}

.showcase-device img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 5px;
  object-fit: cover;
  object-position: top center;
}

.showcase-device figcaption {
  padding: 12px 2px 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-2);
  font-weight: 800;
}

.school-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  overflow: hidden;
  min-height: 272px;
}

.screen-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid rgba(7, 51, 77, 0.14);
}

.screen-card div {
  padding: 16px;
}

.screen-card h3 {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 1.25rem;
}

.screen-card p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 0.93rem;
}

.platform-copy {
  padding: 18px 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-grid article {
  min-height: 178px;
  padding: 22px;
}

.capability-grid span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.capability-grid h3,
.delivery-steps h3 {
  margin: 18px 0 8px;
  font-size: 1.45rem;
  color: var(--blue);
}

.capability-grid p,
.delivery-steps p {
  margin: 0;
  color: var(--muted);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.client-grid figure {
  display: grid;
  place-items: center;
  min-height: 112px;
  margin: 0;
  padding: 18px;
}

.client-grid img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.02);
}

.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: #f8fbfa;
}

[data-theme="dark"] .delivery-panel,
[data-theme="dark"] .delivery-steps article {
  background: #10293a;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.delivery-steps article {
  min-height: 198px;
  padding: 20px;
  border: 1px solid rgba(7, 51, 77, 0.14);
  border-radius: var(--radius);
  background: var(--mist-2);
}

.delivery-steps strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 5vw, 54px);
  background: #07334d;
  color: var(--paper);
}

[data-theme="dark"] .contact-section {
  background: #07131c;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .site-header,
[dir="rtl"] .site-nav,
[dir="rtl"] .header-tools,
[dir="rtl"] .product-top,
[dir="rtl"] .contact-section,
[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .hero-content {
  margin-left: 0;
  margin-right: clamp(18px, 6vw, 82px);
}

[dir="rtl"] .product-card::before {
  inset: 0 0 0 auto;
}

[dir="rtl"] .product-card li {
  padding-left: 0;
  padding-right: 18px;
}

[dir="rtl"] .product-card li::before {
  left: auto;
  right: 0;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--paper);
}

.contact-copy {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1240px, calc(100% - 32px));
  margin: 56px auto 0;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(7, 51, 77, 0.14);
  color: var(--muted);
}

.site-footer img {
  width: 148px;
  height: auto;
}

.site-footer p {
  flex: 1;
  margin: 0;
  color: var(--ink-2);
  font-weight: 700;
}

.site-footer span {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .school-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(7, 51, 77, 0.14);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--soft-shadow);
    order: 4;
  }

  .header-tools {
    order: 2;
    margin-left: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero-content {
    margin-left: 24px;
    padding-top: 100px;
  }

  .hero-shade {
    background: rgba(205, 221, 218, 0.9);
  }

  .logo-tile,
  .hero-screen,
  .system-frame {
    opacity: 0.34;
  }

  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .ipschools-showcase,
  .platform-section,
  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .featured-product,
  .showcase-device {
    grid-column: auto;
    grid-row: auto;
  }

  .school-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding-inline: 10px;
    gap: 6px;
  }

  .brand {
    min-width: 82px;
  }

  .brand img {
    width: 82px;
  }

  .header-tools {
    gap: 4px;
    margin-left: auto;
  }

  .language-select {
    width: 82px;
    min-height: 36px;
    padding-inline: 6px;
    font-size: 0.68rem;
  }

  .theme-toggle {
    min-width: 38px;
    min-height: 36px;
    padding-inline: 6px;
    font-size: 0.68rem;
  }

  .nav-toggle {
    width: 38px;
    height: 36px;
    padding: 8px;
    flex-shrink: 0;
  }

  .hero {
    min-height: 420px;
  }

  .hero-main-screen {
    top: 70px;
    left: 14px;
    right: auto;
    width: calc(100vw - 28px);
    height: 282px;
  }

  .hero-login-screen,
  .hero-lms-screen,
  .system-frame {
    display: none;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 1.82rem;
    line-height: 1.02;
  }

  .hero-lead {
    display: -webkit-box;
    margin-top: 12px;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 38px;
    padding: 10px 8px;
    font-size: 0.73rem;
  }

  .metrics-band,
  .product-grid,
  .school-gallery,
  .capability-grid,
  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .ipschools-showcase {
    margin-top: 56px;
  }

  .ipschools-copy {
    padding: 22px;
  }

  .showcase-device {
    padding: 10px;
  }

  .screen-card {
    min-height: auto;
  }

  .screen-card img {
    height: 170px;
  }

  .metrics-band {
    margin-top: -70px;
  }

  .metric {
    min-height: 92px;
    padding: 16px;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-grid figure {
    min-height: 96px;
  }

  .client-grid img {
    height: 62px;
  }
}
