:root {
  --bg-main: #181818;
  --bg-deep: #000000;
  --accent-lime: #9EF65B;
  --accent-hover: #A3F563;
  --text-main: #E1E1DF;
  --text-muted: #A4A6A0;
  --page: var(--bg-deep);
  --section: var(--bg-main);
  --section-strong: #111111;
  --card: #181818;
  --navy: var(--text-main);
  --text: var(--text-main);
  --muted: var(--text-muted);
  --blue: var(--accent-lime);
  --violet: var(--accent-lime);
  --cyan: var(--accent-hover);
  --border: rgba(225, 225, 223, .12);
  --shadow: 0 18px 40px rgba(0, 0, 0, .34);
  --shadow-soft: 0 28px 70px rgba(0, 0, 0, .36);
  --gradient: var(--accent-lime);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-deep);
}

.site-header {
  width: min(var(--max), calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  background: var(--accent-lime);
  box-shadow: 0 10px 26px rgba(50, 113, 242, .26);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--violet);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(66, 77, 241, .28);
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
  border-color: #d8deea;
  box-shadow: 0 12px 30px rgba(40, 64, 111, .07);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: rgba(99, 58, 245, .45);
  color: var(--violet);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.section-panel,
.section,
.cta-section,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(330px, 500px);
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding: 78px 0 96px;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .28em;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
.section-heading h2,
.why-content h2,
.cta-panel h2 {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 74px);
  line-height: .98;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 0;
  background: rgba(158, 246, 91, .08);
  filter: blur(3px);
}

.hero-visual img {
  position: relative;
  width: min(100%, 470px);
  border-radius: 18px;
  mix-blend-mode: multiply;
}

.section {
  padding: 108px 0;
}

.section-trust,
.section-industries,
.section-process {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--bg-deep);
}

.section-services {
  padding-top: 116px;
  padding-bottom: 118px;
  background: #ffffff;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.why-content h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
}

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

.trust-item {
  min-height: 290px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 46px 0;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid #dde5f2;
}

.soft-icon {
  width: 154px;
  height: 154px;
  margin-bottom: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  background: var(--bg-main);
}

.soft-icon i,
.industry-card i {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.soft-icon i {
  font-size: 68px;
}

.trust-item h3,
.service-card h3,
.industry-card h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-item h3 {
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mini-rule {
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gradient);
}

.trust-item p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.32;
}

.service-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.industry-card {
  min-height: 310px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 34px 24px 31px;
}

.service-card h3 {
  margin: 27px 0 0;
  font-size: 21px;
}

.service-illustration {
  height: 176px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #111111;
}

.gear {
  position: absolute;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.gear-large {
  font-size: 54px;
}

.gear-small {
  font-size: 32px;
}

.gear-small.top {
  left: 28px;
  top: 30px;
}

.gear-small.bottom {
  right: 25px;
  bottom: 23px;
}

.flow-node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 8px 18px rgba(47, 115, 244, .22);
}

.flow-node.left {
  left: 24px;
  bottom: 60px;
}

.flow-node.right {
  right: 32px;
  top: 70px;
}

.window {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dae5f4;
  box-shadow: 0 14px 28px rgba(43, 77, 135, .13);
}

.window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 22px;
  border-radius: 8px 8px 0 0;
  background: var(--accent-lime);
}

.window.back {
  left: 34px;
  top: 28px;
  width: 132px;
  height: 100px;
}

.window.front {
  right: 20px;
  bottom: 18px;
  width: 150px;
  height: 102px;
}

.code-line {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: var(--accent-lime);
  z-index: 2;
}

.code-line.one {
  width: 72px;
  right: 50px;
  top: 92px;
}

.code-line.two {
  width: 88px;
  right: 39px;
  top: 113px;
}

.code-line.three {
  width: 60px;
  right: 66px;
  top: 134px;
}

.integration .hub,
.integration .tile {
  position: absolute;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 14px 26px rgba(58, 91, 243, .2);
}

.integration .hub {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  font-size: 28px;
}

.integration .tile {
  width: 62px;
  height: 44px;
  border-radius: 13px;
  font-size: 22px;
  transform: rotate(-22deg);
}

.t1 { left: 40px; top: 26px; }
.t2 { right: 36px; top: 28px; }
.t3 { right: 35px; bottom: 31px; }
.t4 { left: 38px; bottom: 32px; }

.dashboard {
  width: 188px;
  height: 132px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px 20px 20px;
  border: 1px solid #dae5f4;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(43, 77, 135, .13);
}

