:root {
  --navy-950: #061527;
  --navy-900: #08213d;
  --navy-800: #0c2f56;
  --navy-700: #123f71;
  --blue-600: #1769c2;
  --blue-500: #2385dc;
  --cyan-400: #4fc3df;
  --ink: #142235;
  --muted: #647386;
  --line: #dce6f1;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(6, 21, 39, 0.08);
  --shadow-card: 0 18px 46px rgba(6, 21, 39, 0.12);
  --shadow-deep: 0 28px 70px rgba(6, 21, 39, 0.2);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #f7faff 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 230, 241, 0.82);
  box-shadow: 0 12px 32px rgba(6, 21, 39, 0.05);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 244px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: 7px;
  box-shadow: 0 14px 26px rgba(8, 33, 61, 0.22);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: uppercase;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: 40px;
  max-width: 180px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-menu a {
  position: relative;
  color: #314157;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy-900);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg,
.btn svg,
.floating-whatsapp svg,
.stat-icon svg,
.solution-icon svg,
.tech-icon svg,
.map-placeholder svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--navy-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 0.22s ease, transform 0.35s ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0f5fb5, var(--blue-500));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(23, 105, 194, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  box-shadow: 0 22px 46px rgba(23, 105, 194, 0.34);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 38px rgba(6, 21, 39, 0.24);
}

.btn-whatsapp {
  color: var(--white);
  background: #128c7e;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.18);
}

.btn-whatsapp:hover {
  background: #0f7569;
}

.hero,
.page-hero,
.cta-section {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero,
.page-hero,
.cta-section {
  color: var(--white);
}

.hero-home {
  min-height: 700px;
  background-image: url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1900&q=82");
}

.about-hero,
.contact-hero {
  background-color: #061527;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1900&q=82");
  background-position: center 54%;
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1900&q=82");
  background-position: center 54%;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1900&q=82");
}

.hero-home::before,
.cta-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(79, 195, 223, 0.2) 42.2%, transparent 43.5%),
    linear-gradient(150deg, transparent 0 59%, rgba(35, 133, 220, 0.18) 59.2%, transparent 60.3%),
    radial-gradient(circle at 16% 32%, rgba(79, 195, 223, 0.16), transparent 16%);
  opacity: 0.72;
  pointer-events: none;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  inset: 0;
  z-index: 1;
  opacity: 0.62;
}

.page-hero::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.8px),
    linear-gradient(118deg, transparent 0 48%, rgba(79, 195, 223, 0.12) 48.1% 48.26%, transparent 48.4% 72%, rgba(35, 133, 220, 0.11) 72.1% 72.24%, transparent 72.38%);
  background-size: 42px 42px, 100% 100%;
}

.about-hero::after {
  right: -90px;
  bottom: -160px;
  z-index: 0;
  width: min(42vw, 500px);
  height: min(42vw, 500px);
  background:
    linear-gradient(118deg, transparent 0 46%, rgba(79, 195, 223, 0.11) 46.2% 46.6%, transparent 46.8% 70%, rgba(35, 133, 220, 0.1) 70.2% 70.55%, transparent 70.8%),
    radial-gradient(circle at 50% 50%, transparent 0 41%, rgba(79, 195, 223, 0.08) 41.3% 41.8%, transparent 42.2% 51%, rgba(35, 133, 220, 0.07) 51.3% 51.8%, transparent 52.2%),
    radial-gradient(circle, rgba(35, 133, 220, 0.1), transparent 64%);
  border-radius: 999px;
  opacity: 0.56;
}

.contact-hero::after {
  right: 8%;
  bottom: 28px;
  z-index: 0;
  width: min(32vw, 360px);
  height: min(22vw, 230px);
  background:
    linear-gradient(90deg, rgba(79, 195, 223, 0.14) 0 38%, transparent 38%),
    linear-gradient(0deg, rgba(79, 195, 223, 0.12) 0 10%, transparent 10%),
    linear-gradient(120deg, transparent 0 48%, rgba(35, 133, 220, 0.16) 48.3% 49%, transparent 49.3%),
    radial-gradient(circle at 18% 78%, rgba(79, 195, 223, 0.18) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 78%, rgba(79, 195, 223, 0.18) 0 5px, transparent 6px);
  opacity: 0.48;
}

.services-hero::after {
  right: -90px;
  bottom: -190px;
  z-index: 0;
  width: min(46vw, 540px);
  height: min(46vw, 540px);
  background:
    radial-gradient(circle at 50% 50%, transparent 0 40%, rgba(79, 195, 223, 0.1) 40.4% 41%, transparent 41.4% 50%, rgba(35, 133, 220, 0.08) 50.3% 50.8%, transparent 51.2%),
    radial-gradient(circle, rgba(35, 133, 220, 0.12), transparent 64%);
  border-radius: 999px;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(23, 105, 194, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(3, 14, 28, 0.96) 0%, rgba(6, 21, 39, 0.92) 42%, rgba(8, 33, 61, 0.74) 70%, rgba(8, 33, 61, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 14, 28, 0.2), rgba(3, 14, 28, 0.78));
}

