@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #102033;
  --muted: #5e6d7e;
  --line: #dce4ee;
  --accent: #1663ff;
  --accent-dark: #0a3fbe;
  --soft: #eaf1ff;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.12);
  --font-sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p,
h1,
h2,
h3,
li,
span,
strong,
a {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 249, 252, 0.88);
  border-bottom: 1px solid rgba(220, 228, 238, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.brand-tagline {
  color: #5e6d7e;
  font-size: 14px;
  line-height: 1.15;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(22, 99, 255, 0.28);
  outline-offset: 2px;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  transform: translateY(-6px);
}

.menu-toggle-lines::after {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle-lines {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px) 72px;
}

.hero-copy {
  max-width: 620px;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  margin: 28px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 760;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(22, 99, 255, 0.28);
}

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

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.hero-panel {
  min-height: 420px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 20%, rgba(22, 99, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #ffffff, #dfe9fb 52%, #c9d9f5);
  box-shadow: var(--shadow);
}

.hero-panel.hero-visual {
  display: flex;
  align-items: center;
  justify-self: end;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.home-contact-strip {
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) repeat(4, minmax(150px, 1fr));
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto clamp(58px, 7vw, 90px);
  padding: 20px 28px;
  border: 1px solid #d7e5fb;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(22, 99, 255, 0.06);
}

.home-contact-intro {
  min-width: 0;
  padding-right: 26px;
}

.home-contact-intro h2 {
  margin: 0;
  color: #1262ff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}

.home-contact-intro p {
  max-width: 440px;
  margin: 9px 0 0;
  color: #29405f;
  font-size: 11.5px;
  line-height: 1.38;
  font-weight: 500;
}

.home-contact-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid #e4ecf7;
}

.home-contact-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #1663ff;
}

.home-contact-whatsapp .home-contact-icon {
  color: #0fbf68;
}

.home-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-contact-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.home-contact-copy strong {
  color: #071936;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 850;
}

.home-contact-copy span {
  color: #29405f;
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 650;
}

.product-ecosystem {
  padding: 0 clamp(20px, 4vw, 52px) clamp(56px, 7vw, 88px);
}

.ecosystem-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.ecosystem-heading h2 {
  margin: 0;
  color: #071936;
  font-size: clamp(34px, 3.8vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.ecosystem-heading p {
  margin: 12px auto 0;
  max-width: 690px;
  color: #39506f;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.48;
  font-weight: 500;
}

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

.ecosystem-card {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(260px, 0.72fr);
  grid-template-rows: auto 1fr;
  column-gap: 28px;
  row-gap: 16px;
  align-items: center;
  min-height: auto;
  padding: 26px 26px 24px;
  border: 2px solid #dfe8f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.035);
}

.ecosystem-card-link {
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ecosystem-card-link:hover,
.ecosystem-card-link:focus-visible {
  border-color: rgba(22, 99, 255, 0.38);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.ecosystem-card-link:nth-child(2):hover,
.ecosystem-card-link:nth-child(2):focus-visible {
  border-color: rgba(15, 155, 95, 0.38);
}

.ecosystem-intro {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  align-self: start;
}

.ecosystem-symbol {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  box-shadow: 0 12px 26px rgba(22, 99, 255, 0.1);
}

.ecosystem-symbol-hardware {
  color: var(--accent);
}

.ecosystem-symbol-software {
  background: #eaf8f0;
  color: #0f9b5f;
}

.ecosystem-symbol svg,
.feature-icon svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-symbol svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.9;
}

.ecosystem-symbol-software svg {
  stroke-width: 2.2;
}

.ecosystem-media {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 250px);
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.ecosystem-media img {
  position: absolute;
  display: block;
  width: 520%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ecosystem-media-hardware img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.ecosystem-media-systems img {
  left: -205%;
  object-position: 50% 50%;
}

.ecosystem-media-apps img {
  left: -287%;
  object-position: 70% 50%;
}

.ecosystem-media-pass img {
  left: -405%;
  object-position: 100% 50%;
}

.ecosystem-media-software img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

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

.ecosystem-copy h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.16;
  font-weight: 800;
}

.ecosystem-card:nth-child(2) .ecosystem-copy h3 {
  color: #0f9b5f;
}

.ecosystem-copy p {
  margin: 0;
  color: #39506f;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  font-weight: 500;
}

.ecosystem-features {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecosystem-features li {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #314562;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.feature-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--accent);
}

.ecosystem-features-software .feature-icon {
  color: #0f9b5f;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.85;
}

.technology-core {
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 7vw, 88px);
  text-align: center;
}

.technology-core h2 {
  margin: 0 0 28px;
  color: #071936;
  font-size: clamp(34px, 3.8vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
}

.technology-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 176px;
  padding: 0 clamp(20px, 3vw, 48px);
}

.technology-item + .technology-item {
  border-left: 2px solid #e1e9f4;
}

.technology-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--accent);
}

.technology-icon svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.technology-item-android .technology-icon {
  background: #eaf8f0;
  color: #0f9b5f;
}

.technology-item h3 {
  margin: 18px 0 0;
  color: #071936;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.2;
  font-weight: 800;
}

.technology-item p {
  margin: 14px auto 0;
  max-width: 340px;
  color: #39506f;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.4;
  font-weight: 500;
}

.panel-header {
  display: flex;
  gap: 8px;
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.22);
}

.metric-row {
  display: grid;
  gap: 8px;
  margin-top: 52px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.metric-row strong {
  font-size: 30px;
  line-height: 1.1;
}

.metric-row span,
.metric-grid span {
  color: var(--muted);
  font-size: 14px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric-grid div {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.metric-grid b {
  font-size: 28px;
}

.timeline {
  height: 12px;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.timeline span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section h2,
.cta-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.split p,
.case-strip p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

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

.local-support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  min-height: 250px;
  padding: clamp(30px, 4vw, 46px) clamp(34px, 5vw, 58px);
  border-radius: 8px;
  background: #f3f7ff;
  box-shadow: 0 14px 38px rgba(16, 32, 51, 0.04);
}

.local-support-content {
  display: grid;
  gap: 34px;
}

.local-support-copy h3 {
  margin: 0;
  color: #071936;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.22;
  font-weight: 800;
}

.local-support-copy p {
  margin: 14px 0 0;
  max-width: 610px;
  color: #173052;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  font-weight: 500;
}

.local-support-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-support-list li {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: center;
  text-align: center;
  color: #071936;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.35;
  font-weight: 800;
}

.local-support-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent);
}

.local-support-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.malaysia-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
}

.malaysia-map-image {
  display: block;
  width: min(100%, 460px);
  height: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background: var(--ink);
  color: #ffffff;
}

.split p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

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

.check-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.case-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.news-preview {
  background: #ffffff;
}

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

.news-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.news-grid time,
.list-stack time,
.content-page time {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.news-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.22;
}

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

.news-link {
  display: inline-flex;
  margin-top: 26px;
}

.text-link {
  color: var(--accent);
  font-weight: 760;
}

.cta-band {
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
  padding: clamp(36px, 6vw, 64px);
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.content-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.content-page header {
  margin-bottom: 36px;
}

.content-page h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.content-page header p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.products-page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.products-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.products-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-hero h1 {
  margin: 0;
  color: #071936;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.products-hero .eyebrow {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  font-weight: 500;
}

.product-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 30px;
  padding: 6px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: #f5f8fd;
}

.product-filter-button {
  min-width: 112px;
  border: 0;
  border-radius: 6px;
  padding: 11px 18px;
  background: transparent;
  color: #39506f;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.product-filter-button:hover,
.product-filter-button:focus-visible {
  color: var(--accent);
  outline: none;
}

.product-filter-button.is-active {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.08);
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.45fr);
  gap: 22px;
  align-items: center;
  min-height: 270px;
  padding: 26px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.04);
}

