:root {
  color-scheme: dark;
  --bg-950: #02050d;
  --bg-925: #040a15;
  --bg-900: #07101d;
  --panel: rgba(8, 19, 35, 0.74);
  --panel-strong: rgba(9, 24, 44, 0.92);
  --line: rgba(117, 191, 255, 0.22);
  --line-strong: rgba(58, 174, 255, 0.52);
  --text: #f4f8fd;
  --muted: #aab7c8;
  --blue: #168bff;
  --cyan: #27d7ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100% - 40px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  background:
    radial-gradient(circle at 17% 4%, rgba(22, 139, 255, 0.19), transparent 30%),
    radial-gradient(circle at 78% 0%, rgba(39, 215, 255, 0.11), transparent 28%),
    radial-gradient(circle at 50% 48%, rgba(3, 27, 61, 0.5), transparent 48%),
    linear-gradient(180deg, var(--bg-950), var(--bg-925) 40%, var(--bg-900));
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(63, 157, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 157, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle, rgba(60, 181, 255, 0.18) 1px, transparent 1.2px);
  background-size: 92px 92px, 92px 92px, 34px 34px;
  opacity: 0.42;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.9) 34%, transparent 88%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(27, 157, 255, 0.09) 44%, transparent 51%),
    radial-gradient(circle at 50% 22%, transparent 0 16%, rgba(22, 139, 255, 0.12) 16.2%, transparent 16.8%),
    radial-gradient(circle at 50% 22%, transparent 0 26%, rgba(39, 215, 255, 0.06) 26.2%, transparent 26.7%);
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
}

.skip-link:focus {
  top: 18px;
}

.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;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(117, 191, 255, 0.16);
  background: rgba(2, 5, 13, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  text-transform: uppercase;
}

.brand-mark {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.28em;
  font-weight: 950;
  line-height: 1;
}

.brand-divider {
  width: 1px;
  height: 31px;
  background: rgba(255, 255, 255, 0.42);
}

.brand-service {
  max-width: 170px;
  color: #47b2ff;
  font-family: var(--display);
  font-size: clamp(0.86rem, 1.4vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d7deea;
  font-size: 0.92rem;
}

.nav-menu a:not(.nav-cta) {
  color: var(--muted);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 139, 255, 0.28), rgba(39, 215, 255, 0.08));
  box-shadow: 0 0 24px rgba(22, 139, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 126px) 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 126px) 0 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(23, 142, 255, 0.32), transparent 58%),
    repeating-radial-gradient(circle, rgba(62, 178, 255, 0.18) 0 1px, transparent 1px 52px);
  opacity: 0.9;
}

.hero-bg::after {
  content: "";
  position: absolute;
  width: 68vw;
  height: 2px;
  right: -6vw;
  top: 44%;
  background: linear-gradient(90deg, transparent, rgba(39, 215, 255, 0.5), transparent);
  transform: rotate(-15deg);
  filter: blur(0.5px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.96fr);
  gap: clamp(56px, 8vw, 114px);
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.small-eyebrow {
  margin-bottom: 12px;
}

.small-eyebrow::after {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  color: #f7fbff;
  font-size: 1.13rem;
  line-height: 1.24;
}

p {
  color: var(--muted);
}

.hero-subhead {
  max-width: 680px;
  color: #58bdf7;
  font-size: clamp(1.17rem, 2vw, 1.54rem);
  font-weight: 800;
  line-height: 1.28;
}

.hero-body {
  max-width: 660px;
  font-size: 1.03rem;
}

.hero-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 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #0d72ff, #18c8ff);
  box-shadow: 0 14px 40px rgba(22, 139, 255, 0.26);
}

.button-secondary {
  color: #dcecff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.float-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.float-visual::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 215, 255, 0.16), rgba(22, 139, 255, 0.08) 34%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.float-visual::after {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(86, 181, 255, 0.12);
  box-shadow:
    0 0 0 40px rgba(86, 181, 255, 0.03),
    0 0 0 84px rgba(86, 181, 255, 0.02);
  opacity: 0.8;
  pointer-events: none;
}

.float-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.48));
}

.hero-visual {
  min-height: 620px;
  padding: 10px 0 0;
}

.hero-visual img {
  width: min(100%, 780px);
}

