:root{
  --bgTint: rgba(255, 232, 165, 0.78); /* kuning overlay */
  --text: #0b0b0b;
  --white: #ffffff;
  --red: #e11d1d;
  --green: #18b76a;
  --shadow: 0 18px 50px rgba(0,0,0,0.18);
}

*{ box-sizing: border-box; }
html, body { height: 100%; background: #fff; }
body{
  margin: 0;
  font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #f6f6f6;
}

.cap{
  max-width: 50vw;
}

@media screen and (max-width: 1024px){
  .cap{
    max-width: 100vw;
  }
  
}

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 28px);
}

/* Background image */
.hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.03);
}

/* Yellow overlay */
.hero__overlay{
  position: absolute;
  inset: 0;
  background: var(--bgTint);
  backdrop-filter: blur(0px);
}

/* Top logo */
.hero__top{
  position: absolute;
  top: clamp(14px, 2.5vw, 26px);
  left: clamp(14px, 2.5vw, 26px);
  z-index: 3;
}

.hero__logo{
  width: clamp(140px, 16vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

/* Content center */
.hero__content{
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
  width: 100%;
  padding: clamp(10px, 2vw, 24px);
  transform: translateY(10px);
}

.hero.is-ready .hero__content{
  animation: heroIn 700ms ease-out forwards;
}

@keyframes heroIn{
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Title (big black) */
.hero__title{
  margin: 0 0 clamp(16px, 3vw, 24px);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  /* BESAR sikit untuk mobile & tablet */
  font-size: clamp(2.4rem, 7vw, 82px);

  /* bagi breathing space */
  line-height: 1.05;

  text-shadow: 0 10px 26px rgba(0,0,0,0.10);
}


/* Subtitle (outline style like gambar) */
.hero__subtitle{
  margin: 3rem 0 4rem clamp(20px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  /* subtitle lebih readable */
  font-size: clamp(1.2rem, 4.2vw, 3rem);
  line-height: 1.15;
}

/* Outline text */
.stroke{
  color: #111;
  -webkit-text-stroke: 5px #ffffff;
  paint-order: stroke fill;
  display: inline-block;
}

/* Red emphasis */
.stroke--red{
  color: #e11d1d;
  -webkit-text-stroke: 5px #ffffff;
}

/* CTA button */
.hero__cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--green);
  color: var(--white);
  padding: clamp(12px, 1.6vw, 18px) clamp(18px, 2.3vw, 28px);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
  max-width: min(520px, 92vw);
  justify-content: center;
}

.hero__cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.hero__cta:active{
  transform: translateY(0px) scale(0.99);
}

.hero__ctaIcon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  flex: 0 0 auto;
}

.hero__ctaText{
  font-size: clamp(14px, 1.7vw, 18px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive tweaks */
@media (max-width: 520px){
  .hero__title{ line-height: 1.02; }
  .stroke{ -webkit-text-stroke: 5px var(--white); }
  .stroke--red{ -webkit-text-stroke: 5px var(--white); }
}

@media (max-width: 380px){
  .hero__cta{
    width: 100%;
  }
  .hero__ctaText{
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }
}

/* =========================
   SECTION 2 (Result Sales)
========================= */
.s2{
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

/* bg image */
.s2__bg{
  position: absolute;
  inset: 0;
  background-image: url("./assets/section2-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.02);
  opacity: 0.8;
}

/* overlay putih lembut macam gambar (kiri lagi cerah) */
.s2__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 28% 40%, rgba(255,255,255,0.92), rgba(255,255,255,0.10) 70%),
    linear-gradient(90deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.18) 58%, rgba(255,255,255,0.15) 100%);
}

/* layout container */
.s2__inner{
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 40px);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
}

/* left text */
.s2__lead{
  margin: 0;
  color: #111827;
  font-weight: 500;
  letter-spacing: 0.2px;

  /* responsive */
  font-size: clamp(22px, 3vw, 54px);
  line-height: 1.18;

  /* bagi macam “clean” */
  text-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* right headline (bottom-right) */
.s2__right{
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.s2__headline{
  margin: 0;
  text-align: right;
  color: #ff1f1f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;

  font-size: clamp(26px, 4.3vw, 70px);
  line-height: 1.02;

  text-shadow: 0 14px 40px rgba(0,0,0,0.14);
}

/* =========================
   Responsive behavior
========================= */

/* Tablet */
@media (max-width: 900px){
  .s2__inner{
    grid-template-columns: 1fr;
    align-items: center;
  }

  .s2__right{
    align-items: center;
    justify-content: center;
  }

  .s2__headline{
    text-align: center;
    line-height: 1.05;
  }

  /* overlay: bagi lebih jelas kat tablet */
  .s2__overlay{
    background:
      radial-gradient(900px 520px at 40% 30%, rgba(255,255,255,0.92), rgba(255,255,255,0.18) 70%),
      linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.16) 70%);
  }
}

/* Mobile */
@media (max-width: 520px){
  .s2__inner{
    padding: 18px 16px;
    gap: 18px;
  }

  .s2__lead{
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1.22;
  }

  .s2__headline{
    font-size: clamp(26px, 8.5vw, 44px);
    text-align: center;
  }
}

/* =========================
   SECTION 3: 2x2 Grid (Full-bleed + ordered mobile)
========================= */
.grid2x2{
  width: 100%;
  
}

.grid2x2__wrap{
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;

  /* Desktop arrangement (match screenshot):
     TL: lady (q2), TR: text (q1)
     BL: text (q3), BR: guy (q4)
  */
  grid-template-areas:
    "q2 q1"
    "q3 q4";
}

/* assign areas */
.q1{ grid-area: q1; }
.q2{ grid-area: q2; }
.q3{ grid-area: q3; }
.q4{ grid-area: q4; }

.cardQ{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  /* tile height: responsive, desktop looks like big blocks */
  min-height: clamp(340px, 50vh, 520px);
  padding: clamp(18px, 3vw, 54px);
}

.cardQ--yellow{
  background: #d39b1e;
}

.cardQ--white{
  background: #ffffff;
}

.cardQ__title{
  margin: 0;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.12;
  font-size: clamp(22px, 3.2vw, 54px);
}

/* image tiles */
.cardQ--img{
  padding: 0;              /* full tile usable */
  align-items: stretch;
  justify-content: stretch;
}

.cardQ__person{
  position: absolute;
  bottom: 0;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;

  /* “ngam2” feel: bigger + anchored */
  transform: translateZ(0);
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.22));
}

