:root {
  --ink: #071a3d;
  --muted: #5b6679;
  --soft: #eef5fb;
  --line: #dce7f2;
  --teal: #0f68ad;
  --teal-dark: #063a76;
  --gold: #d99a22;
  --gold-soft: #fff0cf;
  --white: #ffffff;
  --sky: #2aa7e0;
  --shadow: 0 26px 70px rgba(7, 26, 61, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

html[lang="vi"] body {
  font-family: "Be Vietnam Pro", Inter, Arial, sans-serif;
}

html[lang="vi"] .hero h1,
html[lang="vi"] .split-intro h2,
html[lang="vi"] .section-heading h2,
html[lang="vi"] .ecosystem h2,
html[lang="vi"] .contact-panel h2,
html[lang="vi"] .form-heading h3 {
  line-height: 1.08;
}

html[lang="vi"] .hero-lead,
html[lang="vi"] .hero-vi,
html[lang="vi"] .split-intro > div > p,
html[lang="vi"] .section-heading p,
html[lang="vi"] .ecosystem-copy p,
html[lang="vi"] .contact-panel p,
html[lang="vi"] .contact-form {
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 226, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(140px, 13vw, 178px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.mobile-nav a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.mobile-nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 132px;
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}

.lang-button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 75px 16px auto 16px;
  z-index: 19;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 13px 10px;
  border-bottom: 1px solid var(--soft);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

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

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  min-height: clamp(620px, 74vh, 760px);
  padding: clamp(46px, 7vw, 82px) 0 38px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(43px, 7vw, 84px);
  line-height: 0.94;
  font-weight: 800;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-copy {
  min-width: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #334540;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

.hero-vi {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  max-width: 100%;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15, 104, 173, 0.22);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.line-button {
  background: #06c755;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(6, 199, 85, 0.18);
}

.button.line-button:hover {
  background: #05a948;
}

.button.whatsapp-button {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.18);
}

.button.whatsapp-button:hover {
  background: #1fb357;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 14% 4% 8% 10%;
  content: "";
  background: radial-gradient(circle, rgba(42, 167, 224, 0.16), transparent 62%);
  filter: blur(22px);
}

.hero-media img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  filter: hue-rotate(24deg) saturate(1.08) drop-shadow(0 34px 42px rgba(7, 26, 61, 0.14));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 26px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 15px;
}

.proof-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.split-intro h2,
.section-heading h2,
.ecosystem h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.02;
  font-weight: 800;
}

.split-intro > div > p,
.section-heading p,
.ecosystem-copy p,
.contact-panel p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-list article,
.case-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 18px;
  padding: 22px;
}

.service-icon {
  display: grid;
  grid-area: icon;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-list h3,
.case-grid h3,
.timeline h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.service-list h3 {
  grid-area: title;
}

.service-list p,
.case-grid p,
.timeline p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.service-list p {
  grid-area: text;
  min-width: 0;
}

.service-disclaimer {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #f3f8fc;
  color: #435166;
  font-size: 13px;
  line-height: 1.72;
}

.process-section,
.cases-section {
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 710px;
  text-align: center;
  margin: 0 auto 38px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.timeline-line {
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-dark), var(--sky), var(--gold));
}

.timeline article {
  position: relative;
  padding: 0 4px;
}

.timeline article span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(15, 104, 173, 0.24);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 12px 26px rgba(7, 26, 61, 0.08);
  font-size: 18px;
  font-weight: 800;
}

.duration-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 42px;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e9;
}

.duration-note strong {
  color: var(--ink);
  font-size: 16px;
}

.duration-note span {
  color: #6b5a3f;
  font-size: 14px;
  line-height: 1.55;
}

.ecosystem {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(76px, 9vw, 126px) 0;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #31423e;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  content: "";
  box-shadow: inset 0 0 0 5px var(--teal), inset 0 0 0 7px var(--white);
}

.network-map {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(220, 230, 226, 0.46) 1px, transparent 1px),
    linear-gradient(rgba(220, 230, 226, 0.46) 1px, transparent 1px),
    #ffffff;
  background-size: 52px 52px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.network-map path {
  fill: none;
  stroke: rgba(15, 104, 173, 0.38);
  stroke-width: 2;
}

.network-node {
  position: absolute;
  z-index: 1;
  display: grid;
  min-width: 112px;
  max-width: 154px;
  min-height: 46px;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(15, 104, 173, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 28px rgba(7, 26, 61, 0.1);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  white-space: normal;
}

.network-node.center {
  left: 50%;
  top: 50%;
  min-width: 108px;
  min-height: 108px;
  max-width: 108px;
  transform: translate(-50%, -50%);
  border-color: transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--teal-dark));
  color: var(--white);
  font-size: 20px;
}

