:root {
  --bg: #ffffff;
  --surface: #f7f7f3;
  --surface-soft: #fbfbf8;
  --ink: #151515;
  --muted: #5c5c57;
  --line: #dfded8;
  --accent: #f2c230;
  --accent-dark: #8a6811;
  --dark: #111111;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  padding-bottom: 90px;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 76px;
  max-width: 100%;
  padding: 12px clamp(18px, 5vw, 68px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.brand-mark {
  align-items: center;
  background: var(--dark);
  border-bottom: 4px solid var(--accent);
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-logo {
  flex: 0 0 auto;
  display: block;
  height: auto;
  max-height: 64px;
  max-width: 64px;
  object-fit: contain;
  width: auto;
}

.brand strong,
.brand small {
  display: block;
  overflow-wrap: anywhere;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.25;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  font-size: 14px;
  max-width: 100%;
  font-weight: 700;
  min-width: 0;
}

.nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  padding: 6px 9px;
}

.nav a:hover {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--ink);
}

.mobile-header-actions,
.mobile-nav {
  display: none;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 58%, #fbfbf8 58%, #fbfbf8 100%);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  min-height: min(760px, calc(100vh - 76px));
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 84px);
  max-width: 100%;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  min-width: 0;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 860px;
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.16;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  max-width: 780px;
}

.license-line,
.service-area {
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 8px;
}