/* lady: left tile — anchor left/bottom, fill more */
.cardQ__person--lady{
  left: 0;
  width: min(760px, 108%);
  max-height: 92%;
}

/* guy: right tile — anchor right/bottom, fill more */
.cardQ__person--guy{
  right: 0;
  width: min(760px, 108%);
  max-height: 92%;
}

/* Tablet: keep 2 cols but slightly smaller tiles */
@media (max-width: 980px){
  .cardQ{
    min-height: 380px;
    padding: 28px;
  }
  .cardQ__title{
    font-size: clamp(20px, 3.6vw, 40px);
  }
  .cardQ__person--lady,
  .cardQ__person--guy{
    width: min(640px, 112%);
    max-height: 90%;
  }
}

/* Mobile: order exactly:
   1) q1 text
   2) q2 lady
   3) q3 text
   4) q4 guy
*/
@media (max-width: 640px){
  .grid2x2__wrap{
    grid-template-columns: 1fr;
    grid-template-areas:
      "q1"
      "q2"
      "q3"
      "q4";
  }

  .cardQ{
    min-height: auto;
    padding: 22px 16px;
  }

  /* text blocks spacing */
  .cardQ--white{
    padding: 34px 16px;
  }

  .cardQ__title{
    width: 100%;
    text-align: center;
    font-size: clamp(22px, 7vw, 34px);
    line-height: 1.14;
  }

  /* image blocks: fixed height so image “ngam” */
  .cardQ--img{
    height: 360px;
    min-height: 360px;
  }

  .cardQ__person--lady,
  .cardQ__person--guy{
    width: min(520px, 115%);
    max-height: 92%;
  }
}

