:root {
  --ink: #eef7ff;
  --muted: #aec0d4;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #172238;
  --white: #ffffff;
  --deep: #070b18;
  --brand-navy: #30439a;
  --brand-teal: #20d2ca;
  --brand-orange: #ff8a3d;
  --brand-lime: #bce852;
  --brand-magenta: #ff4db8;
  --brand-maroon: #833b51;
  --violet: #7b5cff;
  --royal: #10245c;
  --ice: #dffaff;
  --aqua: #103b47;
  --sky: #162a63;
  --warm: #4b2740;
  --platinum: #0b1020;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  --premium-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 77, 184, 0.18), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(32, 210, 202, 0.16), transparent 28%),
    linear-gradient(135deg, #070b18 0%, #101b38 44%, #171126 100%);
  background-attachment: fixed;
  background-size: auto;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 280px) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 110px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: #eef7ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(90deg, rgba(7, 11, 24, 0.88), rgba(16, 36, 92, 0.76), rgba(55, 18, 58, 0.72));
  backdrop-filter: blur(22px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-navy), var(--brand-teal), var(--brand-lime), var(--brand-magenta));
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #eef7ff;
  background: linear-gradient(90deg, rgba(7, 11, 24, 0.96), rgba(16, 36, 92, 0.9), rgba(55, 18, 58, 0.9));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(210px, 19vw, 260px);
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  opacity: 0.9;
}

.site-nav a:hover {
  color: var(--brand-lime);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(32, 210, 202, 0.42);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.9), rgba(255, 77, 184, 0.78), rgba(32, 210, 202, 0.78));
  box-shadow: 0 14px 30px rgba(32, 210, 202, 0.18);
  font-weight: 750;
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 92vh);
  overflow: hidden;
  color: #ffffff;
}

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

.hero-media {
  transform: scale(1.02);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.94), rgba(16, 36, 92, 0.82) 47%, rgba(65, 20, 69, 0.54)),
    radial-gradient(circle at 16% 18%, rgba(255, 77, 184, 0.35), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(32, 210, 202, 0.26), transparent 30%),
    radial-gradient(circle at 52% 52%, rgba(255, 138, 61, 0.16), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin: 92px 0 120px clamp(18px, 7vw, 108px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.consulting-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(2.35rem, 4.35vw, 4.85rem);
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(238, 247, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-magenta) 46%, var(--brand-teal));
  box-shadow: 0 20px 42px rgba(255, 77, 184, 0.28), 0 12px 28px rgba(32, 210, 202, 0.18);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.button.secondary:hover {
  border-color: rgba(34, 184, 189, 0.36);
  box-shadow: 0 12px 28px rgba(51, 71, 125, 0.1);
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, calc(100% - 36px));
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 30, 69, 0.78), rgba(51, 20, 66, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px 22px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.hero-panel span {
  color: rgba(238, 247, 255, 0.72);
}

.section-pad {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto 44px;
}

.section-head.compact {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.consulting-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.intro {
  background:
    radial-gradient(circle at 10% 10%, rgba(32, 210, 202, 0.14), transparent 30%),
    linear-gradient(135deg, #0d162c 0%, #122456 54%, #241333 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  gap: clamp(24px, 4vw, 60px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid > p {
  margin: 0;
  color: rgba(238, 247, 255, 0.76);
  font-size: 1.1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-row div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(32, 210, 202, 0.08));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.command-center {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 26, 42, 0.95), rgba(51, 71, 125, 0.9)),
    url("assets/security.webp");
  background-position: center;
  background-size: cover;
}

.command-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.command-copy,
.command-graphic {
  position: relative;
  z-index: 1;
}

.command-copy {
  max-width: 680px;
}

.command-copy .eyebrow {
  color: #9ff3f2;
}

.command-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.35rem);
  line-height: 1.04;
  text-wrap: balance;
}