.page-hero .hero-overlay,
.services-hero .hero-overlay {
  background:
    radial-gradient(circle at 18% 36%, rgba(35, 133, 220, 0.2), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(79, 195, 223, 0.13), transparent 26%),
    linear-gradient(90deg, rgba(3, 14, 28, 0.96) 0%, rgba(6, 21, 39, 0.9) 42%, rgba(6, 21, 39, 0.64) 72%, rgba(6, 21, 39, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 14, 28, 0.22), rgba(3, 14, 28, 0.66));
}

.about-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 14, 28, 0.98) 0%, rgba(6, 21, 39, 0.94) 38%, rgba(6, 21, 39, 0.72) 64%, rgba(6, 21, 39, 0.45) 100%),
    linear-gradient(180deg, rgba(3, 14, 28, 0.12), rgba(3, 14, 28, 0.68)),
    radial-gradient(circle at 78% 35%, rgba(79, 195, 223, 0.12), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.62fr);
  gap: 54px;
  align-items: center;
  min-height: 700px;
  padding: 74px 0 88px;
}

.hero-main {
  max-width: 790px;
}

.page-hero {
  min-height: 360px;
}

.about-hero {
  min-height: 340px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 360px;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0 96px;
}

.about-hero .page-hero-content {
  min-height: 340px;
  max-width: 640px;
  padding: 78px 0 86px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--cyan-400);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  line-height: 1.07;
  letter-spacing: 0;
}

.hero h1,
.cta-section h2 {
  color: var(--white);
}

.page-hero h1,
.services-hero h1 {
  color: var(--white);
}

h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 5vw, 4.75rem);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(3.25rem, 4.2vw, 3.5rem);
  line-height: 1.12;
}

.page-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 4.2vw, 4rem);
  line-height: 1.06;
}

.about-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 3.8vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-copy,
.page-hero p,
.cta-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.68;
}

.about-hero p {
  max-width: 580px;
  font-size: 1.04rem;
}

.page-hero .hero-kicker {
  color: var(--cyan-400);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.services-hero .hero-kicker {
  color: var(--cyan-400);
}

.page-hero-rule {
  display: block;
  width: 68px;
  height: 2px;
  margin: 22px 0 20px;
  background: linear-gradient(90deg, var(--cyan-400), rgba(79, 195, 223, 0));
  border-radius: 999px;
}

.hero-copy {
  margin: 22px 0 0;
  line-height: 1.72;
}

.hero-support {
  display: inline-flex;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-width: 154px;
  min-height: 52px;
}

.quick-enquiry-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(6, 21, 39, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(20px);
}

.quick-enquiry-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(45deg, transparent 0 42%, rgba(79, 195, 223, 0.16) 42.2%, transparent 43.2%),
    radial-gradient(circle at top right, rgba(35, 133, 220, 0.24), transparent 36%);
  pointer-events: none;
}

.quick-enquiry-card > * {
  position: relative;
}

.quick-enquiry-card p {
  margin: 0 0 8px;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-enquiry-card h2 {
  color: var(--white);
  font-size: 1.42rem;
}

.quick-enquiry-card form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.quick-enquiry-card label {
  color: rgba(255, 255, 255, 0.86);
}

.quick-enquiry-card input,
.quick-enquiry-card select {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.quick-enquiry-card input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.quick-enquiry-card select option {
  color: var(--ink);
}

.quick-enquiry-card .form-note {
  color: rgba(255, 255, 255, 0.72);
}

.quick-enquiry-card .form-note.is-success {
  color: #bbf7d0;
}

.quick-enquiry-card .form-note.is-error {
  color: #fecaca;
}

.section-copy p,
.section-heading p,
.network-layout p,
.strength-grid p,
.why-content p,
.tech-card p,
.value-grid p,
.timeline-panel p {
  color: var(--muted);
}

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

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.group-section,
.solutions-section,
.why-section,
.intro-section,
.values-section,
.contact-section,
.solutions-page-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 248, 252, 0.58), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(8, 33, 61, 0.035) 0 1px, transparent 1px 88px);
}

.about-hero + .intro-section {
  background:
    linear-gradient(180deg, #f4f8fc 0%, rgba(255, 255, 255, 0.98) 15%, rgba(255, 255, 255, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(8, 33, 61, 0.028) 0 1px, transparent 1px 88px);
}

.group-section::before,
.solutions-section::before,
.why-section::before,
.tech-section::before,
.values-section::before,
.contact-section::before,
.solutions-page-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(28deg, transparent 0 46%, rgba(23, 105, 194, 0.08) 46.3%, transparent 47.3%),
    linear-gradient(148deg, transparent 0 62%, rgba(79, 195, 223, 0.1) 62.2%, transparent 63.2%);
  pointer-events: none;
}

.group-section .container,
.solutions-section .container,
.why-section .container,
.tech-section .container,
.values-section .container,
.contact-section .container,
.solutions-page-section .container {
  position: relative;
  z-index: 1;
}

.group-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.45fr);
  gap: 46px;
  align-items: start;
}

.group-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(23, 105, 194, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(8, 33, 61, 0.03) 0 1px, transparent 1px 92px);
}