/* =========================
   FULL WIDTH CTA BAR
========================= */
.cta-bar{
  width: 100%;
  background: #2fb463; /* WhatsApp green */
}

.cta-bar__link{
  width: 100%;
  min-height: 92px;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  font-size: clamp(16px, 2.2vw, 22px);

  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-bar__link:hover{
  background: #27a157;
}

.cta-bar__link:active{
  transform: scale(0.99);
}

.cta-bar__icon{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile tweak */
@media (max-width: 520px){
  .cta-bar__link{
    min-height: 78px;
    font-size: 16px;
    gap: 10px;
  }
}

/* =========================
   SECTION: RTM Intro
========================= */
.rtm{
  background: #ffffff;
  padding: clamp(36px, 6vw, 74px) 16px;
  min-height: 70vh;
  align-content: center;
}

.rtm__wrap{
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.rtm__title{
  margin: 0 0 clamp(16px, 3vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  color: #0f172a;

  /* lebih controlled untuk mobile */
  font-size: clamp(28px, 6.5vw, 74px);
  line-height: 1.02;

  /* letter spacing jangan terlalu besar di mobile */
  letter-spacing: clamp(0.5px, 0.18vw, 1.2px);
}


/* Yellow pill */
.rtm__pill{
  display: inline-block;
  background: #ffd200;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: 0.4px;

  padding: clamp(12px, 2vw, 22px) clamp(16px, 2.6vw, 34px);
  font-size: clamp(20px, 5.2vw, 64px);
  line-height: 1.08;

  /* bagi dia boleh shrink elok */
  max-width: 100%;
  white-space: normal;
}


/* Arrow */
.rtm__arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(14px, 2.4vw, 24px) 0;
}

.rtm__arrowSvg{
  width: clamp(46px, 7vw, 78px);
  height: auto;
  display: block;
}


/* Main boxed description */
.rtm__box{
  border: 6px solid #ffd200;
  padding: clamp(18px, 3vw, 28px);
  display: inline-block;
  width: min(980px, 100%);
  background: #ffffff;
}

.rtm__boxText{
  margin: 0;
  color: #0f172a;
  font-size: clamp(18px, 3vw, 40px);
  line-height: 1.25;
  font-weight: 500;
}

.rtm__boxText strong{
  font-weight: 900;
}

/* Warning note */
.rtm__note{
  margin: clamp(18px, 3vw, 26px) auto 0;
  width: min(980px, 100%);
  color: #0f172a;
  font-size: clamp(14px, 2vw, 24px);
  line-height: 1.35;
  text-align: left;

  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

.rtm__warn{
  font-size: 1.2em;
  line-height: 1;
}

/* Mobile tighten */
@media (max-width: 520px){
  .rtm__note{
    justify-content: flex-start;
  }

  .rtm__box{
    border-width: 5px;
  }
}

@media (max-width: 420px){
  .rtm__title{
    font-size: 30px;          /* lock supaya tak jadi monster */
    letter-spacing: 0.6px;
  }

  .rtm__pill{
    font-size: 26px;
  }

  .rtm__boxText{
    font-size: 18px;
  }
}

.rtm-founder{
  background:#fff;
  min-height: 70vh;
  align-content: center;
}

.rtm-founder__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;

}

/* LEFT */
.rtm-founder__image{
  background:#f2b41c;
  display:flex;
  align-items:flex-end;      /* 🔥 lekat bawah */
  justify-content:center;
  padding:0;                 /* 🔥 buang padding */
  overflow:hidden;           /* kemas */
}


.rtm-founder__image img{
  height:70%;                /* 🔥 ikut tinggi container */
  max-height:70%;
  width:auto;                /* kekalkan ratio */
  max-width:none;            /* jangan limit width */
}

/* RIGHT */
.rtm-founder__content{
  padding: clamp(30px, 5vw, 80px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:20px;
}

.rtm-founder__content h2{
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight:900;
  line-height:1.05;
  margin:0;
  color:#0f172a;
}

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

.rtm-founder__content li{
  font-size: clamp(18px, 2vw, 30px);
  color:#0f172a;
}

/* RED ALERT */
.rtm-founder__alert{
  background:#a11414;
  color:#fff;
  padding:14px 18px;
  font-weight:800;
  text-transform:uppercase;
  width:fit-content;
  font-size: clamp(14px, 1.4vw, 20px);
}

/* =====================
   TABLET
===================== */
@media (max-width: 1024px){
  .rtm-founder__grid{
    grid-template-columns: 1fr;
  }

  .rtm-founder__image{
    order:2;
  }

  .rtm-founder__alert{
    width:100%;
    text-align:center;
  }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 640px){
  .rtm-founder__content{
    padding:24px 16px;
  }


  .rtm-founder__image img{
    max-width:300px;
  }
}

/* =========================
   RTM SHIFT SECTION
========================= */
  .rtm-transition {
    background: #fff;
    padding: clamp(28px, 5vw, 70px) 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .rtm-transition .wrap {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
  }

  /* TOP TITLE */
  .rtm-transition__title {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.15;
    margin: 0 0 clamp(18px, 3vw, 30px);
    text-align: center;
  }

  /* FLOW: "push manusia" -> arrow -> "urus sistem" */
  .rtm-transition__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    margin-bottom: clamp(18px, 3vw, 34px);
    flex-wrap: nowrap;
  }

  .rtm-transition__flow .from {
    color: #b30f0f;
    font-weight: 800;
    font-size: clamp(18px, 2.3vw, 30px);
    white-space: nowrap;
  }

  .rtm-transition__flow .to {
    color: #0a9b2d;
    font-weight: 800;
    font-size: clamp(18px, 2.3vw, 30px);
    white-space: nowrap;
  }

  .rtm-transition__arrow {
    width: clamp(120px, 18vw, 240px);
    height: 4px;
    background: #0f172a;
    position: relative;
    border-radius: 999px;
    flex: 0 0 auto;
  }
  .rtm-transition__arrow::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid #0f172a;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  /* YELLOW BAR */
  .rtm-transition__bar {
    background: #f2b41c;
    padding: clamp(22px, 3.2vw, 36px) clamp(18px, 3vw, 34px);
    margin: 0 auto clamp(26px, 4vw, 44px);
  }

  .rtm-transition__bar h3 {
    margin: 0;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 3.3vw, 48px);
    line-height: 1.1;
    text-align: center;
  }

  /* POINTS GRID */
  .rtm-transition__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(26px, 4vw, 60px);
    align-items: start;
  }

  .rtm-point {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    align-items: start;
  }

  .rtm-point__num {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: #f2b41c;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 28px;
    color: #0f172a;
    margin-top: 6px;
  }

  .rtm-point__text {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.5;
    color: #0f172a;
  }

  /* =====================
     TABLET
  ===================== */
  @media (max-width: 1024px) {
    .rtm-transition .wrap {
      width: min(900px, calc(100% - 40px));
    }

    .rtm-transition__points {
      grid-template-columns: 1fr; /* stack points */
      gap: 28px;
    }

    .rtm-transition__flow {
      flex-wrap: wrap;
    }
  }

  /* =====================
     MOBILE
  ===================== */
  @media (max-width: 640px) {
    .rtm-transition .wrap {
      width: calc(100% - 32px);
    }

    .rtm-transition__title {
      text-align: center;
    }
    /* flow jadi vertical + arrow turun */
    .rtm-transition__flow {
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 18px;
    } 

    .rtm-transition__arrow {
      width: 4px;
      height: 58px;
      border-radius: 999px;
    }
    .rtm-transition__arrow::after {
      right: 50%;
      top: auto;
      bottom: -6px;
      transform: translateX(50%);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 18px solid #0f172a;
      border-bottom: 0;
    }

    .rtm-transition__bar h3 {
      text-align: left; /* bagi nampak besar & natural on mobile */
    }

    .rtm-point {
      grid-template-columns: 72px 1fr;
      gap: 14px;
    }

    .rtm-point__num {
      width: 64px;
      height: 64px;
      font-size: 24px;
    }
  }

  .rtm-truth{
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  /* background image (tukar url) */
  .rtm-truth__bg{
    position:absolute;
    inset:0;
    background-image: url("assets/truth-bg.jpg"); /* <= tukar ni */
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.03);
    opacity: .65;
  }
  
  /* white overlay supaya text clear */
  .rtm-truth__overlay{
    position:absolute;
    inset:0;
    background: rgba(255,255,255,.70);
  }
  
  /* content */
  .rtm-truth__container{
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 90px) 18px;
    text-align: center;
  }
  
  .rtm-truth__title{
    margin: 0 0 18px;
    font-weight: 900;
    color: #0f172a;
    font-size: clamp(26px, 3.2vw, 44px);
  }
  
  .rtm-truth__headline{
    margin: 0 0 20px;
    font-weight: 900;
    color: #b01212;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: clamp(22px, 3vw, 38px);
  }
  
  /* body block center */
  .rtm-truth__body{
    max-width: 720px;
    margin: 0 auto 28px;
  }
  
  .rtm-truth__lead{
    margin: 0 0 10px;
    font-size: clamp(16px, 1.6vw, 20px);
    color: #0f172a;
  }
  
  .rtm-truth__list{
    margin: 0 auto 20px;
    padding-left: 22px; /* bullet spacing */
    text-align: left;
    display: inline-block; /* trick: block jadi center tapi bullet kekal left */
  }
  
  .rtm-truth__list li{
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.55;
    color:#0f172a;
    margin: 6px 0;
  }
  
  .rtm-truth__closing{
    margin: 0;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    color:#0f172a;
  }
  
  /* CTA button */
  .rtm-truth__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: #17b45a;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: .2px;
    font-size: clamp(14px, 1.4vw, 18px);
    box-shadow: 0 14px 30px rgba(23,180,90,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  
  .rtm-truth__cta:hover{
    transform: translateY(-2px);
    filter: brightness(1.02);
  }
  
  .rtm-truth__ctaIcon{
    font-size: 18px;
  }
  
  /* Mobile polish */
  @media (max-width: 640px){
    .rtm-truth__list{
      width: 100%;
      max-width: 420px;
    }
  }

  /* =========================
   SECTION: CHECKLIST
========================= */
.rtm-check{
  background:#fff;
  padding: clamp(28px, 5vw, 64px) 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.rtm-check__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.rtm-check__title{
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #ff1f1f; /* merah tajuk */
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.05;
}

.rtm-check__emoji{
  display:inline-block;
  transform: translateY(6px);
  font-size: 0.9em;
}

.rtm-check__list{
  margin: 0;
  padding-left: 4rem; /* bullet spacing */
  color:#111827;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.55;
}

.rtm-check__list li{
  margin: 10px 0;
}

.rtm-check__bar{
  margin-top: clamp(22px, 3vw, 34px);
  background: #f2b41c; /* kuning RTM */
  color: #111827;
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 22px);
  padding: 14px 18px;
  border-radius: 10px;
  width: fit-content;
  max-width: 100%;
}

/* Tablet: center sikit bagi nampak kemas */
@media (max-width: 1024px){
  .rtm-check__bar{
    width: 100%;
    text-align: center;
  }
}

/* Mobile: align center macam poster */
@media (max-width: 640px){
  .rtm-check__title{
    text-align: center;
  }

  .rtm-check__list{
    padding-left: 1.1em;
    font-size: 18px;
  }
}

/* =========================
   SECTION: 3 PERKARA UTAMA
========================= */
.rtm-3things{
  background:#fff;
  padding: clamp(28px, 5vw, 70px) 0;
  margin-bottom: 3rem;
}

.rtm-3things__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.rtm-3things__title{
  text-align:center;
  margin: 0 0 clamp(22px, 4vw, 44px);
  font-weight: 900;
  color:#0f172a;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.05;
}

.rtm-3things__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: stretch;
}

.rtm-3things__card{
  background:#f2b41c;            /* kuning */
  border-radius: 22px;
  padding: 18px 18px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height: 360px;
}

/* gambar atas macam sample (kecil sikit, center) */
.rtm-3things__img{
  width: min(190px, 62%);
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 6px;
  margin-bottom: 14px;
}

/* tajuk Recruit/Train/Monitor */
.rtm-3things__cardTitle{
  margin: 0 0 14px;
  font-weight: 900;
  color:#0f172a;
  font-size: clamp(20px, 2vw, 30px);
  text-align:center;
}

/* box putih dalam kad */
.rtm-3things__box{
  background:#fff;
  width: 100%;
  border-radius: 6px;
  padding: 18px 18px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color:#111827;
  min-height: 150px;
  display:flex;
  align-items:flex-start;
}

/* TABLET: jadi 2 kolum */
@media (max-width: 1024px){
  .rtm-3things__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .rtm-3things__card:nth-child(3){
    grid-column: 1 / -1; /* card 3 jadi full width bawah */
    max-width: 520px;
    justify-self: center;
  }
}

/* MOBILE: 1 kolum */
@media (max-width: 640px){
  .rtm-3things__grid{
    grid-template-columns: 1fr;
  }

  .rtm-3things__card{
    padding: 16px 16px 20px;
  }

  .rtm-3things__img{
    width: 68%;
  }

  .rtm-3things__box{
    min-height: 0;
  }
}

/* =========================
   SECTION: APA YANG BERUBAH
========================= */
.rtm-changes{
  /* letak gambar background kat sini */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.rtm-changes__overlay{
  /* putih + blur feel */
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(34px, 5vw, 80px) 0;
}

.rtm-changes__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.rtm-changes__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 4vw, 60px);
  align-items: center;
}

