:root {
  --blue: #1296f3;
  --navy: #0b1e33;
  --yellow: #f7c948;
  --white: #ffffff;
  --light: #f5f7fa;
  --muted: #607083;
  --line: rgba(11, 30, 51, 0.1);
  --shadow: 0 24px 70px rgba(11, 30, 51, 0.12);
  --soft-shadow: 0 14px 34px rgba(11, 30, 51, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(18, 150, 243, 0.07), rgba(255, 255, 255, 0) 520px),
    var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(11, 30, 51, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
  height: 78px;
  overflow: hidden;
}

.brand img {
  width: 210px;
  height: 78px;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(11, 30, 51, 0.72);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  color: var(--navy) !important;
  background: var(--yellow);
  border: 1px solid rgba(11, 30, 51, 0.08);
  border-radius: 999px;
  padding: 11px 16px;
  box-shadow: 0 10px 22px rgba(247, 201, 72, 0.28);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
}

.section-pad {
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
}

.compact {
  padding-top: 78px;
  padding-bottom: 78px;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid,
.enterprise-grid,
.machine-real-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(247, 201, 72, 0.18);
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-weight: 900;
}

.hero-title {
  display: grid;
  gap: 0.08em;
  max-width: 820px;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title span,
.hero-title strong {
  display: block;
  white-space: nowrap;
}

.hero-title span {
  color: var(--navy);
  font-size: clamp(3rem, 6.4vw, 6.2rem);
}

.hero-title strong {
  color: var(--blue);
  font-size: clamp(4.9rem, 11vw, 10.6rem);
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(18, 150, 243, 0.18);
}

h2 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 650px;
  font-size: clamp(1.15rem, 2.3vw, 1.42rem);
}

.hero-copy .hero-support {
  margin-top: -6px;
  color: rgba(11, 30, 51, 0.78);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.btn-primary {
  color: var(--navy);
  background: var(--yellow);
  border-color: rgba(11, 30, 51, 0.08);
  box-shadow: 0 16px 34px rgba(247, 201, 72, 0.3);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.badges,
.managed-list,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span,
.managed-list span,
.feature-list span,
.location-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(18, 150, 243, 0.13);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(11, 30, 51, 0.05);
  font-weight: 800;
}

.badges svg,
.managed-list svg,
.feature-list svg,
.location-tags svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.hero-photo-wrap {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 22px -18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(247, 201, 72, 0.22), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(18, 150, 243, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(18, 150, 243, 0.12), rgba(255, 255, 255, 0));
  filter: blur(5px);
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(500px, 90vw);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 40px 90px rgba(11, 30, 51, 0.22);
}

.hero-photo img {
  width: 100%;
  height: min(640px, 72vh);
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(11, 30, 51, 0.72);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  font-weight: 900;
}

.productivity-stage {
  min-height: 590px;
}

.productivity-visual {
  position: relative;
  z-index: 2;
  width: min(520px, 92vw);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 40px 90px rgba(11, 30, 51, 0.16);
  backdrop-filter: blur(18px);
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.visual-header img {
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.visual-header span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.visual-grid article {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(18, 150, 243, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.visual-grid svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.visual-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.visual-flow span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.status-pill,
.metric-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.status-pill {
  top: 42px;
  right: 28px;
  padding: 11px 14px;
  font-weight: 900;
}

.status-pill span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #20c997;
  box-shadow: 0 0 0 7px rgba(32, 201, 151, 0.15);
}

.metric-card {
  padding: 13px;
}

.metric-card svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-size: 0.9rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-one {
  left: -6px;
  top: 160px;
}

.metric-two {
  right: -6px;
  bottom: 112px;
}

.proof-band {
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 28px;
  margin-top: -32px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.proof-grid article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  background: var(--light);
}

.proof-grid svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.proof-grid strong {
  font-size: 1rem;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.machine-section {
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--light);
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin: 0;
}

.about-copy blockquote {
  margin: 4px 0 0;
  border-left: 4px solid var(--yellow);
  padding: 12px 0 12px 16px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}

.pillar-grid {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pillar-grid article {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.pillar-grid svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.solution-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 150, 243, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 150, 243, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 52% 44%, rgba(247, 201, 72, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0.86));
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--soft-shadow);
}

.solution-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
  font-weight: 900;
}

.solution-node svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.center-node {
  left: 50%;
  top: 50%;
  width: 240px;
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
}

.center-node img {
  width: 168px;
  height: 96px;
  object-fit: contain;
}

.center-node span {
  color: var(--muted);
  font-size: 0.82rem;
}

.node-one {
  left: 8%;
  top: 16%;
}

.node-two {
  right: 8%;
  top: 18%;
}

.node-three {
  left: 10%;
  bottom: 18%;
}

.node-four {
  right: 10%;
  bottom: 16%;
}

.infrastructure {
  background: var(--white);
}

.infra-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.infra-photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.infra-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 32%;
}

.infra-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(18, 150, 243, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 150, 243, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 150, 243, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(247, 201, 72, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(18, 150, 243, 0.14), rgba(245, 247, 250, 0.9));
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: var(--soft-shadow);
}

.infra-visual::before,
.infra-visual::after {
  content: "";
  position: absolute;
  inset: 84px 96px;
  border: 1px solid rgba(18, 150, 243, 0.2);
  border-radius: 999px;
}

.infra-visual::after {
  inset: 124px 140px;
  border-color: rgba(247, 201, 72, 0.34);
}

.infra-hub,
.infra-signal {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.infra-hub {
  left: 50%;
  top: 50%;
  width: min(250px, 62%);
  min-height: 172px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.infra-hub img {
  width: 96px;
  height: 78px;
  object-fit: contain;
}

.infra-hub strong {
  font-size: 1.05rem;
}

.infra-hub span,
.infra-signal span {
  color: rgba(11, 30, 51, 0.68);
  font-size: 0.8rem;
  font-weight: 900;
}

.infra-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-weight: 900;
}

.infra-signal svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

.signal-one {
  left: 8%;
  top: 14%;
}

.signal-two {
  right: 8%;
  top: 18%;
}

.signal-three {
  left: 12%;
  bottom: 16%;
}

.signal-four {
  right: 12%;
  bottom: 14%;
}

.machine-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
  align-items: stretch;
}

.machine-gallery img {
  width: 100%;
  border: 1px solid rgba(11, 30, 51, 0.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  object-fit: cover;
}

.gallery-main {
  height: 620px;
  object-position: 50% 38%;
}

.gallery-side {
  display: grid;
  gap: 14px;
}

.gallery-side img {
  height: 303px;
}

.machine-copy p {
  max-width: 590px;
}

.feature-list {
  margin-top: 26px;
}

.section-heading {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
}

.steps,
.benefit-grid,
.location-cards,
.product-grid {
  display: grid;
  gap: 16px;
}

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

.step-card,
.benefit-card,
.product-card,
.form-panel,
.faq-list details,
.location-card,
.support-card,
.portal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.step-card,
.benefit-card {
  min-height: 160px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease;
}

.step-card:hover,
.benefit-card:hover,
.product-card:hover,
.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 150, 243, 0.3);
}

.step-card svg,
.benefit-card svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.step-card span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.why,
.products,
.vision,
.support-cta {
  background: var(--white);
}

.vision-card {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0.88)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.vision-card h2 {
  margin-left: auto;
  margin-right: auto;
}

.vision-card p {
  max-width: 760px;
  margin: 0 auto;
}

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

.product-card {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.06), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.enterprise {
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--light);
}