.visual-note {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 16px 22px;
  min-width: min(100%, 430px);
  max-width: 460px;
  border: 1px solid rgba(83, 191, 255, 0.24);
  border-radius: var(--radius-md);
  background: rgba(2, 6, 15, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.visual-note span {
  color: var(--cyan);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-note strong {
  color: white;
  font-size: 1.02rem;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.trust-strip div {
  display: grid;
  grid-template-rows: minmax(3.75rem, auto) 1fr;
  align-content: start;
  min-height: 148px;
  padding: 24px;
  background: rgba(5, 13, 26, 0.88);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #f7fbff;
  font-family: var(--display);
  font-size: clamp(1.26rem, 1.9vw, 1.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
}

.section-heading {
  max-width: 930px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading p {
  max-width: 760px;
  font-size: 1.08rem;
}

.service {
  background:
    linear-gradient(180deg, rgba(9, 20, 36, 0.18), rgba(4, 10, 20, 0.52)),
    radial-gradient(circle at 8% 30%, rgba(22, 139, 255, 0.13), transparent 30%);
}

.service-grid,
.capability-system,
.fit-grid,
.proof-cards,
.compare-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
}

.service-card,
.capability-card,
.problem-list div,
.delivery-steps div,
.ecosystem-panel,
.fit-grid article,
.proof-cards article,
.compare-card,
.contact-form,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(13, 30, 54, 0.82), rgba(4, 12, 24, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(2.85em, auto) 1fr;
  align-content: start;
  min-height: 226px;
  padding: 28px;
  overflow: hidden;
}

.service-card h3,
.capability-card h3,
.fit-grid article h3,
.compare-card h3 {
  min-height: 2.8em;
  margin-bottom: 12px;
}

.service-card p,
.capability-card p,
.fit-grid article p,
.proof-cards p,
.compare-card p {
  margin-bottom: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 215, 255, 0.2), transparent 62%);
}

.featured-card {
  border-color: rgba(39, 215, 255, 0.38);
  background: linear-gradient(145deg, rgba(17, 60, 101, 0.76), rgba(4, 12, 24, 0.76));
}

.problem {
  border-top: 1px solid rgba(117, 191, 255, 0.12);
  border-bottom: 1px solid rgba(117, 191, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(2, 6, 16, 0.42), rgba(8, 18, 33, 0.38)),
    radial-gradient(circle at 78% 22%, rgba(39, 215, 255, 0.13), transparent 34%);
}

.problem-grid-main {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list div {
  padding: 20px 22px;
}

.problem-list strong,
.delivery-steps strong,
.contact-note strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.problem-list span,
.delivery-steps span,
.contact-note span {
  display: block;
  color: var(--muted);
}

.capabilities {
  overflow: hidden;
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 8% -15% auto auto;
  width: 70vw;
  height: 520px;
  background: linear-gradient(115deg, transparent, rgba(22, 139, 255, 0.15), transparent);
  transform: skewY(-11deg);
  pointer-events: none;
}

.capability-system {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-card {
  display: grid;
  grid-template-rows: minmax(2.85em, auto) 1fr;
  align-content: start;
  min-height: 220px;
  padding: 24px;
}

.delivery {
  border-top: 1px solid rgba(117, 191, 255, 0.12);
  border-bottom: 1px solid rgba(117, 191, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.42), rgba(9, 22, 40, 0.5)),
    radial-gradient(circle at 12% 22%, rgba(22, 139, 255, 0.16), transparent 32%);
}

.delivery-grid,
.intelligence-grid,
.proof-grid,
.standard-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 5.6vw, 78px);
  align-items: center;
}

.delivery-copy,
.intelligence-copy {
  position: relative;
  z-index: 4;
}

.section-visual {
  min-height: 560px;
  padding: 14px 0;
}

.orchestration-visual img {
  width: min(100%, 760px);
}

.intelligence-visual img {
  width: min(100%, 780px);
}

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

.delivery-steps div {
  padding: 18px 20px;
  box-shadow: none;
}

.intelligence {
  background:
    radial-gradient(circle at 18% 24%, rgba(22, 139, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(2, 6, 16, 0.2), rgba(2, 6, 16, 0.66));
}

.intelligence-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding-left: 58px;
  color: var(--muted);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 950;
}

.process-list span {
  display: block;
  color: white;
  font-weight: 850;
}

.ecosystem-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
}

.ecosystem-panel h3,
.ecosystem-panel p {
  margin-bottom: 0;
}

.ecosystem-panel h3 {
  margin-bottom: 8px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-group span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  font-weight: 800;
}

.fit {
  border-top: 1px solid rgba(117, 191, 255, 0.12);
  background: radial-gradient(circle at 80% 10%, rgba(39, 215, 255, 0.12), transparent 32%);
}

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

.fit-grid article {
  display: grid;
  grid-template-rows: minmax(2.85em, auto) 1fr;
  align-content: start;
  min-height: 240px;
  padding: 24px;
}

.proof {
  border-top: 1px solid rgba(117, 191, 255, 0.14);
  border-bottom: 1px solid rgba(117, 191, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 15, 28, 0.72), rgba(3, 7, 14, 0.88)),
    radial-gradient(circle at 72% 14%, rgba(39, 215, 255, 0.18), transparent 34%);
}