.network-node.collaboration {
  left: 9%;
  top: 16%;
}

.network-node.resources {
  right: 10%;
  top: 14%;
}

.network-node.experience {
  right: 7%;
  top: 49%;
}

.network-node.referrals {
  right: 17%;
  bottom: 13%;
}

.network-node.channels {
  left: 11%;
  bottom: 15%;
}

.network-node.peer {
  left: 6%;
  top: 47%;
}

.cases-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-grid article {
  padding: 24px;
}

.case-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: #8a621d;
  font-size: 16px;
  font-weight: 800;
}

.contact-section {
  padding: clamp(76px, 10vw, 126px) 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #071a3d;
  color: var(--white);
  overflow: hidden;
}

.contact-panel h2 {
  max-width: 840px;
  color: var(--white);
}

.contact-panel p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy,
.contact-form {
  min-width: 0;
}

.email-highlight {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  max-width: 100%;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.email-highlight span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-highlight strong {
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contact-panel .contact-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.contact-disclaimer {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.68;
}

.copy-feedback {
  display: none;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.copy-feedback.is-visible {
  display: block;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.form-heading,
.form-full,
.form-submit {
  grid-column: 1 / -1;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

.form-heading p {
  margin: 8px 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #253655;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd9e8;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form input {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(42, 167, 224, 0.16);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: 760px;
}

.site-footer .footer-disclaimer {
  max-width: 760px;
  font-size: 12px;
  line-height: 1.65;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.thank-you-card {
  width: min(100%, 620px);
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card img {
  width: 172px;
  margin: 0 auto 30px;
}

.thank-you-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.04;
}

.thank-you-card p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.thank-you-card .thank-you-vi {
  font-family: "Be Vietnam Pro", Inter, Arial, sans-serif;
}

.thank-you-card .button {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .split-intro,
  .ecosystem,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 680px;
    width: 100%;
  }

  .proof-strip,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

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

  .timeline-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-logo {
    width: 128px;
  }

  .language-switch {
    width: 116px;
    min-width: 116px;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero {
    padding-top: 38px;
    gap: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.8vw, 36px);
    line-height: 1.05;
    text-wrap: wrap;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-vi {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

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

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }

  .split-intro h2,
  .section-heading h2,
  .ecosystem h2,
  .contact-panel h2 {
    font-size: clamp(29px, 8.6vw, 36px);
  }

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

  .service-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "text text";
    column-gap: 16px;
    padding: 18px 16px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-list p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.72;
    overflow-wrap: normal;
    word-break: normal;
  }

  .timeline article {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    padding: 0;
  }

  .timeline article span {
    grid-row: span 2;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    font-size: 15px;
  }

  .timeline p {
    margin-bottom: 20px;
  }

  .network-map {
    min-height: 500px;
    margin-inline: auto;
  }

  .network-node {
    min-width: 98px;
    max-width: 124px;
    font-size: 12px;
  }

  .network-node.center {
    min-width: 92px;
    min-height: 92px;
    max-width: 92px;
    font-size: 16px;
  }

  .network-node.collaboration {
    left: 7%;
    top: 10%;
  }

  .network-node.resources {
    right: 7%;
    top: 11%;
  }

  .network-node.experience {
    right: 5%;
    top: 44%;
  }

  .network-node.referrals {
    right: 7%;
    bottom: 12%;
  }

  .network-node.channels {
    left: 6%;
    bottom: 12%;
  }

  .network-node.peer {
    left: 4%;
    top: 44%;
  }

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

  .site-footer p,
  .footer-copy {
    text-align: left;
    justify-items: start;
  }
}

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

  .brand-logo {
    width: 116px;
  }

  .language-switch {
    width: 78px;
    min-width: 78px;
  }

  .lang-button {
    min-width: 31px;
    font-size: 11px;
  }

  .proof-strip,
  .split-intro,
  .process-section,
  .cases-section,
  .ecosystem,
  .contact-section {
    overflow-x: hidden;
  }

  .contact-panel {
    padding: 24px 16px;
  }

  .email-highlight {
    width: 100%;
    padding: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px 14px;
  }

  .network-map {
    min-height: 470px;
  }

  .network-node {
    min-width: 88px;
    max-width: 108px;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .network-node.center {
    min-width: 84px;
    min-height: 84px;
    max-width: 84px;
  }
}

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