.product-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  border-color: rgba(22, 99, 255, 0.38);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.09);
  transform: translateY(-2px);
  outline: none;
}

.product-card-link[data-product-type="software"]:hover,
.product-card-link[data-product-type="software"]:focus-visible {
  border-color: rgba(15, 155, 95, 0.38);
}

.product-card.is-hidden {
  display: none;
}

.product-card-copy {
  min-width: 0;
}

.product-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-category-software {
  background: #eaf8f0;
  color: #0f9b5f;
}

.product-card h2 {
  margin: 0;
  color: #071936;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.15;
  letter-spacing: 0;
}

.product-card p {
  margin: 14px 0 0;
  color: #39506f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-tags li {
  padding: 7px 10px;
  border: 1px solid #dfe8f5;
  border-radius: 6px;
  color: #314562;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.product-card-media,
.product-card-symbol {
  justify-self: center;
}

.product-card-media {
  width: min(100%, 210px);
  aspect-ratio: 0.86 / 1;
  display: grid;
  place-items: center;
}

.product-card-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card-media-software {
  width: min(100%, 150px);
}

.product-card-symbol {
  display: inline-grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: var(--accent);
  box-shadow: 0 14px 28px rgba(22, 99, 255, 0.1);
}

.product-card-symbol-software {
  background: #eaf8f0;
  color: #0f9b5f;
}

.product-card-symbol svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-detail-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
}