.proof-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
}

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

.proof-cards article {
  display: grid;
  grid-template-rows: minmax(2.1em, auto) minmax(4rem, auto) 1fr;
  align-content: start;
  min-height: 276px;
  padding: 24px;
}

.proof-cards span {
  display: block;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-cards strong {
  display: block;
  align-self: start;
  max-width: 100%;
  margin: 18px 0 14px;
  color: white;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.standard {
  background: radial-gradient(circle at 8% 12%, rgba(22, 139, 255, 0.12), transparent 31%);
}

.standard-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
}

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

.compare-card {
  padding: 24px;
}

.compare-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.compare-card li {
  color: var(--muted);
}

.compare-card li + li {
  margin-top: 12px;
}

.compare-card.strong {
  border-color: rgba(39, 215, 255, 0.42);
  background: linear-gradient(145deg, rgba(19, 53, 89, 0.88), rgba(3, 11, 23, 0.82));
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(22, 139, 255, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.62), rgba(2, 6, 16, 1));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  padding: 22px;
}

.contact-form {
  padding: 26px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  color: #edf5ff;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(117, 191, 255, 0.26);
  border-radius: 12px;
  outline: none;
  background: rgba(2, 6, 16, 0.62);
  color: white;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(39, 215, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(39, 215, 255, 0.1);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(117, 191, 255, 0.15);
  background: #02050d;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-grid a:last-child {
  color: var(--cyan);
  font-weight: 850;
}

.footer-brand .brand-mark {
  font-size: 1.2rem;
}

.footer-brand .brand-service {
  font-size: 0.82rem;
}

.footer-brand .brand-divider {
  height: 22px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .delivery-grid,
  .intelligence-grid,
  .proof-grid,
  .standard-grid,
  .contact-grid,
  .problem-grid-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual,
  .section-visual {
    min-height: 500px;
  }

  .trust-strip,
  .capability-system,
  .fit-grid,
  .proof-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    letter-spacing: 0.18em;
  }

  .brand-divider {
    height: 26px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(4, 10, 21, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 52px;
  }

  .trust-strip,
  .capability-system,
  .fit-grid,
  .proof-cards,
  .compare-grid,
  .delivery-steps,
  .ecosystem-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .section-visual {
    min-height: 430px;
  }

  .float-visual::after {
    width: 82%;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.1rem, 11vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 8vw, 2.9rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual,
  .section-visual {
    min-height: 310px;
  }

  .visual-note {
    min-width: 0;
    width: 100%;
    margin-top: 14px;
  }

  .trust-strip div,
  .service-card,
  .capability-card,
  .fit-grid article,
  .proof-cards article,
  .compare-card,
  .contact-form,
  .contact-note {
    padding: 22px;
  }

  .trust-strip div {
    grid-template-rows: auto auto;
  }

  .service-card,
  .capability-card,
  .fit-grid article,
  .proof-cards article {
    grid-template-rows: auto;
  }

  .service-card h3,
  .capability-card h3,
  .fit-grid article h3,
  .compare-card h3 {
    min-height: auto;
  }

  .proof-cards strong {
    font-size: clamp(2.55rem, 15vw, 3.4rem);
  }
}