.dashboard::before {
  content: "";
  position: absolute;
  width: 188px;
  height: 24px;
  margin: -34px 0 0 -20px;
  border-radius: 10px 10px 0 0;
  background: var(--accent-lime);
}

.dashboard i {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 36px;
}

.dashboard i:last-child {
  grid-column: 1 / -1;
  font-size: 34px;
}

.industry-card {
  min-height: 290px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 34px 18px;
  text-align: center;
}

.industry-card i {
  margin-bottom: 39px;
  font-size: 86px;
}

.industry-card h3 {
  margin: 0;
  font-size: 22px;
}

.section-process {
  padding-top: 120px;
  padding-bottom: 146px;
  background: #ffffff;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 18px;
}

.process-step {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(61, 79, 152, .1);
}

.process-step span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
}

.process-step strong {
  position: relative;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.process-step strong::before {
  content: "";
  width: 25px;
  height: 2px;
  display: inline-block;
  margin: 0 15px 5px 0;
  background: currentColor;
}

.process-arrow {
  color: var(--violet);
  font-size: 32px;
  text-align: center;
}

.why-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  width: min(1210px, calc(100% - 48px));
  margin-top: 10px;
  margin-bottom: 88px;
  padding: 84px 82px;
  border-radius: 12px;
  background: var(--bg-main);
}

.why-art {
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.why-art img {
  width: 1120px;
  max-width: none;
  transform: translateX(-8px);
  mix-blend-mode: multiply;
}

.why-content h2 {
  margin-bottom: 34px;
}

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

.check-list li {
  min-height: 68px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e2e7f0;
  color: var(--text);
  font-size: 22px;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(43, 77, 135, .12);
}

.cta-section {
  margin-bottom: 70px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 56px 24px 68px;
  border-radius: 12px;
  background: var(--bg-main);
  text-align: center;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 220px;
  bottom: -70px;
  opacity: .56;
  background: transparent;
}

.cta-panel::before {
  left: -115px;
}

.cta-panel::after {
  right: -115px;
  transform: scaleX(-1);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.1vw, 50px);
  line-height: 1.08;
}