.enterprise-copy p {
  max-width: 580px;
}

.managed-list {
  margin-top: 26px;
}

.form-panel {
  padding: 22px;
}

.form-featured {
  border-color: rgba(18, 150, 243, 0.2);
}

.form-intro {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(18, 150, 243, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0.8));
}

.form-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-intro h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.form-intro p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: rgba(11, 30, 51, 0.78);
  font-size: 0.87rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(11, 30, 51, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 150, 243, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin: 12px 0 0;
  border: 1px solid rgba(18, 150, 243, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(18, 150, 243, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
}

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

.benefit-card {
  min-height: 132px;
}

.fine-print {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  color: rgba(11, 30, 51, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.locations {
  background: var(--white);
}

.network-map {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.map-panel,
.map-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.map-panel {
  min-height: 390px;
  padding: 18px;
}

.map-grid {
  position: relative;
  min-height: 354px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 150, 243, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 150, 243, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 20% 24%, rgba(247, 201, 72, 0.18), transparent 18%),
    radial-gradient(circle at 78% 68%, rgba(18, 150, 243, 0.16), transparent 25%),
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(255, 255, 255, 0.9));
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(11, 30, 51, 0.14);
  border-radius: 999px;
}

.map-grid::before {
  inset: 18% 16% 20% 14%;
}

.map-grid::after {
  inset: 30% 28% 28% 30%;
}

.map-route {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(18, 150, 243, 0), rgba(18, 150, 243, 0.62), rgba(247, 201, 72, 0.65));
}

.route-one {
  left: 22%;
  top: 39%;
  width: 56%;
  transform: rotate(13deg);
}

.route-two {
  left: 28%;
  top: 62%;
  width: 46%;
  transform: rotate(-18deg);
}

.map-marker {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 0 0 9px rgba(247, 201, 72, 0.18), 0 16px 28px rgba(11, 30, 51, 0.14);
  animation: markerPulse 2.5s ease-in-out infinite;
}

.map-marker svg {
  width: 21px;
  height: 21px;
}

.marker-one {
  left: 20%;
  top: 22%;
}

.marker-two {
  left: 68%;
  top: 18%;
  animation-delay: 0.25s;
}

.marker-three {
  left: 46%;
  top: 48%;
  animation-delay: 0.5s;
}

.marker-four {
  left: 26%;
  top: 70%;
  animation-delay: 0.75s;
}

.marker-five {
  left: 78%;
  top: 68%;
  animation-delay: 1s;
}

.map-copy {
  padding: 26px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.map-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.map-copy p {
  margin: 0;
  font-size: 0.98rem;
}

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

.availability-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(18, 150, 243, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(11, 30, 51, 0.05);
  font-size: 0.92rem;
  font-weight: 900;
}

.availability-badge svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.location-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.location-icon {
  min-height: 156px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.08), rgba(247, 201, 72, 0.12)),
    var(--light);
}

.location-icon svg {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.location-card h3 {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px;
}

@keyframes markerPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 9px rgba(247, 201, 72, 0.18), 0 16px 28px rgba(11, 30, 51, 0.14);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 0 14px rgba(247, 201, 72, 0.09), 0 20px 34px rgba(11, 30, 51, 0.17);
  }
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(18, 150, 243, 0.09), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.support-card p {
  max-width: 700px;
  margin-bottom: 0;
}

.final-cta {
  background: var(--white);
}

.cta-note {
  margin: 10px 0 0;
  color: rgba(11, 30, 51, 0.58);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.faq-list {
  width: min(850px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 0.98rem;
}

.footer {
  padding: 40px 24px;
  color: var(--white);
  background: var(--navy);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.footer img {
  width: 112px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.footer a:hover {
  color: var(--yellow);
}

.portal-hero {
  min-height: auto;
  padding-top: 88px;
  padding-bottom: 56px;
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1fr);
  gap: 46px;
  align-items: start;
}

.portal-card {
  padding: 22px;
}

.issue-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.issue-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin: 0;
  border: 1px solid rgba(11, 30, 51, 0.11);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  cursor: pointer;
}

.issue-option input {
  width: auto;
  margin: 0;
}

.issue-option span {
  font-weight: 900;
}

.portal-photo {
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.portal-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.support-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.support-visual div {
  min-height: 130px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.support-visual svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.support-visual span {
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 102px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid,
  .enterprise-grid,
  .machine-real-grid,
  .portal-grid,
  .network-map,
  .about-grid,
  .infra-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .hero-photo-wrap {
    min-height: 560px;
  }

  .proof-grid,
  .steps,
  .benefit-grid,
  .product-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .machine-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 560px;
  }

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

  .network-map {
    gap: 16px;
  }

  .solution-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .center-node,
  .solution-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
    margin: 0;
  }

  .center-node {
    min-height: 188px;
    order: -1;
    padding: 18px;
  }

  .center-node img {
    width: min(210px, 76%);
    height: 104px;
  }

  .solution-node {
    min-height: 60px;
    justify-content: center;
  }

  .portal-hero {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .portal-grid {
    gap: 24px;
  }

  .portal-card {
    padding: 18px;
  }

  .issue-options {
    grid-template-columns: 1fr;
  }

  .issue-option {
    min-height: 58px;
    padding: 14px;
  }

  .support-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 28px, 1180px);
    height: 84px;
  }

  .brand {
    width: 168px;
    height: 66px;
  }

  .brand img {
    width: 168px;
    height: 66px;
  }

  .nav-links {
    top: 94px;
  }

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

  .hero-title {
    gap: 0.1em;
  }

  .hero-title span {
    font-size: clamp(2.45rem, 11vw, 3rem);
  }

  .hero-title strong {
    font-size: clamp(4.1rem, 21vw, 5.9rem);
  }

  .badges span,
  .managed-list span,
  .feature-list span,
  .location-tags span {
    width: 100%;
    justify-content: center;
  }

  .hero-photo-wrap {
    min-height: 510px;
  }

  .hero-photo img {
    height: 500px;
  }

  .status-pill {
    top: 14px;
    right: 6px;
  }

  .metric-one {
    left: 0;
    top: 112px;
  }

  .metric-two {
    right: 0;
    bottom: 26px;
  }

  .proof-grid,
  .steps,
  .benefit-grid,
  .product-grid,
  .pillar-grid,
  .form-row,
  .location-cards,
  .issue-options {
    grid-template-columns: 1fr;
  }

  .step-card,
  .benefit-card {
    min-height: 126px;
  }

  .gallery-main {
    height: 500px;
  }

  .gallery-side {
    grid-template-columns: 1fr;
  }

  .gallery-side img,
  .portal-photo img,
  .infra-photo img {
    height: 260px;
  }

  .productivity-stage {
    min-height: 470px;
  }

  .visual-grid,
  .support-visual {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    padding: 12px;
  }

  .center-node {
    min-height: 184px;
  }

  .center-node img {
    width: 190px;
    height: 98px;
  }

  .portal-hero {
    padding-top: 38px;
  }

  .support-visual div {
    min-height: 104px;
  }

  .infra-visual {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 14px;
  }

  .infra-visual::before,
  .infra-visual::after {
    display: none;
  }

  .infra-hub,
  .infra-signal {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .infra-hub {
    min-height: 152px;
  }

  .infra-signal {
    justify-content: center;
    min-height: 56px;
  }

  .map-panel {
    min-height: 320px;
    padding: 14px;
  }

  .map-grid {
    min-height: 292px;
  }

  .map-copy {
    padding: 20px;
  }

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

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