:root {
  --color-primary-500: #2f6bff;
  --color-primary-600: #2554cc;
  --color-primary-hover: #1e47b8;
  --color-secondary-500: #f5c16c;
  --color-secondary-600: #e2a94f;
  --color-accent-green: #2bb673;
  --color-accent-orange: #f4a261;
  --color-accent-purple: #7c6cf2;
  --color-accent-teal: #38b2ac;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1ebe5b;
  --color-whatsapp-dark: #128c7e;
  --color-neutral-900: #1f2933;
  --color-neutral-800: #2d3748;
  --color-neutral-700: #4a5568;
  --color-neutral-600: #718096;
  --color-neutral-500: #a0aec0;
  --color-neutral-400: #cbd5e0;
  --color-neutral-300: #e2e8f0;
  --color-neutral-200: #edf2f7;
  --color-neutral-100: #f7fafc;
  --color-neutral-0: #ffffff;
  --bg-hero: linear-gradient(180deg, #f3efe9 0%, #ffffff 100%);
  --bg-section-soft: #f8fafc;
  --bg-section-muted: #f2f4f7;
  --bg-footer: #2c2f3a;
  --font-primary: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-device: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --container-max: 1200px;
  --container-padding: 16px;
  --bottom-sticky-height: 92px;
  --transition-default: all 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: calc(var(--bottom-sticky-height) + var(--space-lg));
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-neutral-800);
  background:
    radial-gradient(
      circle at top left,
      rgba(244, 162, 97, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at top right,
      rgba(47, 107, 255, 0.09),
      transparent 22%
    ),
    var(--color-neutral-0);
}

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

section[id] {
  scroll-margin-top: 96px;
}

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

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

ul {
  padding-left: 1.1rem;
}

.container {
  width: min(var(--container-max), calc(100% - (var(--container-padding) * 2)));
  margin: 0 auto;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-tighter {
  padding: 0 0 var(--space-3xl);
}

.trust-strip {
  margin-top: var(--space-xl);
}

.section-soft {
  background: var(--bg-section-soft);
}

.section-muted {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.65),
      rgba(242, 244, 247, 0.95)
    ),
    var(--bg-section-muted);
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -64px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--color-primary-500);
  color: var(--color-neutral-0);
  transition: var(--transition-default);
}

.skip-link:focus {
  top: var(--space-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-bold);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--color-primary-500),
    var(--color-accent-purple)
  );
  color: var(--color-neutral-0);
  box-shadow: var(--shadow-card);
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  font-size: 14px;
  color: var(--color-neutral-700);
}

.site-nav a {
  transition: var(--transition-default);
}

.site-nav a:hover {
  color: var(--color-primary-500);
}

.header-cta {
  flex-shrink: 0;
}

.hero {
  background: var(--bg-hero);
  overflow: clip;
}

.hero-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-primary-600);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    var(--color-secondary-500),
    var(--color-accent-orange)
  );
}

h1,
h2,
h3 {
  color: var(--color-neutral-900);
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: var(--space-lg);
  font-size: 36px;
  line-height: 1.17;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: var(--space-md);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-lead,
.section-heading p,
.card p,
.feature-card p,
.cta-copy p,
.footer-note {
  color: var(--color-neutral-700);
}

.hero-lead {
  margin-bottom: var(--space-xl);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  transition: var(--transition-default);
}

.btn-primary {
  background: var(--color-primary-500);
  color: var(--color-neutral-0);
}

.btn-secondary {
  border: 1px solid var(--color-primary-500);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-500);
}

.btn-whatsapp {
  gap: 10px;
  border: 1px solid var(--color-whatsapp);
  background: var(--color-whatsapp);
  color: var(--color-neutral-0);
}

.btn-whatsapp::before {
  content: "";
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.52 3.48A11.8 11.8 0 0 0 12.05 0C5.55 0 .25 5.29.25 11.8c0 2.08.54 4.1 1.57 5.88L0 24l6.5-1.7a11.72 11.72 0 0 0 5.55 1.42h.01c6.5 0 11.79-5.29 11.79-11.8c0-3.15-1.23-6.1-3.33-8.44ZM12.06 21.7h-.01a9.8 9.8 0 0 1-5-1.37l-.36-.21-3.86 1.01 1.03-3.75-.23-.38a9.76 9.76 0 0 1-1.5-5.2c0-5.4 4.4-9.8 9.82-9.8c2.62 0 5.08 1.02 6.93 2.88a9.72 9.72 0 0 1 2.87 6.92c0 5.41-4.4 9.8-9.8 9.8Zm5.38-7.35c-.29-.14-1.7-.84-1.97-.94c-.26-.1-.45-.14-.64.15c-.19.28-.73.93-.9 1.13c-.16.19-.33.21-.62.07c-.29-.15-1.22-.45-2.33-1.43c-.86-.77-1.44-1.72-1.61-2.01c-.17-.29-.02-.44.13-.58c.13-.13.29-.33.43-.49c.14-.16.19-.28.29-.47c.09-.19.05-.35-.02-.49c-.08-.14-.64-1.55-.88-2.12c-.23-.55-.47-.48-.64-.48h-.55c-.19 0-.5.07-.76.35c-.26.29-1 1-1 2.39c0 1.4 1.02 2.75 1.16 2.94c.14.19 2.02 3.08 4.88 4.32c.68.29 1.21.47 1.62.59c.68.21 1.3.18 1.79.11c.55-.08 1.7-.69 1.94-1.36c.24-.67.24-1.24.17-1.36c-.07-.11-.26-.18-.55-.32Z'/%3E%3C/svg%3E");
}

