/* SonicHub — Main Stylesheet */
:root {
  --navy:        #050D1A;
  --navy-mid:    #0A1628;
  --navy-light:  #112240;
  --navy-glass:  rgba(10,22,40,0.72);
  --orange:      #F5C518;
  --orange-dim:  #C9A10F;
  --orange-pale: rgba(235,92,37,0.12);
  --yellow:      #EB5C25;
  --yellow-dim:  #C94D1B;
  --yellow-pale: rgba(245,197,24,0.12);
  --blue:        #1A6EFF;
  --blue-dim:    #1055CC;
  --glass-bg:    rgba(255,255,255,0.05);
  --glass-border:rgba(255,255,255,0.10);
  --glass-shine: rgba(255,255,255,0.15);
  --text-primary:#EEF2FF;
  --text-muted:  #8A9BB8;
  --text-dim:    #5B6E8A;
  --font-display:'Cormorant Garamond', serif;
  --font-body:   'DM Sans', sans-serif;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-glow: 0 0 60px rgba(245,197,24,0.2);
  --shadow-blue: 0 0 60px rgba(26,110,255,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--navy);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ===== LIQUID GLASS MIXIN ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  background: rgba(5,13,26,0.6);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(245,197,24,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(5,13,26,0.88);
  border-color: rgba(245,197,24,0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.5) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26,110,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(235,92,37,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(26,110,255,0.08) 0%, transparent 60%),
    linear-gradient(160deg, rgba(5,13,26,0.75) 0%, rgba(10,22,40,0.75) 50%, rgba(5,13,26,0.75) 100%),
    url('../images/banner.jpg') center/cover no-repeat;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 300px; height: 300px; background: rgba(235,92,37,0.08); top: 10%; left: 5%; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(26,110,255,0.10); top: 40%; right: 5%; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: rgba(235,92,37,0.06); bottom: 10%; left: 40%; animation-delay: -5s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--orange), #ff8c5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .blue-text {
  background: linear-gradient(135deg, #5BA4FF, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Malaysia 3PL landing — tighter hero headline */
.hero-title--landing {
  font-size: clamp(2.35rem, 6vw, 4.75rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: #fff;
  padding: 15px 34px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(245,197,24,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(245,197,24,0.55), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,197,24,0.4);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* ===== SECTION BASE ===== */
section { padding: 100px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== CLIENTS ===== */
#clients {
  background: var(--navy-mid);
  padding: 70px 20px;
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 44px;
}
.clients-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 6px;
}
.clients-track-wrap {
  position: relative;
  overflow: hidden;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-mid), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-mid), transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: clients-scroll 60s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-logo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  transition: var(--transition);
  overflow: hidden;
}
.client-logo:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,197,24,0.3);
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%) brightness(1.1);
  opacity: 0.9;
  transition: var(--transition);
}
.client-logo:hover img {
  filter: grayscale(0%) brightness(1.05);
  opacity: 1;
}

