:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #596574;
  --soft-muted: #768291;
  --line: #dce4ec;
  --line-strong: #c9d5df;
  --paper: #ffffff;
  --canvas: #f7f9fc;
  --canvas-blue: #f1f8fc;
  --blue: #159bd3;
  --blue-dark: #0877b5;
  --blue-soft: #e7f5fb;
  --navy: #102536;
  --navy-soft: #19374c;
  --success: #137a58;
  --shadow: 0 18px 50px rgba(16, 37, 54, 0.10);
  --shadow-small: 0 8px 24px rgba(16, 37, 54, 0.08);
  --radius: 18px;
  --radius-small: 12px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-white { background: var(--paper); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 236, 0.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  display: block;
  width: 176px;
  height: auto;
  max-height: 52px;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
.desktop-nav a {
  position: relative;
  color: #354250;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 160ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid var(--blue-dark);
  border-radius: 10px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(8, 119, 181, 0.16);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.button:hover { transform: translateY(-1px); background: #066da8; box-shadow: 0 12px 24px rgba(8, 119, 181, 0.2); }
.button:focus-visible,
a:focus-visible,
summary:focus-visible { outline: 3px solid rgba(21, 155, 211, 0.35); outline-offset: 3px; }
.button-secondary {
  background: #fff;
  color: var(--blue-dark);
  border-color: var(--line-strong);
  box-shadow: none;
}
.button-secondary:hover { background: var(--blue-soft); box-shadow: none; }
.button-small { min-height: 42px; padding: 10px 16px; font-size: 0.87rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.compact-row { margin-top: 24px; align-items: center; gap: 20px; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  background:
    radial-gradient(circle at 88% 12%, rgba(21, 155, 211, 0.12), transparent 33%),
    linear-gradient(180deg, #f5fbfe 0%, #f7f9fc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -160px 38%;
  height: 260px;
  border-radius: 50%;
  background: rgba(21, 155, 211, 0.045);
  transform: rotate(-6deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(450px, 1.06fr);
  align-items: center;
  gap: 70px;
}
.eyebrow,
.kicker,
.project-type {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.85rem, 5.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.24;
  letter-spacing: -0.025em;
}
.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  color: #41505f;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 650;
}
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.work-board {
  padding: 18px;
  border: 1px solid rgba(201, 213, 223, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.work-board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 6px 16px;
}
.work-board-heading div { display: grid; gap: 2px; }
.work-board-heading .kicker { margin: 0; font-size: 0.67rem; }
.work-board-heading strong { font-size: 0.96rem; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(19, 122, 88, 0.10);
}
.work-tile {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.work-tile:hover { transform: translateY(-2px); border-color: #adc5d5; box-shadow: var(--shadow-small); }
.work-tile-large { margin-bottom: 12px; }
.work-board-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.work-image-frame {
  min-height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #eef3f7;
}
.work-image-frame.compact { min-height: 138px; }
.work-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.work-tile-copy { display: grid; gap: 2px; }
.work-tile-copy span { color: var(--blue-dark); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.work-tile-copy strong { color: #2c3945; font-size: 0.89rem; line-height: 1.35; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-grid > div { padding: 24px 26px; border-left: 1px solid var(--line); }
.trust-strip-grid > div:first-child { border-left: 0; padding-left: 0; }
.trust-strip-grid > div:last-child { padding-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: 0.9rem; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }

.intro-grid,
.section-heading-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}
.intro-copy p,
.section-heading-row > p,
.extensions-intro > p,
.about-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}
.intro-copy p + p,
.about-card p + p { margin-top: 18px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.principle-card,
.service-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.principle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.77rem;
  font-weight: 800;
}
.principle-card p,
.service-card p,
.extension-card p,
.process-grid p,
.project-content > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-section { background: var(--canvas-blue); }
.section-heading-row { grid-template-columns: 1.2fr 0.8fr; align-items: end; }
.section-heading-row > p { max-width: 500px; justify-self: end; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service-card { min-height: 340px; display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(16, 37, 54, 0.04); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border: 1px solid #c7e6f3;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.service-card .text-link { margin-top: auto; padding-top: 24px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}
.text-link span { transition: transform 150ms ease; }
.text-link:hover span { transform: translateX(3px); }

.project-list { display: grid; gap: 36px; margin-top: 52px; }
.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(16, 37, 54, 0.07);
}
.project-card-reverse .project-media { order: 2; }
.project-media { min-height: 470px; display: grid; place-items: center; overflow: hidden; background: #eef3f7; }
.project-media img { width: 100%; height: 100%; object-fit: cover; }
.project-content { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.project-content h3 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); line-height: 1.08; }
.project-type { margin-bottom: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: #f8fafc; color: #42505d; font-size: 0.73rem; font-weight: 700; }
.data-note { margin-top: 24px !important; color: var(--soft-muted) !important; font-size: 0.76rem !important; line-height: 1.5; }

.extensions-section { background: #eef6fa; }
.extensions-layout { display: grid; grid-template-columns: 0.76fr 1.24fr; align-items: start; gap: 76px; }
.extensions-intro { position: sticky; top: 115px; }
.extensions-intro .button { margin-top: 28px; }
.extension-list { display: grid; gap: 14px; }
.extension-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 20px rgba(16, 37, 54, 0.045); }
.featured-extension { border-color: #b9ddea; }
.extension-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 24px; }
.status-pill { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: #e4f5ee; color: #126848; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.02em; }
.status-neutral { background: #edf1f5; color: #52606d; }
.extension-version { color: var(--soft-muted); font-size: 0.72rem; font-weight: 750; }
.extension-card h3 { font-size: 1.55rem; }
.extension-card .text-link { margin-top: 20px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; padding-left: 0; list-style: none; }
.process-grid li { position: relative; padding: 0 28px 0 0; }
.process-grid li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.process-grid li > span { display: block; margin-bottom: 32px; color: var(--blue-dark); font-size: 0.78rem; font-weight: 850; }

.about-section { background: var(--navy); color: #fff; }
.about-card { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 80px; align-items: start; }
.about-card h2 { color: #fff; }
.about-card p { color: #c9d7e0; }
.eyebrow-light { color: #7bc8e7; }

.contact-section { background: #fff; }
.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--canvas-blue);
}
.contact-card h2 { max-width: 700px; }
.contact-card p { max-width: 700px; margin-top: 16px; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.contact-email { color: var(--blue-dark); font-size: 1.25rem; font-weight: 800; text-decoration: none; }
.contact-actions > span { color: var(--soft-muted); font-size: 0.77rem; }

.site-footer { padding: 64px 0 28px; background: #0c1d29; color: #dbe7ee; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 0.72fr); gap: 50px; }
.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
  max-height: 56px;
}
.footer-brand p { max-width: 360px; margin: 18px 0 0; color: #a9bbc7; font-size: 0.88rem; }
.footer-grid h2 { margin: 0 0 18px; color: #fff; font-size: 0.79rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-grid a { display: block; width: fit-content; margin-top: 9px; color: #b9c8d2; font-size: 0.84rem; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(220, 228, 236, 0.16); color: #8fa3b1; font-size: 0.76rem; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 0.82rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 780px; }
  .work-board { max-width: 820px; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-grid > div:nth-child(3) { border-left: 0; }
  .trust-strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .project-card { grid-template-columns: 1fr; }
  .project-card-reverse .project-media { order: initial; }
  .project-media { min-height: 390px; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; justify-self: end; position: relative; }
  .mobile-nav summary { cursor: pointer; list-style: none; padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: 9px; background: #fff; color: var(--ink); font-size: 0.86rem; font-weight: 750; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav nav { position: absolute; right: 0; top: calc(100% + 10px); width: min(310px, calc(100vw - 40px)); padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-small); }
  .mobile-nav nav a { display: block; padding: 11px 10px; border-radius: 8px; color: #354250; font-size: 0.9rem; font-weight: 650; text-decoration: none; }
  .mobile-nav nav a:hover { background: var(--blue-soft); }
  .intro-grid, .section-heading-row, .extensions-layout, .about-card, .contact-card { grid-template-columns: 1fr; gap: 30px; }
  .section-heading-row > p { justify-self: start; }
  .principle-grid, .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .extensions-intro { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .process-grid li:nth-child(3) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 68px; }
  .brand img { width: 150px; max-height: 46px; }
  .hero { padding-top: 64px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-lead { font-size: 1.04rem; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .compact-row .button { width: auto; }
  .trust-list { display: grid; gap: 8px; }
  .work-board { padding: 12px; border-radius: 18px; }
  .work-board-row { grid-template-columns: 1fr; }
  .work-image-frame { min-height: 190px; }
  .work-image-frame.compact { min-height: 170px; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-grid > div { padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .trust-strip-grid > div:last-child { border-bottom: 0; }
  .principle-card, .service-card, .extension-card { padding: 24px; }
  .project-media { min-height: 270px; }
  .project-content { padding: 30px 24px; }
  .project-content h3 { font-size: 2rem; }
  .extension-card-top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li + li, .process-grid li:nth-child(3) { padding: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .process-grid li:first-child { border-top: 0; padding-top: 0; }
  .process-grid li > span { margin-bottom: 18px; }
  .about-card { gap: 24px; }
  .contact-card { padding: 30px 24px; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}


/* ezyNet complete authentic light-site layer v2.0.0 */
:root {
  --green: #14805c;
  --green-soft: #eaf7f2;
  --violet: #6b5bd2;
  --violet-soft: #f0effc;
  --orange: #d86c32;
  --orange-soft: #fff1e9;
}
body { overflow-x: hidden; }
.desktop-nav { gap: 20px; }
.desktop-nav a { font-size: 0.86rem; white-space: nowrap; }
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { min-width: 0; }
.service-card .service-icon.wp { background: var(--violet-soft); color: var(--violet); }
.service-card .service-icon.web { background: var(--green-soft); color: var(--green); }
.service-card .service-icon.sys { background: var(--orange-soft); color: var(--orange); }
.about-section { background: #edf6fb; color: var(--ink); }
.about-card h2 { color: var(--ink); }
.about-card p { color: var(--muted); }
.eyebrow-light { color: var(--blue-dark); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  background:
    radial-gradient(circle at 88% 10%, rgba(21,155,211,.14), transparent 34%),
    linear-gradient(180deg, #f3faff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 80px solid rgba(21,155,211,.035);
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 68px;
}
.page-hero-copy { min-width: 0; }
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5.15vw, 4.9rem);
  line-height: 1.02;
}
.page-hero .hero-lead { max-width: 720px; }
.page-visual {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.page-visual::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(21,155,211,.08);
  border-radius: 17px;
  pointer-events: none;
}
.page-visual img { position: relative; z-index: 1; width: 100%; border-radius: 14px; }
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 12px;
  border: 1px solid #cde8dc;
  border-radius: 999px;
  background: #f3fbf7;
  color: #126d50;
  font-size: .79rem;
  font-weight: 750;
}
.hero-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.content-section { background: var(--paper); }
.content-section.alt { background: var(--canvas); }
.section-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 76px;
}
.section-intro-copy p:first-child { margin-top: 0; }
.section-intro-copy p:last-child { margin-bottom: 0; }
.section-heading-center { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading-center .eyebrow { margin-bottom: 14px; }
.section-heading-center p { margin: 18px auto 0; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-top: 46px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.info-card,
.capability-card,
.platform-card,
.faq-card,
.stat-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}
.info-card { display: flex; flex-direction: column; }
.info-card .card-icon,
.platform-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.info-card p,
.capability-card p,
.platform-card p,
.faq-card p { margin: 14px 0 0; color: var(--muted); font-size: .94rem; }
.info-card .text-link { margin-top: auto; padding-top: 22px; }
.capability-card .number {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split-layout.reverse .split-media { order: 2; }
.split-media {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-small);
}
.split-media img { width: 100%; border-radius: 13px; }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list,
.feature-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #3e4a56;
}
.check-list li::before,
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}
.plain-list li { padding-bottom: 12px; border-bottom: 1px solid var(--line); color: #3e4a56; }
.plain-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.promo-band { background: #eef7fc; }
.promo-card {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 58px;
  padding: 50px;
  border: 1px solid #cfe2ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-small);
}
.promo-card p:not(.eyebrow) { color: var(--muted); }
.promo-card .page-visual { box-shadow: none; }

.platform-compare { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; margin-top: 42px; }
.platform-card { position: relative; overflow: hidden; }
.platform-card::after { content: ""; position: absolute; right: -45px; bottom: -45px; width: 120px; height: 120px; border-radius: 50%; background: rgba(21,155,211,.06); }
.platform-card strong { display: block; margin-top: 18px; color: var(--ink); }

.metadata-strip { background: #fff; border-bottom: 1px solid var(--line); }
.metadata-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.metadata-grid > div { padding: 24px 26px; border-left: 1px solid var(--line); }
.metadata-grid > div:first-child { border-left: 0; }
.metadata-grid span { display: block; color: var(--soft-muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.metadata-grid strong { display: block; margin-top: 6px; color: var(--ink); font-size: .93rem; }

.story-section { background: #fff; }
.story-section.alt { background: var(--canvas); }
.story-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(460px,1.18fr); align-items: center; gap: 72px; }
.story-grid.reverse .story-media { order: 2; }
.story-index { display: inline-flex; margin-bottom: 18px; color: var(--blue-dark); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.story-copy > p:not(.eyebrow) { color: var(--muted); }
.story-media { padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-small); }
.story-media img { width: 100%; border-radius: 13px; }

.proof-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-top: 44px; }
.proof-card { padding: 28px; border-top: 3px solid var(--blue); border-radius: 0 0 15px 15px; background: #fff; box-shadow: var(--shadow-small); }
.proof-card .eyebrow { margin-bottom: 11px; font-size: .65rem; }
.proof-card p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }

.notice-card { padding: 28px 30px; border: 1px solid #cfe2ed; border-left: 5px solid var(--blue); border-radius: 14px; background: #f3faff; color: #384754; }
.notice-card strong { color: var(--ink); }

.extension-catalogue { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-top: 46px; }
.product-card { display: flex; flex-direction: column; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-small); }
.product-card.featured { border-color: #add7e8; box-shadow: 0 18px 44px rgba(8,119,181,.11); }
.product-card p { color: var(--muted); }
.product-card .text-link { margin-top: auto; padding-top: 18px; }
.status-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 22px; }

.faq-list { display: grid; gap: 14px; max-width: 900px; margin: 42px auto 0; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 5px 18px rgba(16,37,54,.05); }
.faq-list summary { cursor: pointer; padding: 20px 52px 20px 22px; color: var(--ink); font-weight: 750; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content: "+"; position:absolute; right:22px; top:50%; transform:translateY(-50%); color:var(--blue-dark); font-size:1.35rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin:0; padding:0 22px 22px; color:var(--muted); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.contact-aside { position: sticky; top: 110px; }
.contact-aside p:not(.eyebrow) { color: var(--muted); }
.contact-points { display: grid; gap: 18px; margin-top: 30px; }
.contact-point { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.contact-point span { display: block; color: var(--soft-muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-point strong, .contact-point a { display:block; margin-top:5px; color:var(--ink); text-decoration:none; }
.project-form { padding: 36px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-small); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.form-field { display: grid; gap: 8px; min-width: 0; }
.form-field.full { grid-column: 1/-1; }
.form-field label { color: #354250; font-size: .84rem; font-weight: 750; }
.form-field input,
.form-field select,
.form-field textarea { width:100%; border:1px solid var(--line-strong); border-radius:10px; background:#fbfdff; color:var(--ink); padding:12px 13px; outline:none; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--blue); box-shadow:0 0 0 4px rgba(21,155,211,.1); background:#fff; }
.form-note { margin: 16px 0 0; color: var(--soft-muted); font-size: .79rem; }
.form-message { display:none; margin-top:18px; padding:14px 16px; border-radius:10px; background:var(--green-soft); color:#126d50; font-weight:650; }
.form-message.show { display:block; }

.utility-page { min-height: calc(100vh - 330px); display:grid; place-items:center; padding:100px 0; background:linear-gradient(180deg,#f3faff,#f7f9fc); }
.utility-card { width:min(720px,calc(100% - 40px)); padding:52px; border:1px solid var(--line); border-radius:24px; background:#fff; text-align:center; box-shadow:var(--shadow); }
.utility-card .utility-code { display:block; color:var(--blue-dark); font-size:.8rem; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.utility-card h1 { margin:16px auto 0; font-size:clamp(2.5rem,7vw,4.5rem); }
.utility-card p { max-width:620px; margin:20px auto 0; color:var(--muted); }
.utility-card .button-row { justify-content:center; }

@media (max-width: 1160px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: .78rem; }
  .brand img { width: 158px; }
  .header-cta { padding-inline: 13px; }
  .services-grid, .card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 1000px) {
  .page-hero-grid, .promo-card, .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .page-visual, .story-media { max-width: 820px; }
  .story-grid.reverse .story-media, .split-layout.reverse .split-media { order: initial; }
  .section-intro, .split-layout, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .contact-aside { position: static; }
  .metadata-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .metadata-grid > div:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .metadata-grid > div:nth-child(4) { border-top:1px solid var(--line); }
  .extension-catalogue, .proof-grid, .card-grid.three { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 650px) {
  .page-hero { padding:64px 0; }
  .page-hero-grid { gap:34px; }
  .page-hero h1 { font-size:clamp(2.55rem,13vw,4rem); }
  .services-grid, .card-grid, .card-grid.two, .card-grid.three, .extension-catalogue, .proof-grid, .platform-compare { grid-template-columns:1fr; }
  .promo-card { padding:28px 22px; }
  .metadata-grid { grid-template-columns:1fr; }
  .metadata-grid > div, .metadata-grid > div:nth-child(3), .metadata-grid > div:nth-child(4) { border-left:0; border-top:1px solid var(--line); }
  .metadata-grid > div:first-child { border-top:0; }
  .story-grid { gap:30px; }
  .story-media, .split-media, .page-visual { padding:10px; border-radius:17px; }
  .info-card, .capability-card, .platform-card, .product-card, .project-form { padding:24px; }
  .form-grid { grid-template-columns:1fr; }
  .form-field.full { grid-column:auto; }
  .utility-card { padding:36px 24px; }
}