.command-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.command-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.command-graphic {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(34, 184, 189, 0.22), transparent 44%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.command-ring,
.command-core,
.command-node {
  position: absolute;
}

.command-ring {
  inset: 14%;
  border: 1px solid rgba(159, 243, 242, 0.24);
  border-radius: 50%;
  animation: pulse-ring 5.8s ease-in-out infinite;
}

.ring-two {
  inset: 26%;
  border-color: rgba(243, 112, 33, 0.32);
  animation-delay: 1.4s;
}

.command-core {
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.command-core img {
  width: 64%;
}

.command-node {
  display: grid;
  gap: 2px;
  min-width: 144px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.command-node strong {
  font-size: 1.04rem;
}

.command-node span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.node-erp {
  top: 10%;
  left: 10%;
}

.node-cloud {
  top: 16%;
  right: 8%;
}

.node-security {
  right: 10%;
  bottom: 18%;
}

.node-support {
  left: 8%;
  bottom: 14%;
}

.node-data {
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  color: var(--brand-lime);
  font-size: 2rem;
}

.stat-row span {
  margin-top: 8px;
  color: rgba(238, 247, 255, 0.72);
}

.services {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 138, 61, 0.18), transparent 28%),
    radial-gradient(circle at 14% 80%, rgba(255, 77, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #101b38 0%, #0b1020 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.why-grid article,
.process-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(16, 36, 92, 0.24));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.service-card {
  min-height: 300px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(32, 210, 202, 0.44);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(32, 210, 202, 0.1);
  transform: translateY(-4px);
}

.service-card.feature {
  grid-column: span 2;
  color: #ffffff;
  border-color: rgba(32, 210, 202, 0.26);
  background:
    linear-gradient(135deg, rgba(32, 210, 202, 0.18), rgba(123, 92, 255, 0.22) 52%, rgba(255, 77, 184, 0.16)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand-navy);
  font-weight: 850;
}

.service-card.feature .icon {
  background: var(--brand-navy);
}

.service-card h3,
.why-grid h3,
.process-grid h3 {
  margin: 0 0 10px;
  line-height: 1.2;
  font-size: 1.22rem;
  color: #ffffff;
}

.service-card p,
.why-grid p,
.process-grid p,
.consulting-copy p,
.contact-copy p {
  margin: 0;
  color: rgba(238, 247, 255, 0.72);
}

.service-card.feature p {
  color: rgba(238, 247, 255, 0.76);
}

.consulting {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(188, 232, 82, 0.16), transparent 26%),
    linear-gradient(120deg, #0b1020 0%, #17265b 52%, #4b183f 100%);
}

.consulting-image {
  min-height: 520px;
  border-radius: 8px;
  background-image: url("assets/consulting.webp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--premium-shadow);
}

.consulting-copy {
  max-width: 680px;
}

.consulting-copy p {
  margin-top: 20px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(238, 247, 255, 0.88);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--brand-orange);
}

.visual-services {
  background:
    radial-gradient(circle at 10% 5%, rgba(32, 210, 202, 0.18), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(255, 77, 184, 0.14), transparent 24%),
    linear-gradient(180deg, #111a2f 0%, #070b18 100%);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.visual-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(231, 237, 245, 0.92);
  border-radius: 8px;
  background: var(--brand-navy);
  box-shadow: 0 22px 58px rgba(51, 71, 125, 0.14);
}

.visual-card.tall {
  grid-row: span 2;
}

.visual-card.wide {
  grid-column: span 2;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 34, 53, 0.02), rgba(24, 34, 53, 0.84)),
    linear-gradient(90deg, rgba(51, 71, 125, 0.28), transparent 52%);
}

.visual-card:hover img {
  transform: scale(1.06);
}

.visual-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
  color: #ffffff;
}

.visual-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #c9fbf8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.visual-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.5;
}

.solutions {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(110deg, rgba(188, 232, 82, 0.16), transparent 28%),
    linear-gradient(135deg, #111a2f, #1c285f 52%, #103b47);
  background-size: 48px 48px, 48px 48px, auto, auto;
  color: #ffffff;
}

.solutions .section-head p:not(.eyebrow) {
  color: rgba(238, 247, 255, 0.72);
}

.solution-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.solution-list span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(32, 210, 202, 0.08));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.why-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-grid article,
.process-grid article {
  padding: 26px;
}

.why {
  background:
    linear-gradient(135deg, rgba(17, 26, 42, 0.98), rgba(51, 71, 125, 0.92)),
    url("assets/data-center.webp");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.why .eyebrow,
.why .section-head p:not(.eyebrow) {
  color: #9ff3f2;
}

.why .section-head h2 {
  color: #ffffff;
}

.why-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.why-grid h3 {
  color: #ffffff;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.industries {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 138, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #0b1020 0%, #13224b 100%);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.industry-grid span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(123, 92, 255, 0.1));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-align: center;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.industry-grid span:nth-child(3n + 1) {
  border-color: rgba(34, 184, 189, 0.28);
}

.industry-grid span:nth-child(3n + 2) {
  border-color: rgba(243, 112, 33, 0.24);
}

.industry-grid span:nth-child(3n) {
  border-color: rgba(213, 31, 134, 0.2);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-magenta), var(--brand-teal));
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.94), rgba(16, 36, 92, 0.86) 58%, rgba(75, 24, 63, 0.78)),
    url("assets/contact-bg.webp");
  background-position: center;
  background-size: cover;
}