.group-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(124deg, transparent 0 24%, rgba(23, 105, 194, 0.11) 24.1% 24.3%, transparent 24.4% 62%, rgba(79, 195, 223, 0.1) 62.1% 62.28%, transparent 62.4%),
    radial-gradient(circle at 76% 22%, rgba(23, 105, 194, 0.09) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 58%, rgba(23, 105, 194, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 76%, rgba(23, 105, 194, 0.1) 0 2px, transparent 3px);
  opacity: 0.72;
}

.section-copy > p:last-child {
  margin-top: 18px;
  font-size: 1.03rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--blue-600);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.home-group-strip {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(220, 230, 241, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.home-group-unit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f9fbfe);
  border: 1px solid rgba(220, 230, 241, 0.88);
  border-radius: 8px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.home-group-unit:hover {
  border-color: rgba(35, 133, 220, 0.34);
  box-shadow: 0 16px 38px rgba(6, 21, 39, 0.08);
  transform: translateY(-3px);
}

.home-group-unit > span {
  color: rgba(23, 105, 194, 0.28);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.home-group-unit h3 {
  margin: 0;
  font-size: 1.12rem;
}

.home-group-unit p,
.home-preview-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.home-preview-note {
  padding: 4px 2px 0;
  font-size: 0.95rem;
}

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

.group-capability-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 54px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 154px;
  padding: 24px 24px 24px 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(203, 218, 235, 0.86);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(6, 21, 39, 0.07);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease,
    background-color 0.24s ease;
}

.group-capability-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--blue-600), rgba(79, 195, 223, 0.92));
  opacity: 0.64;
}

.group-capability-card:hover {
  background: #ffffff;
  border-color: rgba(35, 133, 220, 0.35);
  box-shadow: 0 22px 54px rgba(6, 21, 39, 0.11);
  transform: translateY(-4px);
}

.group-step {
  color: rgba(23, 105, 194, 0.24);
  font-size: 2.72rem;
  font-weight: 800;
  line-height: 1;
}

.group-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue-600);
  background: linear-gradient(135deg, #e8f3ff, #f5fbff);
  border: 1px solid rgba(23, 105, 194, 0.16);
  border-radius: 8px;
}

.group-icon svg {
  width: 25px;
  height: 25px;
}

.group-capability-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.2;
}

.group-capability-copy p {
  margin: 0;
}

.group-capability-type {
  margin-top: 7px !important;
  color: var(--blue-600);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.group-capability-copy p:not(.group-capability-type) {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.years-badge {
  display: inline-flex;
  min-width: 82px;
  justify-content: center;
  padding: 8px 10px;
  color: var(--navy-900);
  background: rgba(245, 248, 252, 0.95);
  border: 1px solid rgba(203, 218, 235, 0.95);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.group-card,
.solution-block,
.tech-card,
.timeline-panel article,
.value-grid article,
.contact-card,
.form-panel {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(220, 230, 241, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.group-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.group-card:hover,
.tech-card:hover,
.value-grid article:hover {
  border-color: rgba(35, 133, 220, 0.38);
  box-shadow: var(--shadow-deep);
  transform: translateY(-5px);
}

.group-card-media {
  position: relative;
  height: 156px;
  overflow: hidden;
}

.group-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.group-card:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.group-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 21, 39, 0), rgba(6, 21, 39, 0.46));
}

.group-card-media span {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.6rem;
  font-weight: 800;
}

.group-card-content {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  padding: 22px;
}

.group-card-content p {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.group-card ul,
.solution-list,
.why-list,
.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.group-card li,
.solution-list li,
.why-list li,
.checklist li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: #4d5d70;
  font-size: 0.95rem;
}

.group-card li::before,
.solution-list li::before,
.checklist li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
}

.stats-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(22, 114, 201, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(9, 52, 91, 0.06) 18.1% 18.25%, transparent 18.35% 44%, rgba(9, 52, 91, 0.045) 44.1% 44.25%, transparent 44.35%),
    repeating-linear-gradient(90deg, rgba(9, 52, 91, 0.035) 0 1px, transparent 1px 120px);
  content: "";
  opacity: 0.75;
}

.key-figures-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 2fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.key-figures-heading .section-kicker {
  margin-bottom: 0;
}

.key-figures-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: 3.9rem;
  line-height: 0.98;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(156, 170, 186, 0.32);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(14, 35, 57, 0.08);
}

.stat-item {
  display: flex;
  height: 100%;
  min-height: 292px;
  padding: 42px 34px 38px;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  border-right: 1px solid rgba(156, 170, 186, 0.34);
  transition:
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.stat-item:hover {
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(13, 45, 77, 0.1);
  transform: translateY(-3px);
}

.stat-item:last-child {
  border-right: 0;
}

.solution-icon,
.tech-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
}