.license-line {
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.service-area {
  color: var(--muted);
}

.notice {
  background: #fffdf3;
  border-left: 4px solid var(--accent);
  color: #4a3a08;
  margin: 22px 0 0;
  max-width: 720px;
  padding: 13px 16px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

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

.button {
  align-items: center;
  border: 1px solid var(--dark);
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button.primary {
  background: var(--dark);
  color: #fff;
}

.button[href^="https://wa.me/"] {
  background: #168f4a;
  border-color: #168f4a;
  color: #fff;
}

.button[href^="https://wa.me/"]:hover {
  background: #11763d;
  border-color: #11763d;
}

.button.secondary {
  background: #fff;
  color: var(--dark);
}

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

.button:hover,
.text-link:hover {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero-card,
.verification-card,
.reviews-card,
.list-card,
.address-box,
.map-placeholder,
.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-card {
  align-self: center;
  background: linear-gradient(180deg, #fff, #fbfbf8);
  border-top: 4px solid var(--accent);
  max-width: 420px;
  min-width: 0;
  width: 100%;
}

.hero-photo-card {
  overflow: hidden;
  padding: 12px;
}

.hero-office-photo {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-photo-caption {
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 4px 2px;
}

.verification-card {
  align-self: end;
  border-top: 4px solid var(--accent);
  max-width: 420px;
}

.hero-logo {
  display: block;
  height: auto;
  margin: 0 0 18px;
  max-height: 96px;
  max-width: 96px;
  object-fit: contain;
  padding: 0;
  width: auto;
}

.hero-card strong,
.hero-card span,
.verification-card strong,
.verification-card span,
.card-label {
  display: block;
}

.verification-card strong {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-card strong {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-card span {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 9px 0;
}

.verification-card span {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 0;
}

.card-label {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.trust-strip {
  background: #151515;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(18px, 6vw, 84px);
}

.trust-strip div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 18px;
}

.trust-strip div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip strong {
  color: #fff;
  display: block;
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p,
.wide-text,
.list-card li,
.reviews-card p,
.site-footer p,
.map-placeholder p,
.address-box p,
.profile-card p,
details p {
  color: var(--muted);
}

.two-column {
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  max-width: 100%;
}

.verification-table {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
}

.verification-table div {
  display: grid;
  gap: 14px;
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 16px 18px;
}

.verification-table div + div {
  border-top: 1px solid var(--line);
}

.verification-table span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.verification-table strong {
  color: var(--ink);
}

.band {
  background: #191919;
  color: #fff;
}

.band .eyebrow {
  color: var(--accent);
}

.band .wide-text {
  color: #e8e8e3;
  font-size: 20px;
  max-width: 920px;
}

.list-card ul {
  margin: 0;
  padding-left: 20px;
}

.list-card li + li {
  margin-top: 9px;
}

.muted-card {
  background: var(--surface);
  box-shadow: none;
}

.reviews-card {
  border-left: 4px solid var(--accent);
  max-width: 760px;
}

.profiles-section {
  background: linear-gradient(180deg, #fffdf3 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.profile-card {
  border-top: 4px solid var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.profile-card h3 {
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
}

.profile-card p {
  margin-bottom: 0;
}

.rating {
  color: var(--dark);
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.text-link {
  border-bottom: 2px solid var(--accent);
  color: var(--dark);
  font-weight: 800;
}

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

.action-row {
  margin-top: 14px;
}

.map-placeholder {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  text-align: center;
}

.office-photo {
  border-radius: calc(var(--radius) - 2px);
  display: block;
  height: 220px;
  margin-bottom: 16px;
  object-fit: cover;
  width: 100%;
}

.map-placeholder iframe {
  border-radius: calc(var(--radius) - 2px);
  display: block;
  height: 300px;
  min-height: 280px;
  width: 100%;
}

.map-placeholder span {
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
}

.hours {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.hours div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 160px 1fr;
  padding: 10px 0;
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  color: var(--muted);
  margin: 0;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  background: #151515;
  color: #fff;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  padding: 34px clamp(18px, 6vw, 84px) 42px;
}

.site-footer p {
  color: #d8d8d2;
  margin: 8px 0 0;
}

.site-footer a {
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  font-weight: 800;
  margin-right: 14px;
}

.floating-whatsapp {
  align-items: center;
  background: #168f4a;
  border: 0;
  bottom: 24px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(22, 143, 74, 0.28);
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  max-width: calc(100vw - 32px);
  min-height: 0;
  padding: 15px 22px;
  position: fixed;
  right: 16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  width: auto;
  z-index: 30;
}

.floating-whatsapp:hover {
  box-shadow: 0 12px 34px rgba(22, 143, 74, 0.42);
  transform: translateY(-1px);
}

.home-page {
  --accent: #f4c430;
  --accent-dark: #7a5a00;
  --surface: #f8f5e8;
  --surface-soft: #fffaf0;
  --line: #e7dfc7;
  --shadow: 0 18px 46px rgba(16, 16, 16, 0.11);
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.home-page .brand-logo {
  border-radius: 0;
  max-height: 68px;
  max-width: 68px;
}

.top-social-icons a {
  align-items: center;
  background: #f7f4e8;
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.top-social-icons svg {
  fill: currentColor;
  height: 15px;
  width: 15px;
}

.home-page .brand strong {
  color: #111;
  font-size: 15px;
}

.home-page .brand {
  order: 1;
}

.home-page .nav {
  order: 2;
}

.home-page .top-social-icons {
  display: flex;
  gap: 4px;
  order: 3;
}

.home-page .nav a {
  color: #3b3b38;
}

.home-page .nav a[href="/pinjaman-wang-berlesen-penang/"],
.home-page .nav a[href="/"] {
  background: #111;
  border-color: #111;
  color: #fff;
}

.home-page .hero {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 244, 196, 0.56) 100%);
  border-bottom: 1px solid #eadfbf;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  min-height: auto;
  padding-bottom: clamp(36px, 5vw, 56px);
  padding-top: clamp(42px, 5vw, 66px);
  position: relative;
}

.home-page .hero::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0) 68%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.home-page .hero::after {
  content: none;
}

.home-page .hero-inner,
.home-page .hero-office-visual {
  position: relative;
  z-index: 2;
}

.home-page .hero-office-visual {
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(244, 196, 48, 0.04)),
    url("assets/images/heap-hoe-credit-company-office-seberang-jaya-penang.jpg") center 18% / cover;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  min-height: 390px;
  opacity: 1;
}

.home-page .hero-kpkt-badge {
  background: #111;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 16px;
  padding: 8px 13px;
  text-transform: uppercase;
}

.home-page .hero h1 span {
  color: #c49102;
  display: inline-block;
}

.home-page .hero-text {
  color: #333;
  max-width: 640px;
}

.home-page .service-area {
  color: #55524a;
  max-width: 680px;
}

.home-page .hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
  max-width: 720px;
}

.home-page .hero-trust-points span {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #eadfbf;
  border-radius: 999px;
  color: #1d1d1b;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  padding: 7px 10px;
}

.home-page .hero-trust-points svg {
  color: var(--accent);
  fill: currentColor;
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.home-page .hero-license-card {
  background: rgba(255, 252, 241, 0.96);
  border: 1px solid #e2c86c;
  border-left: 6px solid var(--accent);
  border-top: 1px solid #e2c86c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.11);
  color: #111;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  margin-top: 16px;
  max-width: 520px;
  padding: 12px 16px;
  position: relative;
}

.home-page .hero-license-card::before {
  align-items: center;
  background: #111;
  border-radius: 999px;
  color: var(--accent);
  content: "";
  display: inline-flex;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  margin: 2px 0 0;
  position: static;
  width: 30px;
}

.home-page .hero-license-card::after {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 30px;
  position: absolute;
  top: 24px;
  width: 10px;
}

.home-page .hero-license-card .card-label {
  color: #7a5a00;
  font-size: 12px;
  grid-column: 2;
  margin-bottom: 2px;
}

.home-page .hero-license-card strong {
  color: #111;
  font-size: 20px;
  grid-column: 2;
  letter-spacing: 0;
  margin-bottom: 0;
}

.home-page .hero-license-card span {
  border-top-color: #eadfbf;
  color: #4d4737;
}

.hero-cta-section {
  background: #111;
  padding: 18px clamp(18px, 6vw, 84px);
}

.hero-cta-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1080px;
}

.hero-whatsapp-card,
.hero-call-card,
.hero-directions-link {
  align-items: center;
  border-radius: 14px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
}

.hero-whatsapp-card {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #111;
  flex-direction: column;
  line-height: 1.18;
  padding: 10px 18px;
}

.hero-whatsapp-card small {
  color: #423000;
  font-size: 12px;
  font-weight: 900;
}

.hero-call-card {
  background: #111;
  border: 1px solid var(--accent);
  color: #fff;
  flex-direction: column;
  line-height: 1.18;
  padding: 10px 18px;
}

.hero-call-card small {
  color: #f4ead0;
  font-size: 12px;
  font-weight: 800;
}

.hero-directions-link {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  min-height: 42px;
  padding: 8px 14px;
}

.before-apply-section,
.official-notice-section {
  padding: clamp(28px, 5vw, 48px) clamp(18px, 6vw, 84px);
}

.before-apply-section {
  background: #fff;
  color: #111;
}

.before-apply-section > div,
.official-notice-section > div {
  max-width: 980px;
}

.before-apply-section .eyebrow {
  color: var(--accent);
}

.before-apply-section h2 {
  color: #111;
  font-size: clamp(24px, 3vw, 34px);
}

.before-apply-section p:last-child {
  color: #3f4350;
  font-size: 18px;
  margin-bottom: 0;
}

.before-apply-section > div {
  background: linear-gradient(110deg, #fff 0%, #fff7df 100%);
  border: 1px solid #f0df9d;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  padding: 26px 30px;
}

.official-notice-section {
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.official-notice-section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.official-notice-section p {
  color: #4d4a42;
  max-width: 920px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icons a {
  align-items: center;
  background: #111;
  border: 1px solid #111;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  text-transform: uppercase;
  width: 34px;
}

.home-page .floating-whatsapp {
  animation: whatsapp-breathe 3.4s ease-in-out infinite;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 0 0 10px rgba(36, 210, 90, 0.18), 0 14px 34px rgba(22, 143, 74, 0.42);
  height: 56px;
  padding: 0;
  right: 18px;
  width: 56px;
}

.home-page .floating-whatsapp svg {
  fill: #fff;
  height: 34px;
  width: 34px;
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    box-shadow: 0 12px 32px rgba(22, 143, 74, 0.28);
  }

  50% {
    box-shadow: 0 14px 40px rgba(22, 143, 74, 0.46);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    position: static;
  }

  .brand,
  .nav {
    justify-content: flex-start;
    row-gap: 8px;
    width: 100%;
  }

  .hero,
  .profiles-grid,
  .two-column,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    background: #fff;
    min-height: auto;
    padding-top: 30px;
  }

  .hero-card,
  .verification-card {
    align-self: stretch;
    max-width: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 18px;
  }

  .home-page .site-header {
    align-items: center;
    flex-direction: row;
  }

  .home-page .nav {
    display: none;
  }

  .home-page .mobile-header-actions {
    align-items: center;
    display: flex;
    gap: 6px;
    margin-left: auto;
    order: 3;
  }

  .home-page .top-social-icons {
    display: flex;
    gap: 3px;
    margin-left: auto;
    order: 2;
  }

  .home-page .top-social-icons a {
    background: #f7f4e8;
    height: 24px;
    width: 24px;
  }

  .home-page .top-social-icons svg {
    height: 13px;
    width: 13px;
  }

  .home-page .mobile-bm-link {
    align-items: center;
    background: #fff8dc;
    border: 1px solid #ead27a;
    border-radius: 999px;
    color: #111;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    min-width: 42px;
    padding: 0 10px;
  }

  .home-page .mobile-nav {
    display: block;
    position: relative;
  }

  .home-page .mobile-nav summary {
    background: var(--accent);
    border-radius: 9px;
    color: #111;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    list-style: none;
    padding: 8px 13px;
  }

  .home-page .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .home-page .mobile-nav div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 2px;
    min-width: 180px;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 40;
  }

  .home-page .mobile-nav a {
    border-radius: 8px;
    color: #111;
    font-weight: 800;
    padding: 8px 10px;
  }

  .home-page .hero {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 68%, rgba(255, 244, 196, 0.34) 100%);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-page .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(244, 196, 48, 0.03)),
      url("assets/images/heap-hoe-credit-company-office-seberang-jaya-penang.jpg") center 16% / cover;
    bottom: auto;
    content: "";
    filter: none;
    height: 260px;
    opacity: 0.68;
    position: absolute;
    right: -92px;
    top: 70px;
    width: min(58vw, 230px);
    z-index: 0;
  }

  .home-page .hero::before {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 62%, rgba(255, 255, 255, 0.78) 78%, rgba(255, 255, 255, 0.08) 100%);
  }

  .home-page .hero-office-visual {
    display: none;
  }

  .home-page .hero-license-card {
    max-width: 520px;
  }

  .home-page .hero-cta-inner {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .home-page .hero-whatsapp-card {
    grid-column: auto;
  }

  .home-page .hero-directions-link {
    grid-column: 1 / -1;
    min-height: 44px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
    padding-bottom: 92px;
  }

  .site-header {
    gap: 8px;
    padding: 9px 12px;
  }

  .brand-logo {
    max-height: 50px;
    max-width: 50px;
  }

  .brand strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .brand small {
    font-size: 11px;
  }

  .nav {
    gap: 4px;
    font-size: 11px;
  }

  .nav a {
    padding: 4px 6px;
  }

  .hero {
    gap: 14px;
    padding: 22px 12px 26px;
  }

  .hero-card {
    padding: 12px;
  }

  .hero-office-photo {
    max-height: 220px;
  }

  .hero-photo-caption {
    font-size: 13px;
    margin-top: 9px;
  }

  h1 {
    font-size: 29px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  h2 {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 8px;
  }

  h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .license-line,
  .service-area {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .notice {
    font-size: 13px;
    margin-top: 12px;
    padding: 8px 10px;
  }

  .hero-actions {
    gap: 7px;
    margin-top: 14px;
  }

  .button,
  .hero-actions,
  .action-row {
    width: 100%;
  }

  .button {
    font-size: 13px;
    min-height: 38px;
    padding: 8px 12px;
  }

  .section {
    padding: 26px 12px;
  }

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

  .two-column {
    gap: 10px;
  }

  .hero-card,
  .verification-card,
  .reviews-card,
  .list-card,
  .address-box,
  .map-placeholder,
  .profile-card {
    border-radius: 7px;
    padding: 12px;
  }

  .verification-card strong {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hero-logo {
    height: auto;
    margin-bottom: 12px;
    max-height: 72px;
    max-width: 72px;
    padding: 0;
    width: auto;
  }

  .trust-strip {
    gap: 0;
    grid-template-columns: 1fr 1fr;
    padding: 0 12px;
  }

  .trust-strip div {
    padding: 10px 8px;
  }

  .trust-strip strong {
    font-size: 12px;
  }

  .verification-table div {
    gap: 3px;
    grid-template-columns: 1fr;
    padding: 11px 12px;
  }

  .verification-card span {
    padding: 5px 0;
  }

  .band .wide-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .rating {
    font-size: 30px;
  }

  .action-row {
    gap: 7px;
    margin-top: 8px;
  }

  .map-placeholder {
    min-height: auto;
  }

  .office-photo {
    height: 132px;
    margin-bottom: 8px;
  }

  .map-placeholder iframe {
    height: 190px;
    min-height: 190px;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .floating-whatsapp {
    bottom: 24px;
    font-size: 15px;
    left: auto;
    padding: 14px 20px;
    right: 16px;
    white-space: nowrap;
  }

  .floating-whatsapp:hover {
    transform: translateY(-1px);
  }

  .home-page {
    padding-bottom: 96px;
  }

  .home-page .site-header {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    gap: 7px;
    margin: 6px;
    min-height: 58px;
    padding: 6px 8px;
    top: 6px;
  }

  .home-page .brand {
    flex: 1 1 auto;
    gap: 8px;
  }

  .home-page .brand-logo {
    border-radius: 0;
    max-height: 54px;
    max-width: 54px;
  }

  .home-page .brand strong {
    font-size: 12px;
  }

  .home-page .brand small {
    font-size: 10px;
  }

  .home-page .mobile-nav summary {
    display: grid;
    font-size: 0;
    gap: 4px;
    height: 34px;
    padding: 0;
    place-content: center;
    width: 36px;
  }

  .home-page .mobile-nav summary::before {
    content: none;
  }

  .home-page .mobile-nav summary span {
    background: #111;
    border-radius: 999px;
    display: block;
    height: 3px;
    width: 18px;
  }

  .home-page .mobile-bm-link {
    font-size: 11px;
    height: 24px;
    min-width: 36px;
    padding: 0 8px;
  }

  .home-page .mobile-header-actions {
    flex-direction: column-reverse;
    gap: 2px;
  }

  .home-page .hero {
    gap: 10px;
    padding: 16px 12px 14px;
  }

  .home-page .hero-inner {
    max-width: 82%;
  }

  .home-page .hero-kpkt-badge {
    font-size: 10px;
    margin-bottom: 9px;
    padding: 7px 10px;
  }

  .home-page .eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .home-page h1 {
    font-size: 29px;
    line-height: 1.02;
    margin-bottom: 9px;
    max-width: 20ch;
  }

  .home-page .hero-text {
    font-size: 14px;
    line-height: 1.34;
    margin-bottom: 6px;
    max-width: 36ch;
  }

  .home-page .service-area {
    font-size: 12px;
    line-height: 1.32;
    margin-bottom: 0;
    max-width: 44ch;
  }

  .home-page .hero-trust-points {
    gap: 5px;
    margin-top: 9px;
  }

  .home-page .hero-trust-points span {
    font-size: 10.5px;
    flex: 0 1 calc(50% - 3px);
    gap: 4px;
    padding: 4px 6px;
  }

  .home-page .hero-trust-points svg {
    height: 18px;
    width: 18px;
  }

  .home-page .hero-cta-section {
    padding: 11px 12px;
  }

  .home-page .hero-cta-inner {
    gap: 8px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .home-page .hero-whatsapp-card,
  .home-page .hero-call-card {
    border-radius: 10px;
    min-height: 58px;
    padding: 8px 9px;
    text-align: center;
    width: 100%;
  }

  .home-page .hero-whatsapp-card {
    grid-column: auto;
  }

  .home-page .hero-whatsapp-card span,
  .home-page .hero-call-card {
    font-size: 12px;
    line-height: 1.25;
  }

  .home-page .hero-whatsapp-card small,
  .home-page .hero-call-card small {
    font-size: 10px;
  }

  .home-page .hero-directions-link {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 36px;
    padding: 7px 0;
  }

  .home-page .hero-license-card {
    border-left-width: 5px;
    grid-template-columns: 28px minmax(0, 1fr);
    margin-top: 10px;
    max-width: 310px;
    padding: 8px 12px;
  }

  .home-page .hero-license-card::before {
    height: 22px;
    margin-top: 1px;
    width: 22px;
  }

  .home-page .hero-license-card::after {
    height: 8px;
    left: 22px;
    top: 18px;
    width: 8px;
  }

  .home-page .hero-license-card .card-label {
    font-size: 10px;
    line-height: 1.1;
  }

  .home-page .hero-license-card strong {
    font-size: 15px;
    line-height: 1.12;
  }

  .home-page .floating-whatsapp {
    bottom: 18px;
    height: 50px;
    padding: 0;
    right: 16px;
    width: 50px;
  }

  .home-page .floating-whatsapp svg {
    height: 29px;
    width: 29px;
  }

}

@media (max-width: 420px) {
  .brand {
    gap: 10px;
  }

  .brand-logo {
    max-height: 46px;
    max-width: 46px;
  }

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

  .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 21px;
  }

  .nav a {
    padding: 4px 6px;
  }

  .office-photo {
    height: 120px;
  }

  .hero-office-photo {
    max-height: 190px;
  }

  .map-placeholder iframe {
    height: 180px;
    min-height: 180px;
  }

  .floating-whatsapp {
    font-size: 14px;
    padding: 13px 18px;
  }

  .home-page .floating-whatsapp {
    bottom: 18px;
    height: 46px;
    padding: 0;
    right: 14px;
    width: 48px;
  }

  .home-page .floating-whatsapp svg {
    height: 27px;
    width: 27px;
  }
}