.hero-meta {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-neutral-700);
  font-size: 14px;
}

.hero-meta li::before,
.check-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-accent-green);
  box-shadow: 0 0 0 6px rgba(43, 182, 115, 0.14);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(47, 107, 255, 0.08),
    rgba(124, 108, 242, 0.1)
  );
  transform: rotate(14deg);
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-device);
}

.hero-media-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.trust-grid {
  display: grid;
  gap: var(--space-md);
}

.trust-item,
.card,
.feature-card,
.cta-card,
.footer-badge {
  background: var(--color-neutral-0);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
}

.trust-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--color-neutral-900);
  font-weight: var(--font-weight-semibold);
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}

.feature-stack {
  display: grid;
  gap: var(--space-2xl);
}

.feature-block {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.feature-media {
  position: relative;
  display: grid;
  place-items: center;
}

.feature-media img {
  width: 100%;
  height: auto;
}

.feature-circle {
  max-width: 360px;
  margin: 0 auto;
}

.feature-circle img {
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-device);
}

.feature-illustration {
  width: min(100%, 360px);
  margin: 0 auto;
}

.feature-illustration img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-device);
}

.feature-device img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-device);
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: var(--space-lg);
}

.payment-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-card);
}

.payment-logo-card img {
  width: auto;
  height: auto;
  max-width: 118px;
  max-height: 38px;
  object-fit: contain;
}