/* ===== SERVICES ===== */
#services {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.services-header { margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(235,92,37,0.2); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap { background: rgba(235,92,37,0.15); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(235,92,37,0.06);
  border: 1px solid rgba(235,92,37,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(235,92,37,0.12);
  border-color: rgba(235,92,37,0.4);
}
.service-card:hover .service-icon-wrap svg {
  stroke: #f5c518;
  filter: drop-shadow(0 0 6px rgba(235,92,37,0.5));
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card.featured {
  background: linear-gradient(135deg, rgba(235,92,37,0.08), rgba(26,110,255,0.08));
  border-color: rgba(235,92,37,0.2);
}

/* ===== INDUSTRIES ===== */
#industries {
  background: var(--navy);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.industry-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,197,24,0.18);
  background: rgba(255,255,255,0.05);
}
.industry-card:hover::before { opacity: 1; }
.industry-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
  flex-shrink: 0;
}
.industry-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.industry-card:hover .industry-icon-wrap {
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.4);
}
.industry-card:hover .industry-icon-wrap svg {
  filter: drop-shadow(0 0 6px rgba(245,197,24,0.5));
}
.industry-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.industry-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
/* ===== STORY SECTION ===== */
#story { background: var(--navy); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
  height: 500px;
}
.story-visual-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.warehouse-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}
.wh-rack {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.wh-shelf {
  flex: 1;
  max-width: 70px;
  background: rgba(235,92,37,0.06);
  border: 1px solid rgba(235,92,37,0.15);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 6px;
}
.wh-box {
  height: 22px;
  border-radius: 4px;
  animation: boxShimmer 3s ease-in-out infinite;
}
.wh-box.b1 { background: rgba(235,92,37,0.35); animation-delay: 0s; }
.wh-box.b2 { background: rgba(26,110,255,0.35); animation-delay: 0.5s; }
.wh-box.b3 { background: rgba(235,92,37,0.2); animation-delay: 1s; }
.wh-box.b4 { background: rgba(26,110,255,0.2); animation-delay: 1.5s; }
@keyframes boxShimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.wh-conveyor {
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, transparent, rgba(235,92,37,0.06), transparent);
  border: 1px solid rgba(235,92,37,0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.wh-conveyor-belt {
  position: absolute;
  top: 0; left: -50%; width: 150%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(235,92,37,0.05) 20px, rgba(235,92,37,0.05) 22px);
  animation: beltMove 2s linear infinite;
}
@keyframes beltMove { 0% { transform: translateX(0); } 100% { transform: translateX(22px); } }
.wh-package {
  position: absolute;
  top: 8px;
  width: 24px; height: 24px;
  background: rgba(235,92,37,0.5);
  border-radius: 4px;
  animation: packageMove 4s linear infinite;
}
@keyframes packageMove { 0% { left: -10%; } 100% { left: 110%; } }

/* floating glass card overlay */
.story-float-card {
  position: absolute;
  bottom: 24px; right: -20px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(5,13,26,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(235,92,37,0.2);
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.float-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.float-value { font-family: var(--font-display); font-size: 1.8rem; color: var(--yellow); font-weight: 600; }
.float-sub { font-size: 0.8rem; color: var(--text-muted); }

.story-text .section-sub { max-width: 100%; margin-bottom: 32px; }
.story-points { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.story-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.story-point:hover { background: rgba(235,92,37,0.04); border-color: rgba(235,92,37,0.15); }
.story-point-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(235,92,37,0.06);
  border: 1px solid rgba(235,92,37,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}
.story-point-icon svg {
  width: 18px; height: 18px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-point:hover .story-point-icon {
  background: rgba(235,92,37,0.12);
  border-color: rgba(235,92,37,0.4);
}
.story-point-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.story-point-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ===== BRAND VALUES ===== */
#values {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
#values::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,92,37,0.04), transparent 70%);
  pointer-events: none;
}
.values-header { text-align: center; margin-bottom: 64px; }
.values-header .section-label { justify-content: center; }
.values-header .section-label::before { display: none; }
.values-header .section-sub { max-width: 600px; margin: 0 auto; text-align: center; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(235,92,37,0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-card:hover::after { opacity: 1; }
.value-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(235,92,37,0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(235,92,37,0.06);
  border: 1px solid rgba(235,92,37,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.value-icon svg {
  width: 20px; height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card:hover .value-icon {
  background: rgba(235,92,37,0.12);
  border-color: rgba(235,92,37,0.4);
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PROCESS ===== */
#process { background: var(--navy); }
.process-header { margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235,92,37,0.3), rgba(26,110,255,0.3), transparent);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(235,92,37,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-circle svg {
  width: 20px; height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.process-step:hover .step-circle svg {
  filter: drop-shadow(0 0 5px rgba(235,92,37,0.5));
}
.process-step:hover .step-circle {
  background: rgba(235,92,37,0.12);
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(235,92,37,0.2);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
#faq {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-side .section-sub { margin-bottom: 32px; }
.faq-contact-block {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.18);
}
.faq-contact-block p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.faq-contact-block a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(245,197,24,0.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ===== CONSULTATION FORM ===== */
#consult {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
#consult::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(235,92,37,0.05), transparent 70%);
  pointer-events: none;
}
#consult::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,110,255,0.06), transparent 70%);
  pointer-events: none;
}
.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.consult-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.consult-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.consult-perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--text-muted);
}
.perk-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 12px; flex-shrink: 0;
}

.consult-form {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.consult-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow));
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.form-subtitle { font-size: 0.84rem; color: var(--text-dim); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(245,197,24,0.45);
  background: rgba(245,197,24,0.03);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-mid); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,197,24,0.5);
}
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-dim); margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 20px 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.87rem; color: var(--text-dim); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(245,197,24,0.1); color: var(--orange); border-color: rgba(245,197,24,0.3); }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-dim); text-decoration: none; font-size: 0.87rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.animate-ready { opacity: 0; transform: translateY(30px); }
.fade-up.visible { opacity: 1 !important; transform: translateY(0) !important; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 20px; right: 20px;
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(235,92,37,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-muted); text-decoration: none; font-size: 1rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color var(--transition); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .nav-cta {
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  color: #fff !important;
  font-weight: 600;
  border: none;
  margin-top: 4px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: rgba(10,22,40,0.95);
  border: 1px solid rgba(235,92,37,0.3);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  z-index: 9999;
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
/* ── 1024px ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ── 900px — nav collapses ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  nav {
    top: 10px;
    width: calc(100% - 24px);
    padding: 12px 18px;
  }
  .mobile-nav { top: 72px; left: 12px; right: 12px; }

  section { padding: 80px 16px; }

  /* hero */
  .hero-content { padding: 0 4px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .hero-title--landing { font-size: clamp(2rem, 7.5vw, 3.2rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; margin-top: 40px; padding-top: 32px; }
  .stat-divider { display: none; }
  .stat-item { text-align: center; }

  /* layouts */
  .story-inner,
  .faq-inner,
  .consult-inner { grid-template-columns: 1fr; gap: 36px; }
  .story-visual { height: 280px; }
  .story-float-card { right: 0; bottom: -16px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* form */
  .consult-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* clients */
  .client-logo { width: 110px; height: 110px; }

  /* footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  section { padding: 64px 16px; }

  /* hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-title--landing { font-size: clamp(1.85rem, 7vw, 2.65rem); }
  .hero-badge { font-size: 0.68rem; padding: 7px 14px; }
  .stat-num { font-size: 1.8rem; }

  /* grids → single col */
  .services-grid,
  .industries-grid,
  .values-grid,
  .process-steps { grid-template-columns: 1fr; }

  /* clients */
  .client-logo { width: 100px; height: 100px; }

  /* footer — single column, copyright never clips */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 20px 32px; padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-bottom span,
  .footer-bottom a { font-size: 0.75rem; line-height: 1.6; }

  /* toast */
  .toast { white-space: normal; text-align: center; max-width: 88vw; left: 50%; width: 88vw; }

  /* faq */
  .faq-contact-block { padding: 20px; }

  /* ensure no horizontal overflow on very small screens */
  .hero-stats { gap: 16px 12px; }
  .consult-form { padding: 24px 16px; }
  .consult-text h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ── 375px — small phones ── */
@media (max-width: 375px) {
  .hero-badge { font-size: 0.62rem; padding: 6px 12px; letter-spacing: 0.08em; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero-title--landing { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.92rem; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .footer-bottom span { display: block; }
}

/* ===== LANDING: 3PL Malaysia ===== */
#lp-proof {
  background: var(--navy-mid);
  padding: 72px 20px;
}
.lp-proof-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lp-proof-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}
.lp-proof-lead strong { color: var(--text-primary); font-weight: 500; }
.lp-proof-sub {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.lp-proof-sub a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.lp-proof-sub a:hover { text-decoration: underline; }

#lp-why {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

#lp-capabilities {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

#lp-integrations {
  background: var(--navy);
  padding: 88px 20px 100px;
}
.lp-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 12px 14px;
  max-width: 920px;
  margin: 0 auto;
}
.lp-stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.lp-stack-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,197,24,0.22);
}
.lp-stack-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.lp-stack-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.lp-stack-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}