.contact-copy p {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.36;
}

.contact-detail {
  display: grid;
  gap: 0;
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail span {
  color: var(--brand-lime);
  font-size: 0.78rem;
  line-height: 1.15;
}

.contact-detail strong {
  line-height: 1.15;
  font-size: 0.9rem;
}

.contact-detail a {
  color: inherit;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-links a[aria-label="WhatsApp"] {
  color: #128c7e;
}

.social-links a[aria-label="Instagram"] {
  color: var(--brand-magenta);
}

.social-links a:hover {
  border-color: rgba(32, 210, 202, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(32, 210, 202, 0.08));
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(14px);
}

.contact-form .button {
  margin-top: 2px;
}

.subpage-main {
  background: var(--platinum);
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 150px clamp(18px, 5vw, 76px) 82px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.9) 55%, rgba(255, 255, 255, 0.62)),
    url("assets/hero.webp");
  background-position: center;
  background-size: cover;
}

.subpage-hero-content {
  max-width: 820px;
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #405262;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 500;
}

.page-content {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 6vw, 82px);
  max-width: 1180px;
  margin: 0 auto;
}

.page-summary,
.page-panel,
.page-cta {
  border: 1px solid rgba(231, 237, 245, 0.92);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 12px 34px rgba(51, 71, 125, 0.075);
}

.page-summary {
  align-self: start;
  padding: 26px;
}

.page-summary h2,
.page-panel h2,
.page-cta h2 {
  margin: 0;
  color: var(--brand-navy);
  line-height: 1.12;
}

.page-summary p,
.page-panel p,
.page-cta p {
  color: var(--muted);
}

.page-panel {
  padding: clamp(24px, 4vw, 38px);
}

.page-panel + .page-panel {
  margin-top: 18px;
}

.page-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 26px;
  color: #263642;
  font-weight: 650;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--brand-teal);
}

.related-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.related-pages a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(51, 71, 125, 0.14);
  border-radius: 8px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.page-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(34, 184, 189, 0.11), rgba(51, 71, 125, 0.06)),
    #ffffff;
}

.footer-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 720px;
  margin-top: 18px;
}

.footer-service-links a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 750;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(238, 247, 255, 0.9);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(7, 11, 24, 0.5);
  font: inherit;
  font-size: 16px;
}

select option {
  color: #182235;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(34, 184, 189, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(18px, 5vw, 76px);
  color: rgba(238, 247, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(32, 210, 202, 0.13), transparent 42%),
    linear-gradient(135deg, #070b18, #101b38 54%, #241333);
}

.site-footer p {
  max-width: 560px;
  margin: 14px 0 0;
}

.site-footer .copyright {
  margin-top: 18px;
  color: rgba(238, 247, 255, 0.54);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-brand {
  color: var(--ink);
}

.footer-logo {
  width: clamp(230px, 20vw, 300px);
  height: 124px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-self: center;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--brand-teal);
}

.hero-graphics {
  position: absolute;
  top: clamp(168px, 22vh, 240px);
  right: clamp(18px, 6vw, 92px);
  z-index: 1;
  width: min(39vw, 520px);
  min-width: 390px;
  pointer-events: none;
}

.orbit-board {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(51, 71, 125, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 251, 251, 0.74)),
    repeating-linear-gradient(90deg, rgba(51, 71, 125, 0.045) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(34, 184, 189, 0.045) 0 1px, transparent 1px 48px);
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.orbit-board::before,
.orbit-board::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(34, 184, 189, 0.28);
  border-radius: 50%;
  animation: pulse-ring 5s ease-in-out infinite;
}

.orbit-board::after {
  inset: 29%;
  border-color: rgba(243, 112, 33, 0.3);
  animation-delay: 1.2s;
}

.orbit-board img {
  position: relative;
  z-index: 2;
  width: 42%;
  filter: drop-shadow(0 20px 28px rgba(51, 71, 125, 0.16));
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(51, 71, 125, 0.16);
  animation: node-float 4s ease-in-out infinite;
}

.dot-one {
  top: 16%;
  left: 28%;
  background: var(--brand-orange);
}

.dot-two {
  top: 36%;
  right: 14%;
  background: var(--brand-teal);
  animation-delay: 0.8s;
}

.dot-three {
  right: 32%;
  bottom: 18%;
  background: var(--brand-magenta);
  animation-delay: 1.6s;
}