.stat-number {
  display: block;
  color: var(--navy);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.stat-number.is-text {
  max-width: 100%;
  font-size: 2.55rem;
  line-height: 0.98;
  white-space: nowrap;
  word-break: normal;
}

.stat-value {
  display: flex;
  height: 86px;
  align-items: flex-start;
}

.stat-label-wrap {
  display: flex;
  height: 98px;
  align-items: flex-start;
}

.stat-description-wrap {
  display: flex;
  align-items: flex-start;
}

.stat-label {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.stat-description {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.solution-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  align-items: stretch;
}

.solution-showcase.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.solution-block {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
  will-change: transform;
}

.solution-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
}

.solution-block:first-child .solution-media {
  aspect-ratio: 16 / 10;
}

.solution-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.solution-block:hover {
  z-index: 2;
  border-color: rgba(35, 133, 220, 0.46);
  box-shadow: 0 26px 68px rgba(6, 21, 39, 0.16);
  transform: translateY(-6px) scale(1.02);
}

.solution-block:hover .solution-media img {
  filter: saturate(1.04) contrast(1.05);
  opacity: 0.94;
  transform: scale(1.05);
}

.solution-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 21, 39, 0), rgba(6, 21, 39, 0.58));
}

.solution-icon {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: var(--white);
  background: rgba(23, 105, 194, 0.92);
  box-shadow: 0 14px 30px rgba(6, 21, 39, 0.24);
}

.solution-body {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  padding: 26px;
}

.solution-body h3 {
  min-height: 2.4em;
}

.solution-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.solution-list {
  margin-top: 20px;
  margin-bottom: 24px;
}

.solution-list li {
  align-items: center;
}

.solution-block .btn {
  align-self: flex-start;
  margin-top: auto;
}

.solution-detail-stack {
  display: grid;
  gap: 30px;
}

.solution-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
}

.solution-detail.reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
}

.solution-detail.reverse .solution-detail-media {
  order: 2;
}

.solution-detail-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy-900);
}

.solution-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.solution-detail-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 21, 39, 0.02), rgba(6, 21, 39, 0.38)),
    linear-gradient(130deg, rgba(23, 105, 194, 0.22), transparent 48%);
}

.solution-detail-media span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: rgba(23, 105, 194, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(6, 21, 39, 0.28);
}

.solution-detail-content {
  padding: 42px;
}

.solution-detail-content > p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
}

.solution-detail-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.detail-service {
  padding: 16px;
  background: rgba(245, 248, 252, 0.72);
  border: 1px solid rgba(220, 230, 241, 0.9);
  border-radius: 8px;
}

.detail-service h3 {
  margin: 0;
  font-size: 1rem;
}

.detail-service p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.solution-detail-cta {
  margin-top: 28px;
}

.network-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(35, 133, 220, 0.2), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(79, 195, 223, 0.14), transparent 25%),
    linear-gradient(135deg, #061527 0%, #08213d 48%, #05111f 100%);
}

.network-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1.7px),
    linear-gradient(115deg, transparent 0 38%, rgba(79, 195, 223, 0.1) 38.12% 38.24%, transparent 38.36% 70%, rgba(35, 133, 220, 0.09) 70.12% 70.24%, transparent 70.36%);
  background-size: 44px 44px, 100% 100%;
  opacity: 0.4;
  pointer-events: none;
}

.network-section::after {
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(79, 195, 223, 0.16), transparent 62%);
  pointer-events: none;
}

.network-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 44px;
  align-items: center;
}

.network-left {
  max-width: 430px;
}

.network-section h2,
.network-section p {
  color: var(--white);
}

.network-section h2 {
  font-size: clamp(2.08rem, 3.05vw, 3.3rem);
  line-height: 1.04;
}

.network-title-rule {
  display: block;
  width: 68px;
  height: 2px;
  margin: 20px 0 18px;
  background: linear-gradient(90deg, var(--cyan-400), rgba(79, 195, 223, 0));
  border-radius: 999px;
}

.network-section p:not(.section-kicker) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.62;
}

.network-right {
  position: relative;
}

.network-photo-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  background: #071b31;
  border: 1px solid rgba(118, 184, 245, 0.22);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(35, 133, 220, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.network-photo-panel:hover {
  border-color: rgba(79, 195, 223, 0.34);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(35, 133, 220, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.network-photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(1.06);
  transform: scale(1.01);
}

.network-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 27, 0.5), rgba(3, 13, 27, 0.08) 45%, rgba(3, 13, 27, 0.38)),
    linear-gradient(180deg, rgba(6, 21, 39, 0.04), rgba(6, 21, 39, 0.42)),
    radial-gradient(circle at 70% 20%, rgba(79, 195, 223, 0.1), transparent 32%);
  pointer-events: none;
}

.network-insight-cards,
.network-location-chips {
  position: absolute;
  z-index: 2;
}

.network-insight-cards {
  inset: 22px 22px 86px;
}

.network-insight-card {
  position: absolute;
  display: flex;
  width: min(260px, 42%);
  gap: 9px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(5, 19, 36, 0.58);
  border: 1px solid rgba(179, 218, 255, 0.2);
  border-radius: 10px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.network-insight-card:hover {
  background: rgba(7, 28, 52, 0.66);
  border-color: rgba(79, 195, 223, 0.32);
  transform: translateY(-2px);
}

.network-insight-card svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--cyan-400);
}

.network-insight-card h3 {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.12;
}

.network-insight-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  line-height: 1.36;
}