/* LEFT */
.rtm-changes__left{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rtm-changes__bigIcon{
  width: 92px;
  height: 92px;
}

.rtm-changes__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #0f172a;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
}

/* RIGHT */
.rtm-changes__right{
  display: flex;
  justify-content: flex-start;
}

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

.rtm-changes__list li{
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  column-gap: 14px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  color: #111827;
}

.rtm-changes__tick{
  margin-top: 2px;
}

/* TABLET */
@media (max-width: 560px){
  .rtm-changes__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rtm-changes__right{
    justify-content: flex-start;
  }
}

/* MOBILE: bagi kiri tu center sikit macam poster */
@media (max-width: 640px){
  .rtm-changes__left{
    align-items: center;
    text-align: center;
  }

  .rtm-changes__right{
    justify-content: center;
  }

  .rtm-changes__list{
    width: min(520px, 100%);
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */
.rtm-testimonials{
  background:#fff;
  padding: clamp(28px, 5vw, 70px) 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rtm-testimonials__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.rtm-testimonials__title{
  margin: 0 0 18px;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  color:#0f172a;
}

.rtm-testimonials__divider{
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: clamp(18px, 4vw, 34px) 0;
}

/* =========================
   GENERIC SLIDER
========================= */
.rtm-slider{
  position: relative;
}

.rtm-slider__viewport{
  overflow: hidden;
  border-radius: 14px; /* untuk rasa kemas */
}

.rtm-slider__track{
  display: flex;
  gap: 18px;
  transition: transform 350ms ease;
  will-change: transform;
}

.rtm-slider__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.rtm-slider__nav--left{ left: -14px; }
.rtm-slider__nav--right{ right: -14px; }

@media (max-width: 640px){
  .rtm-slider__nav--left{ left: -6px; }
  .rtm-slider__nav--right{ right: -6px; }
}

/* =========================
   VIDEO CARDS
========================= */
.rtm-videoCard{
  flex: 0 0 calc((100% - 36px) / 3); /* 3 cards desktop */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.rtm-videoCard__frame{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.rtm-videoCard__frame--shorts{
  aspect-ratio: 9 / 16; /* untuk video vertical */
}

.rtm-videoCard__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* tablet: 2 cards */
@media (max-width: 1024px){
  .rtm-videoCard{
    flex-basis: calc((100% - 18px) / 2);
  }
}

/* mobile: 1 card */
@media (max-width: 640px){
  .rtm-videoCard{
    flex-basis: 100%;
  }
}

/* =========================
   QUOTE CARDS
========================= */
.rtm-quoteCard{
  flex: 0 0 calc((100% - 36px) / 3); /* 3 cards desktop */
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.rtm-quoteCard__head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rtm-quoteCard__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.rtm-quoteCard__name{
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.rtm-quoteCard__stars{
  color: #f59e0b; /* star kuning */
  letter-spacing: 1px;
  font-size: 14px;
  margin-top: 2px;
}

.rtm-quoteCard__text{
  margin: 0;
  color: #111827;
  line-height: 1.6;
  font-size: 15.5px;
}

/* tablet: 2 cards */
@media (max-width: 1024px){
  .rtm-quoteCard{
    flex-basis: calc((100% - 18px) / 2);
  }
}

/* mobile: 1 card */
@media (max-width: 640px){
  .rtm-quoteCard{
    flex-basis: 100%;
  }
}

/* =========================
   RTM FIT SECTION
========================= */
.rtm-fit{
  background:#fff;
  padding: clamp(34px, 6vw, 80px) 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rtm-fit__inner{
  width: min(980px, 92vw);
  margin: 0 auto;
}

.rtm-fit__title{
  margin: 0 0 clamp(18px, 3vw, 28px);
  text-align: center;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: .5px;
  color:#0f172a;
}

.rtm-fit__group{
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.rtm-fit__label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color:#0f172a;
}

.rtm-fit__icon{
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.rtm-fit__box{
  background: #f2b41c; /* kuning RTM */
  border-radius: 12px;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

.rtm-fit__list{
  margin: 0;
  padding-left: 22px; /* bullet indent */
  display: grid;
  gap: 10px;
}

.rtm-fit__list li{
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.35;
  color:#0f172a;
}

/* spacing balance */
.rtm-fit__group:last-child{ margin-bottom: 0; }

/* Mobile: bagi center sikit macam screenshot */
@media (max-width: 640px){
  .rtm-fit__label{
    justify-content: flex-start;
  }
  .rtm-fit__box{
    padding: 16px 18px;
  }
}

/* =========================
   FINAL CTA (phone mockup)
========================= */
.rtm-finalCta{
  position: relative;
  overflow: hidden;
  background: #ffe596; /* fallback */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* background image + overlay */
.rtm-finalCta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255, 225, 142, 0.92) 0%, rgba(255, 236, 183, 0.76) 55%, rgba(255, 252, 243, 0.6) 100%);
  filter: saturate(.9);
  z-index: 0;
}

.rtm-finalCta__inner{
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.rtm-finalCta__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
}

/* LEFT */
.rtm-finalCta__left h2{
  margin: 0 0 18px;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  color:#0f172a;
  letter-spacing: .2px;
}

.rtm-finalCta__left p{
  margin: 0 0 22px;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.3;
  color:#0f172a;
}

/* WhatsApp button */
.rtm-waBtn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
  letter-spacing: .3px;
}

.rtm-waBtn__icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
}

/* RIGHT phone */
.rtm-finalCta__right{
  display: grid;
  place-items: center;
}

/* phone shell */
.rtm-phone{
  width: min(330px, 82vw);
  aspect-ratio: 9 / 16;
  border-radius: 42px;
  background: #0b1220;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  position: relative;
  padding: 12px;
}

.rtm-phone__notch{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #0b1220;
  z-index: 3;
}

.rtm-phone__screen{
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.06), rgba(0,0,0,0) 45%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.06), rgba(0,0,0,0) 48%),
    #f7f1dd;
  position: relative;
  padding: 58px 18px 22px;
  overflow: hidden;
}

/* simple doodle overlay feel */
.rtm-phone__screen::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("assets/doodle-bg.png"); /* optional; kalau takde, delete this line */
  background-size: cover;
  background-position: center;
  opacity: .10;
  pointer-events: none;
}

/* chat bubbles */
.rtm-phone__bubble{
  position: relative;
  background: #ffffff;
  border: 2px solid rgba(15,23,42,.18);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 0 0 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  color:#0f172a;
  font-weight: 700;
  z-index: 2;
}

.rtm-phone__bubble::before{
  content:"";
  position:absolute;
  left: -10px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
}

.rtm-phone__bubble::after{
  content:"";
  position:absolute;
  left: -12px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 11px solid rgba(15,23,42,.18);
  z-index: -1;
}

.rtm-phone__bubble--bonus{
  margin-top: 6px;
  padding: 10px 12px;
  width: fit-content;
}

.rtm-phone__bubble--bonus span{
  display: inline-block;
  background: #faeac2;
  color: #0f172a;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 10px;
}

/* red button in phone */
.rtm-phone__docBtn{
  display: block;
  margin-top: 10px;
  background: #a11414;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  letter-spacing: .6px;
  border-radius: 10px;
  padding: 12px 10px;
  box-shadow: 0 14px 26px rgba(161,20,20,.28);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 560px){
  .rtm-finalCta__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .rtm-finalCta__left{
    text-align: center;
  }

  .rtm-finalCta__right{
    order: 2;
  }
}

/* =========================
   FOOTER (CONTACT US)
========================= */
.rtm-footer{
  background: #f6f1ea; /* off-white macam screenshot */
  padding: clamp(30px, 5vw, 70px) 0;
}

.rtm-footer__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.rtm-footer__grid{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(22px, 4vw, 80px);
  align-items: center;
}

.rtm-footer__title{
  margin: 0 0 18px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: #0f172a;
}

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

.rtm-footer__item{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.4;
}

.rtm-footer__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #ef1d1d; /* merah icon */
}

.rtm-footer__link{
  color: #0f172a;
  text-decoration: none;
}
.rtm-footer__link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* social */
.rtm-footer__social{
  margin-top: 46px;
}

.rtm-footer__socialTitle{
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
}

.rtm-footer__socialRow{
  display: flex;
  gap: 14px;
}

.rtm-footer__socialBtn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #ef1d1d;
  color: #ef1d1d;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: transparent;
  transition: transform 120ms ease, background 120ms ease;
}
.rtm-footer__socialBtn:hover{
  transform: translateY(-2px);
  background: rgba(239,29,29,.08);
}