.cta-panel p:not(.section-kicker) {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.cta-button {
  min-width: 426px;
  min-height: 66px;
  font-size: 18px;
}

.site-footer {
  padding: 0 0 58px;
  text-align: center;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
}

.site-footer p:not(.section-kicker) {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 17px;
}

.footer-links {
  width: min(840px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid #e2e7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #4d5567;
  font-size: 16px;
}

.footer-links span {
  width: 1px;
  height: 20px;
  background: #cfd6e2;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    padding: 18px 0 8px;
    border-top: 1px solid var(--border);
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 360px;
    justify-content: center;
  }

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

  .process-row {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .why-panel {
    grid-template-columns: 1fr;
    padding: 64px 42px;
  }

  .why-art {
    min-height: 330px;
    justify-content: center;
  }

  .why-art img {
    width: 760px;
    max-width: none;
    transform: translateX(-8px);
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-panel,
  .section,
  .cta-section,
  .site-footer,
  .why-panel {
    width: min(calc(100% - 32px), var(--max));
  }

  body {
    overflow-x: hidden;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    max-width: 100%;
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 16px;
  }

  h1 {
    max-width: 342px;
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.06;
  }

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }

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

  .hero {
    gap: 26px;
    padding-bottom: 74px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 17px;
  }

  .button {
    width: 100%;
    max-width: 342px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .section-trust,
  .section-industries,
  .section-process {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .section-heading h2,
  .why-content h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

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

  .trust-item {
    min-height: auto;
    padding: 34px 20px;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid #dde5f2;
  }

  .service-card,
  .industry-card {
    min-height: 250px;
  }

  .why-panel {
    padding: 46px 22px;
    margin-bottom: 66px;
  }

  .why-art {
    min-height: 250px;
  }

  .check-list li {
    min-height: 62px;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    font-size: 18px;
  }

  .check-list i {
    width: 38px;
    height: 38px;
  }

  .cta-panel {
    min-height: 350px;
  }

  .cta-panel p:not(.section-kicker) {
    font-size: 18px;
  }

  .cta-button {
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .section-kicker {
    font-size: 12px;
    letter-spacing: .22em;
  }

  .process-step {
    padding: 0 20px;
  }

  .process-step span {
    font-size: 44px;
  }

  .process-step strong::before {
    width: 18px;
    margin-right: 10px;
  }
}

/* Professional black and neon lime theme */
body {
  background: var(--bg-deep);
}

.site-shell {
  background: var(--bg-deep);
}

.site-header,
.brand,
.site-nav,
h1,
.section-heading h2,
.why-content h2,
.cta-panel h2,
.trust-item h3,
.service-card h3,
.industry-card h3,
.process-step strong,
.check-list li,
.site-footer h2 {
  color: var(--text-main);
}

.brand-mark {
  background: var(--accent-lime);
  box-shadow: 0 0 24px rgba(158, 246, 91, .24);
}

.brand-mark::after {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  margin: 7.5px auto;
  border-radius: 50%;
  background: var(--bg-deep);
}

.site-nav a:hover,
.site-nav a:focus,
.section-kicker,
.process-arrow,
.check-list i,
.button-secondary:hover,
.button-secondary:focus {
  color: var(--accent-lime);
}

.button-primary {
  color: #071006;
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  box-shadow: 0 16px 34px rgba(158, 246, 91, .16);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button-secondary,
.nav-toggle,
.service-card,
.industry-card,
.process-step {
  color: var(--text-main);
  background: var(--bg-main);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.button-secondary:hover,
.button-secondary:focus {
  background: #202020;
  border-color: rgba(158, 246, 91, .44);
}

.nav-toggle span {
  background: var(--text-main);
}

.hero-copy,
.trust-item p,
.cta-panel p:not(.section-kicker),
.site-footer p:not(.section-kicker),
.footer-links {
  color: var(--text-muted);
}

.hero-visual::before {
  background: rgba(158, 246, 91, .08);
}

.hero-visual img,
.why-art img {
  filter: grayscale(1) brightness(.72) contrast(1.1);
  mix-blend-mode: screen;
  opacity: .72;
}

.section-trust,
.section-industries,
.section-services,
.section-process {
  background: var(--bg-deep);
}

.trust-item + .trust-item {
  border-left-color: var(--border);
}

.soft-icon {
  color: var(--accent-lime);
  background: var(--bg-main);
  border: 1px solid var(--border);
}

.soft-icon i,
.industry-card i,
.gear,
.dashboard i,
.process-step span {
  color: var(--accent-lime);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: none;
}

.mini-rule,
.flow-node,
.window::before,
.code-line,
.integration .hub,
.integration .tile,
.dashboard::before {
  background: var(--accent-lime);
}

.service-illustration {
  background: #111111;
}

.window,
.dashboard {
  background: #0f0f0f;
  border-color: var(--border);
  box-shadow: none;
}

.integration .hub,
.integration .tile {
  color: #071006;
  box-shadow: none;
}

.why-panel,
.cta-panel {
  background: var(--bg-main);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.check-list li {
  border-bottom-color: var(--border);
}

.check-list i {
  background: #111111;
  box-shadow: none;
}

.cta-panel::before,
.cta-panel::after {
  display: none;
}

.footer-links {
  border-top-color: var(--border);
}

.footer-links span {
  background: rgba(225, 225, 223, .18);
}

@media (max-width: 760px) {
  .trust-item + .trust-item {
    border-top-color: var(--border);
  }
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-main);
  box-shadow: 0 0 18px rgba(158, 246, 91, .18);
}

@media (max-width: 760px) {
  .brand-logo {
    width: 30px;
    height: 30px;
  }
}

.brand-logo {
  width: 170px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 150px;
    height: 42px;
  }
}

.brand-logo {
  width: 176px;
  height: 48px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 154px;
    height: 42px;
    object-fit: cover;
  }
}

/* Final professional polish */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --glass: rgba(24, 24, 24, .74);
  --surface-a: #050505;
  --surface-b: #0b0b0b;
  --surface-c: #181818;
  --line-strong: rgba(225, 225, 223, .16);
}

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

body {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(var(--max), calc(100% - 48px));
  min-height: 74px;
  padding: 0 18px;
  transform: translateX(-50%);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  min-width: 190px;
}

.brand-logo {
  width: 184px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav {
  gap: clamp(24px, 4vw, 54px);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  color: var(--text-main);
  opacity: .9;
}

.site-nav a:hover,
.site-nav a:focus {
  opacity: 1;
}

.header-cta {
  min-height: 48px;
  padding-inline: 26px;
}

.hero {
  min-height: 780px;
  padding-top: 164px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg-deep);
}

h1,
.section-heading h2,
.why-content h2,
.cta-panel h2 {
  color: var(--text-main);
  font-weight: 900;
}

.hero-copy,
.trust-item p,
.cta-panel p:not(.section-kicker),
.site-footer p:not(.section-kicker) {
  color: var(--text-muted);
  font-weight: 500;
}

.section-kicker {
  color: var(--accent-lime);
  font-weight: 900;
}

.button,
.nav-toggle {
  border-radius: 8px;
}

.hero-visual img,
.why-art img {
  filter: grayscale(1) brightness(.8) contrast(1.06);
  opacity: .64;
}

.hero-visual {
  border-radius: 18px;
}

.section-trust,
.section-industries,
.section-process {
  background: var(--surface-a);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.section-services {
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 86px 32px 92px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-b);
}

.service-card,
.industry-card,
.process-step,
.soft-icon,
.window,
.dashboard {
  background: var(--surface-c);
  border-color: var(--line-strong);
}

.service-card,
.industry-card,
.process-step {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}

.service-illustration {
  background: #101010;
  border: 1px solid rgba(225, 225, 223, .06);
}

.trust-item + .trust-item {
  border-left-color: var(--line-strong);
}

.section-process {
  background: var(--bg-deep);
}

.why-panel {
  width: min(1210px, calc(100% - 64px));
  background: var(--surface-c);
  border-color: var(--line-strong);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.cta-panel {
  background: var(--surface-c);
  border-color: var(--line-strong);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.check-list li,
.footer-links {
  border-color: var(--line-strong);
}

.site-footer {
  padding-top: 18px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    align-content: center;
  }

  .brand {
    min-width: auto;
  }

  .site-nav {
    background: rgba(0, 0, 0, .16);
    border-top-color: var(--line-strong);
  }

  .hero {
    padding-top: 136px;
  }
}

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

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .brand-logo {
    width: 146px;
    height: 44px;
    object-fit: contain;
  }

  .nav-toggle {
    background: rgba(255, 255, 255, .045);
    border-color: var(--line-strong);
  }

  .hero {
    padding-top: 118px;
  }

  .section-services {
    width: min(100% - 32px, var(--max));
    margin-top: 56px;
    margin-bottom: 56px;
    padding: 58px 18px 64px;
    border-radius: 14px;
  }

  .section-trust,
  .section-industries,
  .section-process {
    background: var(--surface-a);
  }

  .why-panel {
    width: min(100% - 32px, var(--max));
  }

  .trust-item + .trust-item {
    border-top-color: var(--line-strong);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .nav-toggle {
    display: flex !important;
    justify-self: end;
    width: 42px;
    height: 42px;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: fixed;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    display: flex !important;
    transform: translateY(-50%);
    background: #202020;
    border-color: var(--line-strong);
  }

  .nav-toggle span {
    background: var(--accent-lime);
  }
}

@media (max-width: 760px) {
  .site-header::after {
    content: "☰";
    position: absolute;
    top: 50%;
    right: 22px;
    z-index: 2;
    transform: translateY(-52%);
    color: var(--accent-lime);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
  }

  .nav-toggle {
    opacity: 1;
  }

  .nav-toggle span {
    opacity: 0;
  }
}

.mobile-menu-glyph {
  display: none;
}

@media (max-width: 760px) {
  .brand {
    width: 100%;
    justify-content: space-between;
    padding-right: 4px;
  }

  .mobile-menu-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--accent-lime);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #202020;
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: none !important;
  }

  .brand {
    padding-right: 0;
  }
}

/* Structural refinement: full glass header, consistent section surfaces, updated assets */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  min-height: 82px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  transform: none;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(10, 10, 10, .76);
}

.brand-logo {
  width: 190px;
  height: 54px;
}

.hero {
  padding-top: 148px;
  border-bottom: 0;
}

.hero-visual {
  min-height: 500px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #050505;
  overflow: hidden;
}

.hero-visual::before {
  display: none;
}

.hero-visual img,
.why-art img {
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-visual img {
  width: min(100%, 620px);
  border-radius: 0;
}

.section-trust,
.section-industries,
.section-process {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  margin: 74px auto;
  padding: 94px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #050505;
}

.section-services {
  margin-top: 74px;
  margin-bottom: 74px;
}

.section-heading {
  margin-bottom: 54px;
}

.service-card,
.industry-card,
.process-step,
.why-panel,
.cta-panel {
  border-color: rgba(225, 225, 223, .18);
}

.trust-item + .trust-item {
  border-left-color: rgba(225, 225, 223, .14);
}

.section-process {
  background: #050505;
}

.process-row {
  max-width: 100%;
}

.why-panel {
  margin-top: 74px;
  margin-bottom: 74px;
  background: #111111;
}

.why-art {
  border: 1px solid rgba(225, 225, 223, .12);
  border-radius: 18px;
  background: #050505;
}

.why-art img {
  width: min(100%, 620px);
  transform: none;
}

.cta-section {
  margin-top: 74px;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 46px;
  text-align: left;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) minmax(140px, .65fr) minmax(140px, .65fr) minmax(280px, 1.35fr);
  gap: 42px;
  padding: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #111111;
}

.footer-brand img {
  width: 210px;
  height: auto;
  display: block;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.footer-col a,
.footer-links a {
  color: var(--text-muted);
  font-weight: 700;
}

.footer-col a:hover,
.footer-links a:hover {
  color: var(--accent-lime);
}

.footer-cta h2 {
  max-width: 430px;
  margin: 0 0 24px;
  color: var(--text-main);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px 0;
  color: var(--text-muted);
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  width: auto;
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1050px) {
  .site-header {
    padding: 0 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 72px;
    padding: 0 16px;
    border-radius: 0;
  }

  .brand-logo {
    width: 154px;
    height: 46px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 16px;
  }

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

  .section-trust,
  .section-industries,
  .section-process,
  .section-services {
    width: min(100% - 32px, var(--max));
    margin: 54px auto;
    padding: 58px 18px;
    border-radius: 16px;
  }

  .trust-item + .trust-item {
    border-top-color: rgba(225, 225, 223, .14);
  }

  .why-panel,
  .cta-section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .why-art img {
    width: min(100%, 430px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 22px;
    border-radius: 16px;
  }

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

  .mobile-menu-glyph {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-glyph {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 16px;
    color: var(--accent-lime);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #202020;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
  }

  .nav-toggle,
  .site-nav {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .mobile-menu-glyph {
    display: none !important;
  }

  .nav-toggle {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 200 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #202020 !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 8px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-toggle span {
    display: none !important;
  }

  .nav-toggle::before {
    content: "☰";
    color: var(--accent-lime);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
  }
}

/* Final responsive section sizing and image fit */
.hero {
  min-height: auto;
  padding-top: clamp(118px, 11vw, 154px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

.hero-visual,
.why-art {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}

.hero-visual img,
.why-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual img {
  transform: scale(1.08);
}

.why-art img {
  transform: scale(1.08);
}

.section-trust,
.section-industries,
.section-process,
.section-services,
.why-panel,
.cta-section {
  margin-top: clamp(42px, 5vw, 68px);
  margin-bottom: clamp(42px, 5vw, 68px);
}

.section-trust,
.section-industries,
.section-process,
.section-services {
  padding-top: clamp(58px, 7vw, 84px);
  padding-bottom: clamp(58px, 7vw, 84px);
}

.trust-grid {
  align-items: stretch;
}

.trust-item {
  min-height: 250px;
  justify-content: center;
}

.service-card,
.industry-card {
  min-height: clamp(250px, 22vw, 300px);
}

.process-step {
  min-height: 96px;
}

.why-panel {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 58px);
  padding: clamp(42px, 6vw, 68px);
}

.why-art {
  min-height: 0;
  overflow: hidden;
}

.cta-panel {
  min-height: 0;
  padding-top: clamp(46px, 6vw, 64px);
  padding-bottom: clamp(50px, 6vw, 68px);
}

.footer-main {
  padding: clamp(30px, 4vw, 42px);
}

@media (min-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 540px) minmax(500px, 1fr);
  }

  .hero-visual {
    aspect-ratio: 1.18 / 1;
  }
}

@media (max-width: 1050px) {
  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .why-panel {
    grid-template-columns: 1fr;
  }

  .why-art {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .hero-visual {
    width: 100%;
    aspect-ratio: 1 / .9;
    border-radius: 14px;
  }

  .hero-visual img {
    transform: scale(1.18);
  }

  .section-trust,
  .section-industries,
  .section-process,
  .section-services {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .trust-item {
    min-height: 220px;
  }

  .service-card,
  .industry-card {
    min-height: 230px;
  }

  .why-panel {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px 18px 36px;
  }

  .why-art {
    aspect-ratio: 1 / .82;
    border-radius: 14px;
  }

  .why-art img {
    transform: scale(1.18);
  }

  .cta-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 760px) {
  .section-heading h2,
  .why-content h2,
  .cta-panel h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .section-heading.centered h2 {
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-visual {
    aspect-ratio: 1 / .78;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.04);
  }

  .why-art img {
    object-fit: contain;
    transform: scale(1.05);
  }
}

/* Final viewport rhythm pass: reduce oversized section heights */
.hero {
  padding-top: clamp(108px, 9vw, 132px);
  padding-bottom: clamp(34px, 4.5vw, 56px);
}

.section-trust,
.section-industries,
.section-process,
.section-services,
.why-panel,
.cta-section {
  margin-top: clamp(28px, 3.5vw, 44px);
  margin-bottom: clamp(34px, 4vw, 52px);
}

.section-trust,
.section-industries,
.section-process,
.section-services {
  padding-top: clamp(48px, 5.4vw, 66px);
  padding-bottom: clamp(48px, 5.4vw, 66px);
}

.section-heading {
  margin-bottom: clamp(34px, 4vw, 46px);
}

.trust-item {
  min-height: 205px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.soft-icon {
  width: 126px;
  height: 126px;
  margin-bottom: 22px;
}

.soft-icon i {
  font-size: 56px;
}

.service-card,
.industry-card {
  min-height: clamp(230px, 19vw, 270px);
}

.service-illustration {
  height: clamp(138px, 13vw, 164px);
}

.industry-card i {
  margin-bottom: 30px;
  font-size: clamp(62px, 6.5vw, 78px);
}

.process-step {
  min-height: 84px;
}

.why-panel {
  padding: clamp(34px, 4.8vw, 54px);
}

.cta-panel {
  padding-top: clamp(38px, 5vw, 54px);
  padding-bottom: clamp(42px, 5vw, 58px);
}

@media (min-width: 1060px) {
  .hero-visual {
    max-height: min(520px, calc(100vh - 190px));
  }

  .hero-visual img {
    object-fit: cover;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .section-trust,
  .section-industries,
  .section-process,
  .section-services,
  .why-panel,
  .cta-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .section-trust,
  .section-industries,
  .section-process,
  .section-services {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .trust-item {
    min-height: 190px;
    padding: 24px 16px;
  }

  .soft-icon {
    width: 116px;
    height: 116px;
    margin-bottom: 18px;
  }

  .soft-icon i {
    font-size: 50px;
  }

  .service-card,
  .industry-card {
    min-height: 210px;
  }

  .why-panel {
    padding: 24px 16px 30px;
  }

  .cta-panel {
    padding-top: 36px;
    padding-bottom: 42px;
  }
}

/* Final production pass: balanced media frames, professional type scale, standard section rhythm */
body {
  font-size: 16px;
  line-height: 1.55;
}

.site-nav {
  font-size: 14px;
}

.section-kicker {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: .18em;
}

h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.2vw, 66px);
  line-height: 1.03;
}

.section-heading h2,
.why-content h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.1;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 32px;
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.6;
}

.button {
  min-height: 46px;
  padding-inline: 24px;
  font-size: 14px;
}

.hero {
  min-height: 680px;
  padding-top: clamp(116px, 9vw, 142px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.hero-visual,
.why-art {
  position: relative;
  padding: clamp(16px, 2.1vw, 28px);
  border: 1px solid rgba(225, 225, 223, .18);
  border-radius: 20px;
  background: #050505;
  overflow: hidden;
}

.hero-visual::after,
.why-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: blur(22px) brightness(.7) saturate(.92);
  opacity: .58;
  transform: scale(1.08);
}

.hero-visual::after {
  background-image: url("../images/hero-automation-dark.png");
}

.why-art::after {
  background-image: url("../images/why-opsautomation-dark.png");
}

.hero-visual {
  aspect-ratio: 1.24 / 1;
}

.hero-visual img,
.why-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-position: center;
  transform: none;
}

.hero-visual img {
  object-fit: contain;
  background: rgba(5, 5, 5, .16);
}

.why-art {
  aspect-ratio: 1.35 / 1;
}

.why-art img {
  object-fit: cover;
}

.section-trust,
.section-industries,
.section-process,
.section-services {
  padding: clamp(56px, 6vw, 78px) clamp(24px, 3vw, 36px);
}

.section-trust,
.section-industries,
.section-process,
.section-services,
.why-panel,
.cta-section {
  margin-top: clamp(38px, 4vw, 58px);
  margin-bottom: clamp(38px, 4vw, 58px);
}

.section-heading {
  margin-bottom: clamp(38px, 4vw, 50px);
}

.trust-item h3,
.service-card h3,
.industry-card h3 {
  font-size: clamp(20px, 1.9vw, 24px);
}

.trust-item p {
  font-size: 16px;
  line-height: 1.45;
}

.service-card,
.industry-card {
  min-height: clamp(240px, 20vw, 286px);
  border-radius: 14px;
}

.service-card {
  padding: 28px 22px;
}

.service-illustration {
  height: clamp(148px, 13vw, 168px);
}

.industry-card h3 {
  max-width: 190px;
}

.process-step strong,
.footer-col a,
.footer-links a {
  font-size: 15px;
}

.check-list li {
  min-height: 62px;
  font-size: clamp(18px, 1.8vw, 21px);
}

.why-panel {
  padding: clamp(40px, 5vw, 64px);
}

.cta-panel h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.cta-panel p:not(.section-kicker) {
  font-size: clamp(17px, 1.8vw, 20px);
}

@media (min-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 535px) minmax(500px, 1fr);
  }

  .hero-visual {
    max-height: 500px;
  }
}

@media (max-width: 1050px) {
  .hero {
    min-height: 0;
  }

  .hero-visual,
  .why-art {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(35px, 10vw, 44px);
    line-height: 1.08;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 36px;
  }

  .hero-copy {
    max-width: 360px;
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero-visual,
  .why-art {
    padding: 12px;
    border-radius: 16px;
  }

  .hero-visual {
    aspect-ratio: 1 / .78;
  }

  .hero-visual img,
  .why-art img {
    border-radius: 10px;
  }

  .section-trust,
  .section-industries,
  .section-process,
  .section-services {
    padding: 44px 18px;
  }

  .section-heading h2,
  .why-content h2,
  .cta-panel h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .service-card,
  .industry-card {
    min-height: 218px;
  }

  .check-list li {
    font-size: 17px;
  }
}

/* Media frames: remove visible wrapper background around non-transparent images */
.hero-visual,
.why-art {
  padding: 0;
  background: transparent;
}

.hero-visual::after,
.why-art::after {
  display: none;
}

.hero-visual img,
.why-art img {
  border-radius: 19px;
  object-fit: cover;
}

.hero-visual img {
  object-position: center;
  transform: none;
  transform-origin: center;
}

.why-art img {
  object-position: -35% center;
  transform: scale(1.30);
  transform-origin: 28% center;
}

.hero-visual {
  aspect-ratio: 1.32 / 1;
}

.why-art {
  aspect-ratio: 1.35 / 1;
}

@media (max-width: 760px) {
  .hero-visual,
  .why-art {
    padding: 0;
  }

  .hero-visual img,
  .why-art img {
    border-radius: 15px;
  }

  .hero-visual img {
    object-position: center;
    transform: none;
    transform-origin: center;
  }

  .why-art img {
    object-position: 12% center;
    transform: scale(1.14);
    transform-origin: 30% center;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .why-art img {
    object-position: -8% center;
    transform: scale(1.20);
    transform-origin: 28% center;
  }
}

@media (max-width: 430px) {
  .why-art img {
    object-position: 16% center;
    transform: scale(1.08);
    transform-origin: 32% center;
  }
}

/* Final alignment pass: standard section width and simplified footer */
.why-panel {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  padding: clamp(34px, 4vw, 48px);
}

.why-art {
  aspect-ratio: 1.22 / 1;
}

.cta-section,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
}

.site-footer {
  padding-top: 6px;
  padding-bottom: 34px;
}

.footer-main {
  grid-template-columns: minmax(210px, 1fr) minmax(130px, auto) minmax(130px, auto) minmax(260px, .9fr);
  align-items: start;
  gap: clamp(24px, 4vw, 44px);
  padding: 34px 0 28px;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand img {
  width: 196px;
}

.footer-col {
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .14em;
}

.footer-col a,
.footer-links a {
  font-size: 14px;
}

.footer-cta {
  justify-self: end;
  max-width: 330px;
}

.footer-cta .section-kicker {
  margin-bottom: 12px;
}

.footer-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.16;
}

.footer-cta .button {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 13px;
}

.footer-bottom {
  padding-top: 18px;
  font-size: 14px;
}

@media (max-width: 1050px) {
  .why-panel {
    grid-template-columns: 1fr;
  }

  .why-art {
    aspect-ratio: 1.35 / 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .why-panel,
  .cta-section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .why-panel {
    padding: 26px 16px 32px;
  }

  .why-art {
    aspect-ratio: 1 / .78;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0 24px;
  }

  .footer-brand img {
    width: 178px;
  }

  .footer-cta {
    max-width: 100%;
  }

  .footer-bottom {
    gap: 14px;
  }
}

/* Minimal footer */
.site-footer {
  padding-top: 0;
  padding-bottom: 34px;
  text-align: center;
}

.footer-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 34px 0 24px;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand img {
  width: 202px;
  margin-inline: auto;
}

.footer-main p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent-lime);
}

.footer-bottom {
  justify-content: center;
  padding-top: 0;
  color: rgba(225, 225, 223, .48);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 760px) {
  .footer-main {
    gap: 16px;
    padding: 28px 0 20px;
  }

  .footer-brand img {
    width: 176px;
  }

  .footer-nav {
    gap: 10px 18px;
  }
}

/* Language switcher */
.site-header {
  grid-template-columns: auto 1fr auto auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #101010;
}

.language-option {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--text-muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.language-option:hover,
.language-option:focus,
.language-option.is-active {
  color: #071006;
  background: var(--accent-lime);
}

/* Upgraded service grid icons */
.service-illustration {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 24% 22%, rgba(158, 246, 91, .14), transparent 30%),
    linear-gradient(145deg, #151515, #0b0b0b);
}

.service-illustration::before,
.service-illustration::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(158, 246, 91, .18);
}

.service-illustration::before {
  width: 150px;
  height: 150px;
}

.service-illustration::after {
  width: 96px;
  height: 96px;
  border-style: dashed;
  opacity: .7;
}

.service-orbit {
  position: absolute;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(225, 225, 223, .1);
  border-radius: 50%;
  transform: rotate(-18deg) skew(-8deg);
}

.service-icon-ring {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(158, 246, 91, .45);
  border-radius: 22px;
  color: #071006;
  background: var(--accent-lime);
  box-shadow: 0 18px 38px rgba(158, 246, 91, .2);
}

.service-icon-ring i {
  font-size: 38px;
  line-height: 1;
}

.service-badge {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 225, 223, .13);
  border-radius: 14px;
  color: var(--accent-lime);
  background: rgba(24, 24, 24, .94);
  box-shadow: 0 14px 24px rgba(0, 0, 0, .28);
}

.service-badge i {
  font-size: 20px;
  line-height: 1;
}

.service-badge.top {
  top: 26px;
  right: 34px;
}

.service-badge.bottom {
  left: 34px;
  bottom: 28px;
}

.automation .service-icon-ring {
  border-radius: 50%;
}

.software .service-icon-ring {
  border-radius: 18px;
}

.integration .service-icon-ring {
  transform: rotate(-8deg);
}

.analytics .service-icon-ring {
  transform: rotate(4deg);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .language-switch {
    justify-self: end;
  }

  .site-nav {
    order: 5;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto 44px;
    align-items: center;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .language-switch {
    grid-column: 2;
    padding: 3px;
  }

  .language-option {
    min-width: 34px;
    height: 30px;
    font-size: 11px;
  }

  .service-icon-ring {
    width: 74px;
    height: 74px;
  }

  .service-icon-ring i {
    font-size: 34px;
  }
}

/* Final mobile navigation fix */
@media (max-width: 760px) {
  .site-header {
    z-index: 190;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
  }

  .nav-toggle {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 220 !important;
    display: flex !important;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }

  .nav-toggle::before {
    content: "☰";
    transition: transform .2s ease;
  }

  .nav-toggle[aria-expanded="true"]::before {
    content: "×";
    font-size: 30px;
    line-height: .8;
  }

  .nav-toggle[aria-expanded="true"] {
    background: var(--accent-lime) !important;
    border-color: var(--accent-lime) !important;
  }

  .nav-toggle[aria-expanded="true"]::before {
    color: #071006;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    z-index: 210;
    width: auto;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(12, 12, 12, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-nav::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 22px;
    width: 14px;
    height: 14px;
    border-top: 1px solid var(--line-strong);
    border-left: 1px solid var(--line-strong);
    background: rgba(12, 12, 12, .96);
    transform: rotate(45deg);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    position: relative;
    padding: 15px 14px;
    border-radius: 10px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 850;
    background: rgba(255, 255, 255, .025);
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .site-nav a + a {
    margin-top: 2px;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    color: var(--accent-lime);
    background: rgba(158, 246, 91, .1);
    transform: translateX(2px);
    outline: 0;
  }

  .site-nav a::after {
    content: "→";
    position: absolute;
    right: 14px;
    color: rgba(158, 246, 91, .7);
    opacity: .8;
  }
}