.network-insight-card.is-regional {
  top: 8px;
  left: 10px;
}

.network-insight-card.is-agency {
  right: 8px;
  bottom: 12px;
}

.network-location-chips {
  inset: 0;
}

.network-location-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(4, 18, 34, 0.52);
  border: 1px solid rgba(179, 218, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
}

.chip-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--cyan-400);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(79, 195, 223, 0.12);
}

.network-location-chip.is-singapore {
  left: 28%;
  top: 48%;
}

.network-location-chip.is-malaysia {
  left: 46%;
  top: 38%;
}

.network-location-chip.is-thailand {
  right: 17%;
  top: 25%;
}

.network-location-chip.is-global {
  right: 9%;
  bottom: 31%;
}

.network-service-strip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(4, 18, 34, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.network-service-strip article {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 10px 12px;
}

.network-service-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.network-service-strip svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--cyan-400);
}

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

.network-service-strip strong {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.15;
}

.network-service-strip span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  line-height: 1.25;
}

.tech-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

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

.tech-card,
.value-grid article {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tech-icon,
.value-grid svg {
  color: var(--blue-600);
  background: linear-gradient(135deg, #e8f3ff, #f4fbff);
  border: 1px solid rgba(23, 105, 194, 0.12);
}

.tech-card h3,
.value-grid h3 {
  margin-top: 22px;
}

.tech-card p,
.value-grid p {
  margin: 12px 0 0;
}

.why-grid,
.strength-grid,
.about-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.media-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 21, 39, 0.02), rgba(6, 21, 39, 0.22)),
    linear-gradient(120deg, rgba(23, 105, 194, 0.18), transparent 42%);
}

.media-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.map-panel {
  position: relative;
  isolation: isolate;
  padding: 38px;
}

.map-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 24%, rgba(35, 133, 220, 0.13), transparent 22%),
    radial-gradient(circle at 78% 58%, rgba(79, 195, 223, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(245, 248, 252, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-panel::after {
  position: absolute;
  inset: 36px;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(23, 105, 194, 0.24) 48%, rgba(23, 105, 194, 0.24) 52%, transparent 53%),
    linear-gradient(-22deg, transparent 47%, rgba(79, 195, 223, 0.24) 48%, rgba(79, 195, 223, 0.24) 52%, transparent 53%);
  background-size: 220px 120px, 260px 140px;
  opacity: 0.38;
}

.why-list li {
  display: block;
  padding: 13px 14px;
  color: #394b60;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 230, 241, 0.72);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(6, 21, 39, 0.05);
}

.why-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
}

.cta-section {
  padding: 76px 0;
  background-image:
    linear-gradient(90deg, rgba(3, 14, 28, 0.96), rgba(8, 33, 61, 0.88)),
    url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1800&q=82");
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-inner p {
  margin: 16px 0 0;
}

.timeline-panel {
  display: grid;
  gap: 16px;
}

.timeline-panel article {
  position: relative;
  padding: 26px 28px 26px 72px;
}

.timeline-panel article::before {
  position: absolute;
  top: 30px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: var(--blue-600);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(23, 105, 194, 0.12);
  content: "";
}

.timeline-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 1.38rem;
  font-weight: 800;
}

.timeline-panel p {
  margin: 10px 0 0;
}

.about-story-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 105, 194, 0.06), transparent 30%),
    linear-gradient(180deg, #f4f8fc 0%, rgba(255, 255, 255, 0.98) 15%, rgba(255, 255, 255, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(8, 33, 61, 0.028) 0 1px, transparent 1px 88px);
}

.about-story-section::before {
  position: absolute;
  top: -38px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 38px;
  content: "";
  background: linear-gradient(180deg, rgba(6, 21, 39, 0), rgba(244, 248, 252, 0.95));
  pointer-events: none;
}

.about-story-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(126deg, transparent 0 22%, rgba(23, 105, 194, 0.08) 22.1% 22.28%, transparent 22.4% 66%, rgba(79, 195, 223, 0.08) 66.1% 66.26%, transparent 66.4%),
    radial-gradient(circle at 82% 16%, rgba(23, 105, 194, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 68%, rgba(23, 105, 194, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 76%, rgba(79, 195, 223, 0.08) 0 2px, transparent 3px);
  pointer-events: none;
}

.about-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.story-panel,
.solution-detail {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(220, 230, 241, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.story-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-color: rgba(203, 218, 235, 0.82);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(6, 21, 39, 0.08);
}

.story-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--blue-600), rgba(79, 195, 223, 0.9));
  opacity: 0.86;
}

.story-panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.story-panel > p:not(.section-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(220, 230, 241, 0.88);
}

.story-value {
  min-width: 0;
  padding: 14px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(220, 230, 241, 0.82);
  border-radius: 9px;
}

.story-value span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-600);
  background: #eaf4ff;
  border: 1px solid rgba(23, 105, 194, 0.14);
  border-radius: 8px;
}

.story-value svg {
  width: 19px;
  height: 19px;
}

.story-value h3 {
  margin-top: 14px;
  color: var(--navy-900);
  font-size: 1rem;
}