.orbit-line {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-teal), var(--brand-lime));
  opacity: 0.66;
  transform-origin: left center;
  animation: data-flow 3.8s ease-in-out infinite;
}

.line-one {
  top: 28%;
  left: 23%;
  width: 52%;
  transform: rotate(15deg);
}

.line-two {
  right: 22%;
  bottom: 28%;
  width: 44%;
  transform: rotate(-31deg);
  animation-delay: 1.1s;
}

.metric-card {
  position: absolute;
  z-index: 4;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid rgba(51, 71, 125, 0.1);
  border-radius: 8px;
  color: #273a55;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(51, 71, 125, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.metric-card strong {
  color: var(--brand-navy);
  font-size: 1.05rem;
}

.metric-card.cloud {
  top: 8%;
  right: 10%;
  border-color: rgba(34, 184, 189, 0.28);
}

.metric-card.support {
  left: 8%;
  bottom: 13%;
  border-color: rgba(168, 197, 69, 0.38);
}

.metric-card.security {
  right: 8%;
  bottom: 12%;
  border-color: rgba(213, 31, 134, 0.25);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--brand-teal);
}

.service-card:nth-child(5n + 1)::before {
  background: var(--brand-orange);
}

.service-card:nth-child(5n + 2)::before {
  background: var(--brand-teal);
}

.service-card:nth-child(5n + 3)::before {
  background: var(--brand-lime);
}

.service-card:nth-child(5n + 4)::before {
  background: var(--brand-magenta);
}

.service-card:nth-child(5n)::before {
  background: var(--brand-navy);
}

.service-card:nth-child(4n + 1) .icon {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-magenta));
}

.service-card:nth-child(4n + 2) .icon {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-teal));
}

.service-card:nth-child(4n + 3) .icon {
  background: linear-gradient(135deg, var(--brand-lime), var(--brand-teal));
}

.service-card:nth-child(4n) .icon {
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-orange));
}

.video-showcase {
  background:
    linear-gradient(120deg, rgba(51, 71, 125, 0.96), rgba(34, 184, 189, 0.9)),
    linear-gradient(90deg, var(--brand-orange), var(--brand-magenta));
  color: #ffffff;
}

.video-showcase .eyebrow,
.video-showcase .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 54px rgba(10, 22, 45, 0.18);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f1a2c;
}

.video-card div {
  padding: 22px;
}

.video-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #dffb78;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
  font-size: 1.18rem;
}

.video-card p,
.media-credit {
  color: rgba(255, 255, 255, 0.78);
}

.video-card p {
  margin: 0;
}

.media-credit {
  max-width: 1180px;
  margin: 18px auto 0;
  font-size: 0.82rem;
}

.faq {
  background:
    linear-gradient(135deg, rgba(255, 246, 239, 0.82), rgba(236, 251, 251, 0.9)),
    #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-grid article {
  padding: 24px;
  border: 1px solid rgba(51, 71, 125, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(51, 71, 125, 0.08);
}

.faq-grid h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  line-height: 1.22;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(236, 251, 251, 0.92) 58%, rgba(255, 255, 255, 0.7)),
    url("assets/hero.webp");
  background-position: center;
  background-size: cover;
}

.legal-updated {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(51, 71, 125, 0.12);
  border-radius: 8px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  max-width: 1180px;
  margin: 0 auto;
}

.legal-summary {
  position: sticky;
  top: 132px;
}

.legal-summary .related-pages {
  display: grid;
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-document .page-panel p + p {
  margin-top: 13px;
}

.legal-document h3 {
  margin: 24px 0 10px;
  color: var(--brand-navy);
  line-height: 1.2;
}

.legal-document .page-list {
  margin-top: 16px;
}

.legal-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(34, 184, 189, 0.24);
  border-radius: 8px;
  color: #284151;
  background: rgba(236, 251, 251, 0.72);
}

.legal-contact-card {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(51, 71, 125, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.legal-contact-card span,
.legal-contact-card a {
  display: block;
}

.legal-contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-contact-card a {
  margin-top: 4px;
  color: var(--brand-navy);
  font-weight: 850;
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.9;
  }
}

@keyframes node-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes data-flow {
  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.88;
  }
}

/* Colorful premium theme layer */
.brand {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand {
  width: max-content;
}

.section-head h2,
.consulting-copy h2,
.contact-copy h2,
.faq-grid h3,
.page-summary h2,
.page-panel h2,
.page-cta h2,
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: #ffffff;
}

.section-head p:not(.eyebrow),
.faq-grid p,
.page-summary p,
.page-panel p,
.page-cta p,
.legal-content p,
.legal-content li {
  color: rgba(238, 247, 255, 0.72);
}