.product-back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: #526784;
  font-size: 15px;
  font-weight: 800;
}

.product-back-link::before {
  content: "<";
  margin-right: 9px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.46fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: linear-gradient(135deg, #f6f9fe 0%, #ffffff 100%);
}

.product-detail-copy h1 {
  margin: 0;
  color: #071936;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.product-detail-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #39506f;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  font-weight: 500;
}

.detail-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}

.detail-share-label {
  margin-right: 4px;
  color: #526784;
  font-size: 14px;
  font-weight: 800;
}

.detail-share-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe8f5;
  border-radius: 999px;
  padding: 0;
  color: var(--accent);
  background: #ffffff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.05);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.detail-share-button svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.detail-share-button-secondary {
  color: #39506f;
}

.detail-share-button-secondary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-share-button:hover,
.detail-share-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(22, 99, 255, 0.38);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.1);
  outline: none;
}

.detail-share-status {
  min-height: 1.2em;
  color: #526784;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-media {
  justify-self: center;
  width: min(100%, 260px);
  aspect-ratio: 0.86 / 1;
  display: grid;
  place-items: center;
}

.product-detail-media-software {
  width: min(100%, 170px);
}

.product-detail-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail-content {
  max-width: none;
}

.product-detail-content h2 {
  color: #071936;
}

.news-page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.news-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.news-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-hero h1 {
  margin: 0;
  color: #071936;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.news-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  font-weight: 500;
}

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

.news-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(22, 99, 255, 0.38);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.09);
  transform: translateY(-2px);
  outline: none;
}

.news-card-compact {
  grid-template-rows: 1fr;
}

.news-card-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f3f7fd;
}

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

.news-card-body {
  padding: 24px;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: #526784;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-card h2,
.news-detail-copy h1 {
  letter-spacing: 0;
}

.news-card h2 {
  margin: 14px 0 0;
  color: #071936;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.16;
}

.news-card p {
  margin: 14px 0 0;
  color: #39506f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.news-tags li {
  padding: 7px 10px;
  border: 1px solid #dfe8f5;
  border-radius: 6px;
  color: var(--accent);
  background: #f5f8fd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  color: #39506f;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.news-pagination .is-current {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
}

.news-detail-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
}

.news-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: linear-gradient(135deg, #f6f9fe 0%, #ffffff 100%);
}

.news-detail-copy h1 {
  margin: 16px 0 0;
  color: #071936;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}

.news-detail-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #39506f;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  font-weight: 500;
}

.news-detail-media {
  display: grid;
  min-height: 260px;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background: #f3f7fd;
}

.news-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.news-detail-content {
  max-width: none;
}

.news-detail-content h2 {
  color: #071936;
}

.about-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.about-simple-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-simple-hero {
  margin-bottom: 34px;
}

.about-simple-hero h1 {
  margin: 0;
  color: #071936;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.about-simple-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #39506f;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  font-weight: 500;
}

.about-simple-main,
.about-simple-section {
  padding: 28px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.about-simple-main h2,
.about-simple-section h2 {
  margin: 0;
  color: #071936;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: 0;
}

.about-simple-main p,
.about-simple-section p {
  margin: 16px 0 0;
  color: #39506f;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.about-simple-section {
  margin-top: 24px;
}

.about-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.contact-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.contact-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  color: #071936;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #39506f;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 600;
}

.contact-panel {
  padding: 28px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: #ffffff;
}

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

.contact-info-card {
  display: flex;
  min-height: 0;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  color: inherit;
  background: #fbfdff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.contact-info-card:hover,
a.contact-info-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 99, 255, 0.3);
  box-shadow: 0 16px 30px rgba(16, 32, 51, 0.1);
  outline: none;
}

.contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: rgba(22, 99, 255, 0.08);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-info-copy span {
  color: #526784;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-info-copy strong {
  color: #071936;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-phone-link {
  color: inherit;
}