.story-value p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.story-points {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 34px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(79, 195, 223, 0.14), transparent 28%),
    linear-gradient(160deg, #061527 0%, #08213d 58%, #05111f 100%);
  border: 1px solid rgba(113, 176, 225, 0.22);
  border-radius: 12px;
  box-shadow: 0 28px 68px rgba(6, 21, 39, 0.16);
}

.story-points::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(126deg, transparent 0 36%, rgba(79, 195, 223, 0.11) 36.1% 36.35%, transparent 36.5%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 84px);
  opacity: 0.75;
  pointer-events: none;
}

.story-points-copy,
.story-visual-media {
  position: relative;
  z-index: 1;
}

.story-points .section-kicker {
  color: var(--cyan-400);
}

.story-points h3 {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  line-height: 1.12;
}

.story-points-copy > p:not(.section-kicker) {
  max-width: 380px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.64;
}

.story-visual-media {
  margin: 30px -18px -18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.story-visual-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 21, 39, 0.08), rgba(6, 21, 39, 0.28)),
    linear-gradient(90deg, rgba(6, 21, 39, 0.26), rgba(6, 21, 39, 0));
  pointer-events: none;
}

.story-visual-media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.journey-section,
.solutions-detail-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.management-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 105, 194, 0.07), transparent 30%),
    linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(8, 33, 61, 0.03) 0 1px, transparent 1px 88px);
}

.management-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 27%, rgba(23, 105, 194, 0.08) 27.1% 27.26%, transparent 27.4% 70%, rgba(79, 195, 223, 0.08) 70.1% 70.25%, transparent 70.4%),
    radial-gradient(circle at 16% 28%, rgba(23, 105, 194, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 76%, rgba(79, 195, 223, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 62%, rgba(23, 105, 194, 0.09) 0 2px, transparent 3px);
  pointer-events: none;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 28px;
}

.journey-timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  width: 1px;
  background: linear-gradient(180deg, rgba(23, 105, 194, 0.18), rgba(23, 105, 194, 0.78), rgba(23, 105, 194, 0.18));
  content: "";
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 34px;
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-item::before {
  position: absolute;
  top: 9px;
  left: -27px;
  width: 14px;
  height: 14px;
  background: var(--blue-600);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(23, 105, 194, 0.12);
  content: "";
}

.journey-item > span {
  color: rgba(23, 105, 194, 0.34);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.journey-item strong {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-weight: 800;
}

.journey-item h3,
.journey-item p {
  margin: 0;
}

.journey-item p {
  margin-top: 8px;
  color: var(--muted);
}

.management-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.management-content {
  max-width: 560px;
}

.management-content h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-accent {
  display: block;
  width: 68px;
  height: 2px;
  margin: 22px 0 22px;
  background: linear-gradient(90deg, var(--blue-600), rgba(79, 195, 223, 0));
  border-radius: 999px;
}

.management-content > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.management-content blockquote {
  position: relative;
  margin: 28px 0 0;
  padding: 22px 24px 22px 28px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 218, 235, 0.82);
  border-left: 4px solid var(--blue-600);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(6, 21, 39, 0.07);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.5;
}

.management-support {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.management-support span {
  padding: 8px 11px;
  color: var(--navy-900);
  background: #ffffff;
  border: 1px solid rgba(203, 218, 235, 0.86);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(6, 21, 39, 0.04);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.management-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(203, 218, 235, 0.86);
  border-radius: 11px;
  box-shadow: 0 18px 46px rgba(6, 21, 39, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.management-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--blue-600), rgba(79, 195, 223, 0.94));
  opacity: 0.72;
}

.management-card:hover {
  border-color: rgba(35, 133, 220, 0.34);
  box-shadow: 0 24px 58px rgba(6, 21, 39, 0.11);
  transform: translateY(-4px);
}

.management-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-600);
  background: linear-gradient(135deg, #e8f3ff, #f7fbff);
  border: 1px solid rgba(23, 105, 194, 0.15);
  border-radius: 10px;
}

.management-card svg {
  width: 24px;
  height: 24px;
}

.management-card h3 {
  color: var(--navy-900);
  font-size: 1.12rem;
}

.management-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.capability-tags span {
  padding: 9px 12px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

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

.value-grid.about-values {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-grid svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 8px;
}

.contact-grid {
  align-items: start;
}

.contact-card,
.form-panel {
  padding: 34px;
}

.contact-card h2,
.form-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-list strong {
  color: var(--navy-900);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.contact-list a:hover {
  color: var(--blue-600);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

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

label {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfdbea;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(23, 105, 194, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-success {
  color: #05603a;
  font-weight: 700;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 700;
}

#enquiry-form {
  scroll-margin-top: 104px;
}

.map-section {
  padding: 0 0 78px;
  background: var(--soft);
}

.map-placeholder {
  display: grid;
  min-height: 340px;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 21, 39, 0.88), rgba(18, 63, 113, 0.78)),
    repeating-linear-gradient(0deg, transparent 0, transparent 48px, rgba(255, 255, 255, 0.08) 49px),
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255, 255, 255, 0.08) 49px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.map-placeholder svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--cyan-400);
}