.payment-logo-card--maybank {
  background: linear-gradient(180deg, #fff8db 0%, #fff1b8 100%);
}

.payment-logo-card--touchngo {
  background: linear-gradient(180deg, #0f5ff1 0%, #0a49b6 100%);
  padding: 4px 4px;
  min-height: 72px;
}

.payment-logo-card--grabpay {
  background: linear-gradient(180deg, #10b85b 0%, #08994a 100%);
}

.payment-logo-card--boost {
  background: linear-gradient(135deg, #8c1f63 0%, #db2777 100%);
}

.payment-logo-card--touchngo img,
.payment-logo-card--grabpay img,
.payment-logo-card--boost img {
  max-height: 34px;
}

.payment-logo-card--touchngo img {
  max-height: 42px;
}

.payment-logo-card--boost img {
  max-width: 132px;
}

.payment-logo-card--maybank img {
  border-radius: 10px;
  max-height: 42px;
}

.payment-logo-card--grabpay img {
  border-radius: 10px;
}

.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card {
  height: 100%;
  border-radius: 16px;
  padding: var(--space-lg);
}

.card-job {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-card {
  margin-top: auto;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.icon-shell {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-section-muted);
}

.icon-shell img {
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.icon-shell-job {
  background: rgba(56, 178, 172, 0.1);
}

.icon-shell-proof {
  background: rgba(47, 107, 255, 0.1);
}

.device-showcase {
  display: grid;
  gap: var(--space-lg);
  align-items: end;
}

.device-card {
  margin: 0;
  padding: 12px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: var(--shadow-device);
}

.device-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.device-card-phone {
  max-width: 280px;
  margin-inline: auto;
}

.stat-card .stat-value {
  margin-bottom: 8px;
  color: var(--color-primary-500);
  font-size: 28px;
  line-height: 1.15;
  font-weight: var(--font-weight-bold);
}

.reviews-layout {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.review-panel {
  height: auto;
  align-self: start;
  padding: 14px;
}

.review-panel img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  display: grid;
  gap: var(--space-xl);
  border-radius: 28px;
  padding: var(--space-xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 193, 108, 0.25),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(47, 107, 255, 0.12),
      transparent 24%
    ),
    var(--color-neutral-0);
}

.bottom-sticky-bar {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 24px), 560px);
  padding: 12px 14px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.bottom-sticky-bar__timer {
  min-width: 0;
}

.bottom-sticky-bar__countdown {
  display: block;
  color: var(--color-neutral-900);
  font-size: 26px;
  line-height: 1;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.04em;
}

.bottom-sticky-bar__label {
  display: block;
  margin-top: 6px;
  color: var(--color-neutral-600);
  font-size: 12px;
  line-height: 1.3;
}

.bottom-sticky-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--color-whatsapp);
  color: var(--color-neutral-0);
  font-size: 14px;
  line-height: 1;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  transition: var(--transition-default);
}

.bottom-sticky-bar__button::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.52 3.48A11.8 11.8 0 0 0 12.05 0C5.55 0 .25 5.29.25 11.8c0 2.08.54 4.1 1.57 5.88L0 24l6.5-1.7a11.72 11.72 0 0 0 5.55 1.42h.01c6.5 0 11.79-5.29 11.79-11.8c0-3.15-1.23-6.1-3.33-8.44ZM12.06 21.7h-.01a9.8 9.8 0 0 1-5-1.37l-.36-.21-3.86 1.01 1.03-3.75-.23-.38a9.76 9.76 0 0 1-1.5-5.2c0-5.4 4.4-9.8 9.82-9.8c2.62 0 5.08 1.02 6.93 2.88a9.72 9.72 0 0 1 2.87 6.92c0 5.41-4.4 9.8-9.8 9.8Zm5.38-7.35c-.29-.14-1.7-.84-1.97-.94c-.26-.1-.45-.14-.64.15c-.19.28-.73.93-.9 1.13c-.16.19-.33.21-.62.07c-.29-.15-1.22-.45-2.33-1.43c-.86-.77-1.44-1.72-1.61-2.01c-.17-.29-.02-.44.13-.58c.13-.13.29-.33.43-.49c.14-.16.19-.28.29-.47c.09-.19.05-.35-.02-.49c-.08-.14-.64-1.55-.88-2.12c-.23-.55-.47-.48-.64-.48h-.55c-.19 0-.5.07-.76.35c-.26.29-1 1-1 2.39c0 1.4 1.02 2.75 1.16 2.94c.14.19 2.02 3.08 4.88 4.32c.68.29 1.21.47 1.62.59c.68.21 1.3.18 1.79.11c.55-.08 1.7-.69 1.94-1.36c.24-.67.24-1.24.17-1.36c-.07-.11-.26-.18-.55-.32Z'/%3E%3C/svg%3E");
}

.site-footer {
  padding: var(--space-3xl) 0;
  background: var(--bg-footer);
  color: var(--color-neutral-300);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
}

.brand-footer {
  margin-bottom: var(--space-md);
  color: var(--color-neutral-0);
}

.footer-title {
  margin-bottom: var(--space-md);
  color: var(--color-neutral-0);
  font-size: 16px;
  line-height: 1.4;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-list a {
  color: var(--color-neutral-500);
  transition: var(--transition-default);
}

.footer-note {
  max-width: 22rem;
}

.footer-badge {
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.35);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--color-primary-hover);
  }

  .btn-secondary:hover {
    background: rgba(47, 107, 255, 0.08);
  }

  .btn-whatsapp:hover {
    border-color: var(--color-whatsapp-hover);
    background: var(--color-whatsapp-hover);
    color: var(--color-neutral-0);
  }

  .card:hover,
  .trust-item:hover,
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }

  .footer-list a:hover {
    color: var(--color-neutral-0);
  }

  .bottom-sticky-bar__button:hover {
    background: var(--color-whatsapp-hover);
  }
}

@media (min-width: 640px) {
  :root {
    --container-padding: 20px;
  }

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

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

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

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

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

@media (max-width: 479px) {
  :root {
    --bottom-sticky-height: 104px;
  }

  .bottom-sticky-bar {
    width: min(calc(100% - 16px), 560px);
    gap: 10px;
    padding: 12px;
  }

  .bottom-sticky-bar__countdown {
    font-size: 22px;
  }

  .bottom-sticky-bar__button {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  :root {
    --container-padding: 24px;
    --bottom-sticky-height: 88px;
  }

  .section {
    padding: 80px 0;
  }

  .section-tighter {
    padding-bottom: 80px;
  }

  .trust-strip {
    margin-top: var(--space-2xl);
  }

  h1 {
    font-size: 44px;
    line-height: 1.15;
  }

  h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-grid,
  .feature-block,
  .reviews-layout,
  .cta-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-block-reverse .feature-media {
    order: 2;
  }

  .feature-block-reverse .feature-card {
    order: 1;
  }

  .device-showcase {
    grid-template-columns: 0.85fr 1.4fr 0.85fr;
  }

  .cta-card {
    align-items: center;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-4xl) 0;
  }

  .section-tighter {
    padding-bottom: var(--space-4xl);
  }

  .trust-strip {
    margin-top: var(--space-3xl);
  }

  .site-nav {
    display: inline-flex;
  }

  h1 {
    font-size: 48px;
    line-height: 1.17;
  }

  h2 {
    font-size: 32px;
    line-height: 1.25;
  }

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

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

  .card-grid-jobs,
  .card-grid-proof,
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