.contact-phone-link:hover,
.contact-phone-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.prose {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.prose h1 {
  display: none;
}

.prose h2 {
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.2;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 17px;
}

.prose a {
  color: var(--accent);
}

.list-stack {
  display: grid;
  gap: 16px;
}

.list-stack article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.list-stack h2 {
  margin: 0 0 8px;
}

.list-stack p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 38px clamp(24px, 5vw, 96px) 24px;
  color: rgba(235, 244, 255, 0.88);
  background:
    radial-gradient(circle at 18% 20%, rgba(49, 129, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #062a55 0%, #082753 46%, #041a3a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-main {
  display: grid;
  justify-items: center;
  width: fit-content;
  max-width: min(100%, 520px);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  width: fit-content;
  max-width: 100%;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.footer-logo-mark {
  position: relative;
  width: 34px;
  height: 34px;
}

.footer-logo-mark::before,
.footer-logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px 14px 4px 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5fc5ff, #1b7cff);
  transform: skewX(-28deg);
}

.footer-logo-mark::after {
  inset: 4px 4px 4px 18px;
  opacity: 0.72;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(235, 244, 255, 0.84);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(235, 244, 255, 0.22);
  border-radius: 999px;
  color: rgba(235, 244, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social svg,
.footer-contact svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.footer-social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-copyright {
  margin: 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(235, 244, 255, 0.88);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 650;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.footer-contact span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  stroke-width: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(235, 244, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.footer-bottom nav {
  display: inline-flex;
  gap: 22px;
}

.footer-bottom a {
  color: rgba(235, 244, 255, 0.9);
}

@media (max-width: 860px) {
  .section-heading,
  .case-strip,
  .cta-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .js .menu-toggle {
    display: grid;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    row-gap: 10px;
  }

  .js .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    gap: 8px;
    border-top: 1px solid transparent;
    transition: max-height 180ms ease, opacity 140ms ease, visibility 140ms ease, padding-top 180ms ease, border-color 180ms ease;
  }

  .js .main-nav a {
    display: block;
    padding: 10px 0;
  }

  .js .site-header.is-menu-open .main-nav {
    max-height: 380px;
    visibility: visible;
    opacity: 1;
    padding-top: 12px;
    border-color: var(--line);
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-panel {
    min-height: 280px;
  }

  .hero-panel.hero-visual {
    width: 100%;
    min-height: 0;
  }

  .home-contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    padding: 20px;
  }

  .home-contact-intro {
    grid-column: 1 / -1;
    padding: 0 0 18px;
    border-bottom: 1px solid #e4ecf7;
  }

  .home-contact-intro p {
    max-width: 560px;
  }

  .home-contact-item {
    min-height: 76px;
    padding: 18px 18px 0 0;
    border-left: 0;
  }

  .home-contact-item:nth-child(odd) {
    padding-left: 18px;
    border-left: 1px solid #e4ecf7;
  }

  .product-ecosystem {
    padding-bottom: 64px;
  }

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

  .ecosystem-card {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
    min-height: 350px;
  }

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

  .technology-item {
    min-height: 200px;
    padding: 0 28px;
  }

  .technology-item:nth-child(odd) {
    border-left: 0;
  }

  .technology-item:nth-child(even) {
    border-left: 2px solid #e1e9f4;
  }

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

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

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

  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 250px;
  }

  .malaysia-map {
    min-height: 180px;
  }

  .footer-main,
  .footer-bottom {
    justify-content: center;
  }
}

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

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-tagline {
    max-width: min(52vw, 270px);
    white-space: normal;
    font-size: 11px;
  }

  .main-nav {
    font-size: 15px;
  }

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

  .hero {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1.02;
  }

  .hero p {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-panel {
    min-height: 0;
    padding: 18px;
  }

  .hero-panel.hero-visual {
    padding: 0;
  }

  .home-contact-strip {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 520px);
    margin-bottom: 42px;
    padding: 18px;
  }

  .home-contact-intro {
    padding-bottom: 16px;
  }

  .home-contact-intro h2 {
    font-size: 21px;
  }

  .home-contact-item,
  .home-contact-item:nth-child(odd) {
    min-height: 0;
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid #e4ecf7;
  }

  .home-contact-item:first-of-type {
    border-top: 0;
  }

  .product-ecosystem {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
  }

  .ecosystem-heading {
    margin-bottom: 24px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ecosystem-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    min-height: 0;
    padding: 18px 16px;
  }

  .ecosystem-intro {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .ecosystem-symbol {
    width: 50px;
    height: 50px;
  }

  .ecosystem-symbol svg {
    width: 30px;
    height: 30px;
  }

  .ecosystem-media {
    grid-column: 1;
    grid-row: 2;
    width: min(210px, 100%);
    justify-self: center;
  }

  .ecosystem-copy h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .ecosystem-copy p {
    font-size: 16px;
  }

  .ecosystem-features {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .ecosystem-features li {
    font-size: 13px;
    white-space: normal;
  }

  .technology-core {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
  }

  .technology-core h2 {
    margin-bottom: 22px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .technology-item,
  .technology-item:nth-child(even) {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .technology-icon {
    width: 54px;
    height: 54px;
  }

  .technology-icon svg {
    width: 30px;
    height: 30px;
  }

  .technology-item h3 {
    margin-top: 12px;
    font-size: 19px;
  }

  .technology-item p {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
  }

  .metric-row {
    margin-top: 36px;
    padding: 18px;
  }

  .metric-row strong {
    font-size: 24px;
  }

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

  .metric-grid div {
    min-height: 92px;
    padding: 12px 10px;
  }

  .metric-grid b {
    font-size: 17px;
  }

  .metric-grid span {
    font-size: 11px;
    line-height: 1.35;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section h2,
  .cta-band h2 {
    font-size: clamp(30px, 10vw, 38px);
  }

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

  .service-grid article,
  .news-grid article {
    min-height: auto;
    padding: 22px;
  }

  .local-support-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 28px;
  }

  .local-support-copy p {
    margin-top: 12px;
  }

  .local-support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }

  .local-support-list li {
    gap: 10px;
    font-size: 13px;
  }

  .local-support-icon {
    width: 34px;
    height: 34px;
  }

  .local-support-icon svg {
    width: 30px;
    height: 30px;
  }

  .malaysia-map {
    min-height: 170px;
  }

  .malaysia-map-image {
    width: min(100%, 360px);
  }

  .split {
    gap: 26px;
  }

  .check-list li {
    padding: 16px;
  }

  .cta-band {
    margin-left: 20px;
    margin-right: 20px;
    padding: 28px;
  }

  .content-page {
    width: min(100% - 32px, 880px);
    padding: 48px 0;
  }

  .products-page {
    width: min(100% - 32px, 1240px);
    padding: 48px 0;
  }

  .news-page,
  .news-detail-page,
  .about-page,
  .contact-page {
    width: min(100% - 32px, 1120px);
    padding: 48px 0;
  }

  .products-hero {
    margin-bottom: 24px;
  }

  .news-hero {
    margin-bottom: 24px;
  }

  .products-hero h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .news-hero h1,
  .news-detail-copy h1,
  .about-simple-hero h1,
  .contact-hero h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .products-hero p {
    font-size: 14px;
  }

  .news-hero p,
  .news-detail-copy p,
  .about-simple-hero p,
  .contact-hero p {
    font-size: 14px;
  }

  .contact-panel {
    padding: 22px;
  }

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

  .contact-info-card {
    min-height: 0;
  }

  .product-filter {
    display: flex;
    width: 100%;
  }

  .product-filter-button {
    flex: 1 1 96px;
    min-width: 0;
    padding: 10px 12px;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .product-card-media,
  .product-card-symbol {
    justify-self: start;
  }

  .product-card-media {
    width: min(100%, 190px);
  }

  .product-card-media-software {
    width: min(100%, 140px);
  }

  .product-card-symbol {
    width: 86px;
    height: 86px;
  }

  .product-card-symbol svg {
    width: 46px;
    height: 46px;
  }

  .product-detail-page {
    width: min(100% - 32px, 1120px);
    padding: 48px 0;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-detail-media,
  .product-detail-media-software {
    justify-self: start;
    width: min(100%, 180px);
  }

  .news-card {
    grid-template-rows: 180px 1fr;
  }

  .news-card-compact {
    grid-template-rows: 1fr;
  }

  .news-card-body {
    padding: 22px;
  }

  .news-detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .news-detail-media {
    min-height: 190px;
  }

  .about-simple-main,
  .about-simple-section {
    padding: 22px;
  }

  .content-page h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .prose {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding: 34px 20px 22px;
  }

  .footer-main {
    gap: 22px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    gap: 6px 12px;
    margin-top: 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  .main-nav {
    font-size: 13px;
  }

  .hero,
  .product-ecosystem,
  .technology-core,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel,
  .prose,
  .service-grid article,
  .news-grid article,
  .list-stack article,
  .product-card,
  .news-card-body,
  .about-simple-main,
  .about-simple-section,
  .contact-panel,
  .contact-info-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel.hero-visual {
    padding-left: 0;
    padding-right: 0;
  }

  .ecosystem-card {
    padding: 16px;
  }

  .ecosystem-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ecosystem-copy h3 {
    font-size: 20px;
  }

  .ecosystem-copy p {
    font-size: 14px;
  }
}