.map-placeholder h2,
.map-placeholder p {
  color: var(--white);
}

.map-placeholder p {
  margin: 10px 0 0;
  opacity: 0.78;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 82% 22%, rgba(23, 105, 194, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(4, 15, 28, 0.99), rgba(6, 28, 52, 0.99) 52%, rgba(3, 13, 25, 0.99)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 84px);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.095) 0 1px, transparent 1.7px),
    radial-gradient(circle at 58% 54%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1.7px),
    linear-gradient(122deg, transparent 0 36%, rgba(79, 195, 223, 0.09) 36.1% 36.22%, transparent 36.35% 70%, rgba(35, 133, 220, 0.08) 70.1% 70.22%, transparent 70.35%);
  background-position: center, center, center;
  background-size: 18px 18px, 22px 22px, 100% 100%;
  mask-image: radial-gradient(ellipse at 64% 52%, #000 0 42%, transparent 74%);
  opacity: 0.3;
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.68fr 1.08fr 1fr;
  gap: 34px;
  padding: 62px 0 34px;
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--white);
}

.footer-logo-main {
  color: var(--white);
  font-size: clamp(2.25rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.footer-logo-subtitle {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.31em;
  line-height: 1.2;
}

.footer-logo-line {
  width: 44px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600));
  border-radius: 999px;
}