/* right logo */
.rtm-footer__right{
  display: grid;
  justify-items: center;
  text-align: center;
}

.rtm-footer__brand{
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1;
}
.rtm-footer__brandA{ color:#111; }
.rtm-footer__brandB{ color:#ef1d1d; }

.rtm-footer__tagline{
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(15,23,42,.65);
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .rtm-footer__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rtm-footer__right{
    justify-items: start;   /* ikut screenshot: logo duduk bawah tapi boleh kiri */
    text-align: left;
  }

  .rtm-footer__social{
    margin-top: 34px;
  }
}

@media (max-width: 520px){
  .rtm-footer__item{
    font-size: 16px;
  }

  .rtm-footer__socialTitle{
    font-size: 26px;
  }

  .rtm-footer__brand{
    font-size: 54px;
  }
}

/* logo image */
.rtm-footer__logoImg{
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* tablet & mobile */
@media (max-width: 900px){
  .rtm-footer__right{
    justify-items: start;
    text-align: left;
  }

  .rtm-footer__logoImg{
    max-width: 220px;
  }
}

@media (max-width: 520px){
  .rtm-footer__logoImg{
    max-width: 200px;
  }
}


/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;

  background: #22c55e; /* whatsapp-ish green */
  color: #fff;

  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  transform: translateZ(0);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
}

.wa-float:active{
  transform: translateY(0px) scale(.98);
}

.wa-float__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.wa-float__text{
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 13px;
}

/* mobile: jadi bulat icon sahaja (tak ganggu screen kecik) */
@media (max-width: 520px){
  .wa-float{
    padding: 12px;
  }
  .wa-float__text{
    display: none;
  }
}