.orbit-board,
.metric-card,
.command-core,
.page-summary,
.page-panel,
.page-cta,
.faq-grid article,
.legal-contact-card,
.related-pages a {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(32, 210, 202, 0.08));
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(16px);
}

.orbit-board {
  background:
    radial-gradient(circle at center, rgba(32, 210, 202, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(255, 77, 184, 0.16), rgba(16, 36, 92, 0.54)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 48px);
}

.command-core {
  background: linear-gradient(135deg, rgba(238, 247, 255, 0.96), rgba(159, 243, 242, 0.84));
}

.metric-card {
  color: rgba(238, 247, 255, 0.78);
}

.metric-card strong {
  color: #ffffff;
}

.process {
  background:
    radial-gradient(circle at 86% 20%, rgba(32, 210, 202, 0.13), transparent 28%),
    linear-gradient(180deg, #101b38, #070b18);
}

.faq {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 77, 184, 0.13), transparent 28%),
    linear-gradient(180deg, #070b18, #101b38);
}

.faq-grid article {
  border-radius: 8px;
}

.subpage-main,
.page-content,
.legal-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 77, 184, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(32, 210, 202, 0.12), transparent 26%),
    linear-gradient(135deg, #070b18, #101b38 54%, #241333);
}

.subpage-hero {
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.94), rgba(16, 36, 92, 0.82) 55%, rgba(75, 24, 63, 0.68)),
    url("assets/hero.webp");
  background-position: center;
  background-size: cover;
}

.subpage-hero h1 {
  color: #ffffff;
}

.subpage-hero p:not(.eyebrow) {
  color: rgba(238, 247, 255, 0.76);
}

.page-list li,
.legal-contact-card span,
.legal-contact-card a,
.related-pages a {
  color: rgba(238, 247, 255, 0.84);
}

.related-pages a:hover,
.footer-links a:hover,
.footer-service-links a:hover {
  color: var(--brand-lime);
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
  }

  .command-center {
    grid-template-columns: 1fr;
  }

  .command-graphic {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

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

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

  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }

  .hero-graphics {
    width: min(36vw, 420px);
    min-width: 320px;
    opacity: 0.78;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .visual-card.tall,
  .visual-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    grid-template-columns: minmax(176px, 220px) 1fr auto;
    min-height: 96px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: clamp(184px, 46vw, 220px);
    height: 82px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 96px 14px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--paper);
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-graphics {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 64px auto 42px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.2vw, 3.8rem);
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(51, 71, 125, 0.12);
    border-left: 0;
  }

  .section-head,
  .intro-grid,
  .consulting,
  .command-center,
  .contact,
  .page-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 12px;
  }

  .section-head.compact {
    text-align: left;
  }

  .stat-row,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .consulting-image {
    min-height: 340px;
  }

  .command-graphic {
    min-height: 500px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-auto-rows: 250px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .site-footer {
    display: grid;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 58px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    line-height: 1.55;
  }

  .site-header {
    grid-template-columns: minmax(142px, 1fr) auto;
    gap: 10px;
  }

  .brand-logo {
    width: min(172px, 58vw);
    height: 76px;
  }

  .site-nav {
    inset-inline: 10px;
  }

  .service-grid,
  .service-card.feature,
  .industry-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card.feature {
    grid-column: auto;
  }

  .section-pad {
    padding: 54px 16px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-top: 46px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-panel {
    width: calc(100% - 28px);
  }

  .hero-panel div {
    padding: 14px 16px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .consulting-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    line-height: 1.12;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .command-center {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .command-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.1;
  }

  .command-graphic {
    min-height: 420px;
  }

  .command-core {
    width: 138px;
  }

  .command-node {
    min-width: 122px;
    padding: 10px 11px;
  }

  .command-node span {
    font-size: 0.76rem;
  }

  .icon {
    margin-bottom: 30px;
  }

  .solution-list {
    justify-content: flex-start;
  }

  .solution-list span {
    width: 100%;
  }

  .visual-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .visual-card {
    min-height: 320px;
  }

  .video-card div,
  .faq-grid article {
    padding: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .consulting-image {
    min-height: 260px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    padding: 28px 16px;
  }

  .subpage-hero {
    padding-inline: 16px;
  }

  .subpage-hero h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .page-content {
    padding: 54px 16px;
  }

  .page-summary,
  .page-panel,
  .page-cta {
    padding: 20px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: min(150px, 54vw);
    height: 66px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .command-graphic {
    min-height: 390px;
  }

  .command-node {
    min-width: 112px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