.footer-brand-description {
  max-width: 300px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-brand-meta {
  margin-top: 20px;
}

.footer-brand p,
.footer-contact p {
  margin: 8px 0;
}

.footer-brand-meta p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-brand-meta strong {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, #22c55e, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(6, 21, 39, 0.22), 0 10px 24px rgba(18, 140, 126, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.2;
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #20b85a, #0f7569);
  box-shadow: 0 22px 46px rgba(6, 21, 39, 0.26), 0 14px 30px rgba(18, 140, 126, 0.28);
  transform: translateY(-3px) scale(1.03);
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  color: #05603a;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  font-weight: 800;
}

.site-toast.is-error {
  color: #b42318;
  background: #fef3f2;
  border-color: #fecdca;
}

@media (max-width: 1120px) {
  .nav-actions .phone-link {
    display: none;
  }

  .hero-content,
  .group-layout,
  .network-layout,
  .tech-layout,
  .why-grid,
  .strength-grid,
  .about-layout,
  .about-story-grid,
  .journey-layout,
  .management-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .network-left {
    max-width: 620px;
  }

  .network-photo-panel {
    min-height: 420px;
  }

  .quick-enquiry-card {
    max-width: 620px;
  }

  .group-cards,
  .solution-showcase,
  .solution-showcase.expanded,
  .tech-grid,
  .story-values,
  .value-grid,
  .value-grid.about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail,
  .solution-detail.reverse {
    grid-template-columns: 1fr;
  }

  .solution-detail.reverse .solution-detail-media {
    order: 0;
  }

  .solution-detail-media img {
    min-height: 320px;
    aspect-ratio: 16 / 8;
  }

  .group-card-content {
    min-height: 0;
  }

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

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  .section {
    padding: 64px 0;
  }

  .network-section {
    padding: 58px 0;
  }

  .nav-inner {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.68rem;
  }

  .nav-menu,
  .nav-actions {
    position: fixed;
    right: 14px;
    left: 14px;
    z-index: 55;
    display: none;
    background: var(--white);
  }

  .nav-menu {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }

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

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: var(--soft);
  }

  .nav-actions {
    top: 317px;
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 18px 30px rgba(6, 21, 39, 0.08);
  }

  .nav-actions .phone-link {
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
  }

  .site-header.open .nav-menu,
  .site-header.open .nav-actions {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-home,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 62px 0 78px;
  }

  .page-hero,
  .page-hero-content {
    min-height: 320px;
  }

  .page-hero-content {
    padding: 72px 0 80px;
  }

  .about-hero,
  .about-hero .page-hero-content {
    min-height: 310px;
  }

  .about-hero .page-hero-content {
    padding: 66px 0 74px;
  }

  .page-hero h1 {
    font-size: clamp(2.625rem, 7vw, 3.25rem);
  }

  .about-hero h1 {
    font-size: clamp(2.45rem, 6.4vw, 3rem);
    line-height: 1.1;
  }

  .page-hero p {
    max-width: 590px;
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.45rem, 9vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(2.625rem, 6vw, 2.875rem);
    line-height: 1.12;
  }

  .stats-section {
    padding: 66px 0;
  }

  .key-figures-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .key-figures-heading h2 {
    font-size: 3.1rem;
  }

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

  .stat-item {
    min-height: 250px;
    padding: 36px 32px 34px;
    gap: 16px;
    border-right: 1px solid rgba(156, 170, 186, 0.34);
    border-bottom: 1px solid rgba(156, 170, 186, 0.34);
  }

  .stat-item:nth-child(2n) {
    border-right: 0;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stat-number {
    font-size: 4rem;
  }

  .stat-number.is-text {
    font-size: 2.35rem;
  }

  .stat-value {
    height: 72px;
  }

  .stat-label-wrap {
    height: 70px;
  }

  .stat-label {
    font-size: 1.48rem;
  }

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

@media (max-width: 640px) {
  .page-hero,
  .page-hero-content {
    min-height: 280px;
  }

  .page-hero-content {
    padding: 56px 0 64px;
  }

  .about-hero,
  .about-hero .page-hero-content {
    min-height: 290px;
  }

  .about-hero .page-hero-content {
    padding: 52px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(2.125rem, 9vw, 2.625rem);
    line-height: 1.08;
  }

  .about-hero h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.375rem);
    line-height: 1.1;
  }

  .page-hero p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .about-hero p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .page-hero-rule {
    width: 58px;
    margin: 18px 0 18px;
  }

  .about-hero::after,
  .contact-hero::after,
  .services-hero::after {
    opacity: 0.22;
  }

  .page-hero .hero-kicker {
    font-size: 0.72rem;
  }

  .network-section {
    padding: 52px 0;
  }

  .brand-mark {
    width: 46px;
    height: 40px;
    font-size: 0.9rem;
  }

  .brand-text {
    max-width: 118px;
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(1.98rem, 8.7vw, 2.7rem);
    line-height: 1.06;
  }

  .hero h1 {
    font-size: clamp(2.125rem, 8.6vw, 2.375rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .hero-copy,
  .cta-section p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-copy {
    margin-top: 18px;
    line-height: 1.58;
  }

  .hero-support {
    margin-top: 14px;
  }

  .hero-actions .btn,
  .quick-enquiry-card .btn,
  .cta-inner .btn,
  .contact-card .btn {
    width: 100%;
  }

  .quick-enquiry-card {
    padding: 24px;
    margin-top: 112px;
  }

  .group-cards,
  .solution-showcase,
  .solution-showcase.expanded,
  .tech-grid,
  .value-grid,
  .value-grid.about-values,
  .solution-detail-services,
  .stats-grid,
  .footer-grid,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .home-group-unit {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .group-capability-card {
    grid-template-columns: 48px 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  .group-step {
    font-size: 2.05rem;
  }

  .group-icon {
    width: 44px;
    height: 44px;
  }

  .group-icon svg {
    width: 21px;
    height: 21px;
  }

  .years-badge {
    grid-column: 2 / -1;
    justify-self: start;
    margin-top: 2px;
  }

  .story-panel,
  .story-points,
  .solution-detail-content {
    padding: 26px;
  }

  .management-card {
    padding: 22px;
  }

  .story-values {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
  }

  .story-value {
    padding: 14px;
  }

  .story-visual-media {
    margin: 24px -12px -12px;
  }

  .story-visual-media img {
    height: 220px;
  }

  .journey-timeline {
    padding-left: 22px;
  }

  .journey-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .journey-item::before {
    left: -25px;
  }

  .journey-item > span {
    font-size: 2.1rem;
  }

  .solution-detail-media img {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }

  .stats-section {
    padding: 52px 0;
  }

  .key-figures-heading {
    margin-bottom: 22px;
  }

  .key-figures-heading h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .stats-grid {
    border-radius: 10px;
  }

  .stat-item,
  .stat-item:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 30px 24px 28px;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(156, 170, 186, 0.34);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-number {
    font-size: 3.35rem;
  }

  .stat-number.is-text {
    font-size: 2.2rem;
  }

  .stat-value {
    height: 62px;
  }

  .stat-label-wrap {
    height: 58px;
  }

  .stat-label {
    font-size: 1.28rem;
  }

  .stat-description {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .solution-block:first-child .solution-media,
  .solution-media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .network-title-rule {
    margin: 18px 0 18px;
  }

  .network-photo-panel {
    min-height: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .network-photo-panel:hover {
    box-shadow: none;
    transform: none;
  }

  .network-photo-panel img {
    position: relative;
    height: 238px;
    border: 1px solid rgba(118, 184, 245, 0.24);
    border-radius: 14px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  }

  .network-photo-overlay {
    inset: 0 0 auto;
    height: 238px;
    border-radius: 14px;
  }

  .network-insight-cards,
  .network-location-chips {
    position: relative;
    inset: auto;
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .network-insight-cards {
    grid-template-columns: 1fr;
  }

  .network-insight-card,
  .network-insight-card.is-regional,
  .network-insight-card.is-agency {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    gap: 8px;
    padding: 12px;
  }

  .network-insight-card svg {
    width: 16px;
    height: 16px;
  }

  .network-insight-card h3 {
    font-size: 0.86rem;
  }

  .network-insight-card p {
    font-size: 0.68rem;
    line-height: 1.34;
  }

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

  .network-location-chip,
  .network-location-chip.is-singapore,
  .network-location-chip.is-malaysia,
  .network-location-chip.is-thailand,
  .network-location-chip.is-global {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    justify-content: center;
  }

  .network-service-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .network-service-strip article {
    padding: 13px;
  }

  .network-service-strip article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .media-panel img {
    min-height: 280px;
  }

  .map-panel,
  .contact-card,
  .form-panel {
    padding: 26px;
  }

  .footer-bottom {
    padding-bottom: 84px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 23px;
    height: 23px;
  }
}
