:root{
  /* =====================================================
     MyPath Brand Palette 2026
     ===================================================== */
  --color-purple:      #70309f;   /* core brand identity */
  --color-orange:      #f6a602;   /* CTAs, highlights */
  --color-dark-violet: #631465;   /* body text on white */
  --color-white:       #FFFFFF;

  /* Legacy aliases → brand palette */
  --white:  #FFFFFF;
  --black:  #000000;
  --orange: #f6a602;
  --purple: #70309f;

  --bg:    #FFFFFF;
  --text:  #631465;
  --muted: rgba(99, 20, 101, .70);
  --line:  rgba(112, 48, 159, .15);

  --radius: 22px;
  --shadow: 0 16px 40px rgba(112, 48, 159, .12);

  /* Layout helpers */
  --stickyTop: 120px;
  --stackGap:  clamp(90px, 22vh, 180px);
}

/* =====================================================
   Global Heading Colour — Brand Purple
   ===================================================== */
h1, h2, h3, h4, h5, h6, .h2 {
  color: var(--color-purple);
}
/* Headings in intentionally-dark / video sections stay white */
.hero h1,.hero h2,.hero h3,.hero h4,
.orange-stack h1,.orange-stack h2,.orange-stack h3,
.testi-marquee h1,.testi-marquee h2,.testi-marquee h3,
.kata-video h1,.kata-video h2,.kata-video h3,
.eastmy-stats h1,.eastmy-stats h2,.eastmy-stats h3,
.about-mypath h1,.about-mypath h2,.about-mypath h3,
.final-cta h1,.final-cta h2,.final-cta h3,
.subscribe h1,.subscribe h2,.subscribe h3,
.video-card h1,.video-card h2,.video-card h3,
.t-hero h1,.t-hero h2,.t-hero h3,
.t-card h1,.t-card h2,.t-card h3,
.t-cta h1,.t-cta h2,.t-cta h3,
.tentang-page .t-hero h1,.tentang-page .t-hero h2 {
  color: #fff;
}

/* =====================================================
   Global Body Text — Dark Purple
   ===================================================== */
.orange-card p, .orange-card ul, .orange-card li,
.tm-quote, .tcard__text,
.testi__quote, .testi__name,
.faq-a, .faq-a p,
.jobs-card__body,
.sector-card p,
.contact-step__text,
.contact-side__desc,
.contact-mini__text,
.contact-list {
  color: var(--color-dark-violet);
}

/* =====================================================
   Text links (non-button) in light contexts
   ===================================================== */
a:not([class]),
.footer__links a {
  color: var(--color-dark-violet);
}

*{box-sizing:border-box}
html,body{height:100%}
html{
  background:#fff;
  transition: background-color 900ms ease;
}

html.is-purple{
  background:#70309f;
}

/* IMPORTANT: allow html purple to show */
html.is-purple body{
  background: transparent;
}


body{
  margin:0;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: #ffffff;
    transition: background-color 900ms ease; /* smooth change */

  overflow-x:hidden;
}
html.is-purple .sector-showcase{
  background: transparent !important;
}


img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

.h2{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:clamp(26px, 3vw, 36px);
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.muted{color:var(--muted); margin:0; line-height:1.7}

/* =========================================================
   FULL-BLEED helper (forces 100vw even if wrapped by container)
   ========================================================= */
.full-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__logo{height:34px; width:auto}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  font-size:14px;
  opacity:.88;
  padding:10px 10px;
  border-radius:999px;
}
.nav__link:hover{opacity:1; background:rgba(112,48,159,.08)}
.nav__link.active{
  background:rgba(246,166,2,.16);
  opacity:1;
}

.header__right{display:flex; align-items:center; gap:10px}
.icon-btn{
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-dot{
  width:12px;height:12px;
  border-radius:999px;
  background:var(--purple);
  box-shadow:0 0 0 6px rgba(112,48,159,.12);
}

/* Hamburger */
.hamburger{
  display:none;
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:999px;
  cursor:pointer;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:var(--black);
  margin:5px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--color-orange);
  color:var(--color-white);
  transition:background .2s ease, transform .15s ease;
}
.btn--primary:hover{
  background:var(--color-purple);
  color:var(--color-white);
}
.btn--ghost{
  background: var(--color-purple);
  color: var(--color-white);
  border: 2px solid #fff;
  transition: background .2s ease, transform .15s ease;
}
.btn--ghost:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}
.btn--outline{
  background: var(--color-purple);
  color: var(--color-white);
  border: 2px solid #fff;
  transition: background .2s ease, transform .15s ease;
}
.btn--outline:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}
.btn--sm{padding:9px 14px; font-size:13px}

/* =========================================================
   HERO (FORCE FULL WIDTH + 100vh)
   ========================================================= */
.hero{
  position:relative;
  height:100vh;              /* requested */
  min-height:100vh;
  background:var(--black);
  overflow:hidden;

  /* force full width even if something wraps it */
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:var(--black);
  opacity:.48;
}
.hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:72px 0 56px;
  color:var(--white);
}
.hero__tag{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  width:fit-content;
}
.hero__title{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:clamp(42px, 6vw, 72px);
  line-height:1.02;
  letter-spacing:-.03em;
  margin:18px 0 14px;
  max-width:16ch;
}
.hero__desc{
  margin:0;
  max-width:62ch;
  opacity:.92;
  line-height:1.8;
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.hero__stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:12px 14px;
  min-width:160px;
}
.stat__num{
  font-family:"League Spartan", system-ui, sans-serif;
  font-weight:700;
  font-size:18px;
}
.stat__label{
  font-size:13px;
  opacity:.9;
  margin-top:4px;
}

/* ── Global Sub-Page Hero ─────────────────────────── */
.global-sub-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  /* Guaranteed breathing room — prevents buttons from gluing to the section edge
     when long titles wrap to multiple lines. Works on all job pages. */
  padding-top: clamp(4rem, 8vh, 5rem);
  padding-bottom: clamp(4rem, 8vh, 5rem);
}
.global-sub-hero--text-only {
  min-height: auto;
  padding-top: clamp(100px, 12vw, 140px);
  padding-bottom: clamp(60px, 8vw, 80px);
}
.global-sub-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Flex column stack — predictable gaps, no margin-collapse surprises */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.global-sub-hero .global-sub-hero__title {
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: #fff;
}
section.global-sub-hero .global-sub-hero__subtitle {
  font-size: 1rem;
  max-width: 62ch;
  opacity: .92;
  line-height: 1.8;
  margin: 0 0 24px;
}
@media (max-width: 520px) {
  section.global-sub-hero .global-sub-hero__title {
    font-size: clamp(32px, 8vw, 46px);
  }
}

/* Page shell */
.page{
  margin-top:10px;
  padding-bottom:48px;
}
.page__shell{
  background:transparent;
  border:none;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
}

/* Sections */
.section{
  padding:44px 28px;
}
.section--tight{padding:22px 28px}
.section__head{margin-bottom:20px}
.section__foot{margin-top:18px; display:flex; justify-content:flex-end}

/* Chips */
.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  background:var(--white);
  cursor:pointer;
  font-size:13px;

  /* remove weird browser outline look */
  outline:none;
}
.chip:focus-visible{
  outline:2px solid rgba(112,48,159,.28);
  outline-offset:2px;
}
.chip.is-active{
  border-color:rgba(112,48,159,.35);
  background:rgba(112,48,159,.08);
}

/* =========================================================
   ORANGE STACK — FULL-BLEED STICKY VIDEO BG + STACKING CARDS
   (video stays fixed-feel, cards stack, no white gap)
   ========================================================= */

.orange-stack{
  /* full-bleed (break out of .container) */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  position: relative;
  isolation: isolate;

  /* IMPORTANT: sticky cards need overflow visible */
  overflow: visible;

  /* controls */
  --stickyTop: 120px;     /* must match JS STICKY_TOP */
  --stackGap: 110px;

  /* no extra gap above */
  margin-top: 0;
  padding-top: 0;
}

/* sticky video background (sits behind) */
.orange-stack__bg{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;

  /* safe to hide overflow HERE */
  overflow: hidden;
  pointer-events: none;
}

/* video covers viewport */
.orange-stack__bgVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02); /* avoid edge slivers */
}

/* overlay for readability (support BOTH class names) */
.orange-stack__bgOverlay,
.orange-stack__shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.42) 35%,
    rgba(0,0,0,.62) 100%
  );
}

/* content scrolls on top of the sticky bg */
.orange-stack__content{
  position: relative;
  z-index: 2;

  /* pull content onto the sticky bg (kills the white band) */
  margin-top: -100vh;

  /* keep this tight (so it doesn't create a huge top gap) */
  padding: 20px 0 64px;
}

/* widths align with the rest of your site */
.orange-stack__card,
.orange-stack__chips,
.orange-stack__track{
  width: min(1100px, 92%);
  margin-left: auto;
  margin-right: auto;
}

/* title spacing */
.orange-stack__card{
  margin-top: 0;
  margin-bottom: 14px;
}

/* chips spacing */
.orange-stack__chips{
  margin-bottom: 18px;
}

/* IMPORTANT: give enough space so last sticky card can "release" */
.orange-stack__track{
  padding-bottom: calc(var(--stackGap) * 0.9);
}

/* headings readable on video */
.orange-stack .h2,
.orange-stack .muted{
  color: #fff;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* chips readable on video */
.orange-stack .chip{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.orange-stack .chip.is-active{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.38);
}

/* ===== stacking cards (driven by JS --lift) ===== */
.orange-card{
  --lift: 0;
  --bg: #fff6e6;

  position: sticky;
  top: var(--stickyTop);

  background: var(--bg);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  padding: 18px 18px 16px;

  /* later cards on top */
  z-index: calc(10 + var(--i));

  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));
  will-change: transform;
}

/* distance between cards */
.orange-card + .orange-card{
  margin-top: var(--stackGap);
}

/* card header */
.orange-card__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}

.orange-card__num{
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  font-weight:700;
  font-size:13px;
}

.orange-card h3{
  margin:0;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:22px;
  letter-spacing:-.02em;
  color: var(--color-dark-violet);
}

.orange-card p{
  margin:0 0 10px;
  line-height:1.75;
  color: var(--color-dark-violet);
  font-size:14px;
}

.orange-card ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
  font-size:13px;
  color: var(--color-dark-violet);
}

.orange-card li{ margin:6px 0; color: var(--color-dark-violet); }

.orange-card__num{ color: var(--color-dark-violet); }

/* mobile: reduce sticky top & spacing */
@media (max-width: 720px){
  .orange-stack{ --stickyTop: 96px; --stackGap: 86px; }
  .orange-stack__content{ padding: 16px 0 56px; }
  .orange-card h3{ font-size: 20px; }
}






/* testimonial cards */
.tm-card{
  width: 260px;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);

  flex: 0 0 auto;
  backdrop-filter: blur(6px);
}

.tm-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tm-quote{
  margin: 12px 14px 10px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,.78);
}

.tm-audio{
  margin: 0 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(112,48,159,.22);
  color: rgba(0,0,0,.78);
  font-weight: 700;
  font-size: 13px;

  cursor: pointer;
}

.tm-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(112,48,159,.70);
  box-shadow: 0 0 0 4px rgba(112,48,159,.15);
}

/* mobile */
@media (max-width: 680px){
  .tm-card{ width: 220px; }
  .tm-card img{ height: 160px; }
}


/* =========================
   Testimonial card styling
   ========================= */

.tm-card{
  width: 260px;
  flex: 0 0 auto;

  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);

  backdrop-filter: blur(6px);
}

.tm-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tm-quote{
  margin: 12px 14px 10px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,.78);
}

.tm-audio{
  margin: 0 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(112,48,159,.22);
  color: rgba(0,0,0,.78);

  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.tm-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(112,48,159,.12);
}


/* Mobile tweaks */
@media (max-width: 680px){
  .tm-card{ width: 220px; }
  .tm-card img{ height: 160px; }
}


/* Jobs grid (if you still keep elsewhere) */
.jobs{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.job{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  transform:translateZ(0);
}
.job img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.job__body{padding:14px}
.job h3{
  margin:0 0 6px;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:18px;
}
.job__meta{margin:0;color:var(--muted);font-size:13px}
.job__actions{display:flex; gap:10px; margin-top:12px}

/* Testimonials preview (old grid if you still use it) */
.testis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.testi{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.testi img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.testi__body{padding:14px}
.testi__quote{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:rgba(0,0,0,.82);
}
.testi__name{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

/* CTA block */
.cta{
  padding:0 28px 28px;
}
.cta__inner{
  border-radius:20px;
  border:1px solid rgba(112,48,159,.20);
  background: linear-gradient(135deg, rgba(112,48,159,.10), rgba(246,166,2,.10));
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta__title{
  font-family:"League Spartan", system-ui, sans-serif;
  margin:0 0 6px;
  font-size:26px;
}
.cta__text{margin:0; color:var(--muted); line-height:1.7}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Footer */
.footer{
  background:var(--color-white);
  color:var(--color-dark-violet);
  padding:26px 0;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
  align-items:start;
}
.footer__logo{height:32px; width:auto}
.footer__text{margin:10px 0 0; opacity:.9; line-height:1.7; font-size:13px}
.footer__links{
  display:grid;
  gap:10px;
  font-size:13px;
  opacity:.92;
}
.footer__cta{display:flex; flex-direction:column; gap:10px; align-items:flex-start}
.footer__small{opacity:.75}

/* Social media icons row */
.footer__social{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
}
.footer__social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;height:38px;
  border-radius:50%;
  background:rgba(112,48,159,.10);
  border:1px solid rgba(112,48,159,.20);
  color:var(--color-purple);
  transition:background .18s,transform .18s;
  flex-shrink:0;
}
.footer__social-link:hover{
  background:rgba(246,166,2,.14);
  border-color:rgba(246,166,2,.35);
  color:var(--color-orange);
  transform:translateY(-2px);
}
.footer__social-link svg{
  width:16px;height:16px;
  fill:currentColor;
  display:block;
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .hamburger{display:block}
  .jobs{grid-template-columns:1fr}
  .testis{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}

  /* Disable sticky stacking on mobile (smooth UX) */
  .orange-card{
    position:relative;
    top:auto;
    transform:none !important;
  }
  .orange-card + .orange-card{ margin-top: 14px; }
  .orange-stack__track{ padding-bottom: 0; }

  .hero{ height:100vh; min-height:100vh; }
}

@media (max-width: 520px){
  .section{padding:36px 18px}
  .section--tight{padding:18px}
  .hero__content{padding:62px 0 46px}
  .hero__title{max-width:18ch}
}

/* Mobile menu open state */
body.nav-open .nav{
  display:grid;
  position:fixed;
  inset:64px 12px auto 12px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  gap:8px;
  z-index:80;
  box-shadow:var(--shadow);
}
body.nav-open .nav__link{
  padding:12px 12px;
  border-radius:14px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation:none !important; }
  .orange-card{ transition:none !important; }
}
/* =========================================================
   TESTI MARQUEE — STICKY VIDEO BG + 2 MARQUEE ROWS
   (no white glow, video stays, black overlay)
   ========================================================= */

.testi-marquee{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  position: relative;
  isolation: isolate;

  /* IMPORTANT: don't use white background */
  background: transparent;

  /* keep it tight after previous section */
  margin-top: 0;
  padding-top: 0;

  overflow: hidden;
}

/* sticky video background */
.testi-marquee__bg{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* video covers viewport */
.testi-marquee__bgVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* black overlay for readability */
.testi-marquee__shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.48) 35%,
    rgba(0,0,0,.72) 100%
  );
}

/* Pull content onto the sticky bg (removes the 100vh "gap") */
.testi-marquee__content{
  position: relative;
  z-index: 2;

  /* key trick: content sits on video immediately */
  margin-top: -100vh;

  padding: 0px 0 0;
}

/* Head text on video */
.testi-marquee__head{
  margin-bottom: 16px;
}
.testi-marquee__head .h2,
.testi-marquee__head .muted{
  color: #fff;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* Edge fades (make them DARK, not white) */
.testi-marquee::before,
.testi-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: clamp(22px, 4vw, 64px);
  z-index: 3;
  pointer-events: none;
}
.testi-marquee::before{
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,0));
}
.testi-marquee::after{
  right: 0;
  background: linear-gradient(270deg, rgba(0,0,0,.85), rgba(0,0,0,0));
}

/* =========================
   Marquee mechanics
   ========================= */

.marquee{
  overflow: hidden;
  padding: 10px 0;
}

.marquee__track{
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: marquee-left 28s linear infinite;
}

.marquee--slow .marquee__track{
  animation-duration: 40s;
}

@keyframes marquee-left{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* pause on hover (optional) */
.marquee:hover .marquee__track{
  animation-play-state: paused;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}
/* hard override: remove the white "light band" */
.testi-marquee{
  background: transparent !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   Testimonial card styling
   ========================= */

.tm-card{
  width: 260px;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);

  flex: 0 0 auto;
  backdrop-filter: blur(6px);
}

.tm-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tm-quote{
  margin: 12px 14px 10px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,.78);
}

.tm-audio{
  margin: 0 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0px 0px;
  border-radius: 999px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(112,48,159,.22);
  color: rgba(0,0,0,.78);
  font-weight: 700;
  font-size: 13px;

  cursor: pointer;
}

.tm-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(112,48,159,.70);
  box-shadow: 0 0 0 4px rgba(112,48,159,.15);
}

/* Mobile tweaks */
@media (max-width: 680px){
  .tm-card{ width: 220px; }
  .tm-card img{ height: 160px; }
}

/* ===== Senarai Kerja (full-width 2-up grid like reference) ===== */
.sector-showcase{
  padding: 40px 0 54px;
  background: #fff;
}

.sector-showcase__head{
  margin-bottom: 18px;
}

.sector-grid{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  padding: 0 max(24px, 4vw);
}

.sector-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: visible;              /* allow image to stay sharp */
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding-bottom: 16px;
}

.sector-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;

  border-radius: 0;               /* sharp corners */
  transform: scale(1);
  transition: transform .25s ease;
}
.sector-card:hover img{
  transform: scale(1.04);
}


.sector-card h3{
  margin: 14px 16px 6px;
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: -.02em;
}

.sector-card p{
  margin: 0 16px 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13.5px;
}

.sector-card .btn{
  margin: 0 16px;
}

@media (max-width: 980px){
  .sector-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.bg-sentinel{
  height: 1px;
}

/* everything after becomes purple */
.keluarga-zone{
  background: transparent; /* let BODY color show */
  padding: 54px 0 70px;
}
/* ===== AKTIVITI KELUARGA: VIDEO STACK ===== */
.keluarga-head{ margin-bottom: 18px; }

.keluarga-stack{
  padding-top: 10px;
  padding-bottom: calc(var(--stackGap) * 0.55); /* same idea as orange track */
}

/* make Aktiviti section wider */
.keluarga-zone{
  background: transparent;
  padding: 70px 0 90px;
}
.keluarga-zone .container{
  width: min(1280px, 94%);
}

/* stack area */
.keluarga-stack{
  padding-top: 10px;
  padding-bottom: calc(var(--stackGap) * 0.55);
}
/* Make Aktiviti Keluarga cards wider */
.keluarga-wrap{
  width: min(1240px, 94%);
}
/* sticky stack card — solid brand purple, no glassmorphism */
.video-card{
  --lift: 0;
  position: sticky;
  top: var(--stickyTop);

  background: var(--purple);
  border: 1px solid rgba(255,255,255,.12);

  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  overflow: hidden;

  z-index: calc(10 + var(--i));
  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));
  will-change: transform;
}

.video-card + .video-card{
  margin-top: var(--stackGap);
}

.video-card__top{
  padding: 18px 20px 16px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.video-top-left{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.video-pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  font-weight:700;
  font-size: 13px;
  flex: 0 0 auto;
}

/* text styling */
.video-text h3{
  margin: 0;
  color:#fff;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 28px;
  letter-spacing:-.02em;
}

.video-sub{
  margin: 8px 0 12px;
  color: rgba(255,255,255,.92);
  line-height: 1.65;
  max-width: 70ch;
  font-size: 14.5px;
}

.video-points{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.90);
  line-height: 1.7;
  font-size: 13.5px;
}
.video-points li{ margin: 5px 0; }

.video-note{
  margin: 10px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 12.5px;
  line-height: 1.6;
}

/* video fills container */
.video-wrap{
  width:100%;
  height: 600px;               /* increased height */
  background: rgba(0,0,0,.25);

}

/* sharp edges for video */
.video-wrap video{
  width:100%;
  height: 100%;
  object-fit: cover;
  display:block;
  border-radius: 0;
}

/* Style extra text under title */
.video-desc{
  margin: 8px 0 0;
  color: rgba(255,255,255,.90);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 72ch;
}
/* mobile: disable sticky stacking */
@media (max-width: 980px){
  .video-card{
    position: relative;
    top: auto;
    transform: none !important;
  }
  .video-card + .video-card{ margin-top: 14px; }
  .keluarga-stack{ padding-bottom: 0; }

  .video-wrap{ height: 340px; } /* mobile height */
  .video-text h3{ font-size: 22px; }
}
/* ===============================
   EAST MALAYSIA MAP + COUNTERS
================================= */
.eastmy-stats{
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;

  /* Dark premium background (still fits MyPath purple vibe) */
  background: radial-gradient(1200px 600px at 20% 20%, rgba(246,166,2,.20), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(112,48,159,.35), transparent 55%),
              linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(0,0,0,1) 100%);
}

.eastmy__inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}

.eastmy__mapCard{
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
  padding: clamp(16px, 2.2vw, 26px);
}

.eastmy__mapCard img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.eastmy__mapNote{
  margin-top: 12px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  text-align: center;
}

.eastmy__content{
  color: #fff;
}

.eastmy__title{
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.eastmy__desc{
  margin: 0 0 22px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
}

.eastmy__stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.eastmy__stat{
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px 14px 12px;
}

.eastmy__num{
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.eastmy__suffix{
  color: var(--orange);
  margin-left: 2px;
}

.eastmy__label{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.eastmy__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Secondary ghost button — dark section context */
.btn--ghost{
  background: var(--color-purple);
  border: 2px solid #fff;
  color: var(--color-white);
}
.btn--ghost:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 980px){
  .eastmy__inner{
    grid-template-columns: 1fr;
  }
  .eastmy__stats{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px){
  .eastmy__stats{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Tentang MyPath (scroll typewriter) + FAQ accordion
   ========================================================= */
.about-mypath{
  padding: clamp(54px, 8vw, 96px) 0;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(246,166,2,.28), transparent 60%),
    radial-gradient(900px 520px at 12% 20%, rgba(112,48,159,.32), transparent 55%),
    linear-gradient(180deg, var(--color-dark-violet) 0%, #1d1038 100%);
}

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

.about-mypath__brand{
  display:grid;
  place-items:center;
  gap:10px;
  margin-bottom: 14px;
}
.about-mypath__logo{height: 54px; width:auto;}
.about-mypath__tag{
  color: rgba(255,255,255,.92);
  font-weight: 600;
  letter-spacing: .01em;
}

.about-mypath__license{
  margin: 16px 0 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.7;
}

.typewrite{font-weight: 700;}
.typewrite__cursor{
  display: inline-block;
  margin-left: 2px;
  opacity: .9;
  animation: twBlink 1s step-end infinite;
}
@keyframes twBlink{ 0%, 50%{opacity:1} 51%, 100%{opacity:0} }

.about-mypath__copy{
  margin: 22px auto 0;
  color: rgba(255,255,255,.86);
  font-weight: 500;
  line-height: 1.9;
}
.about-mypath__copy p{margin: 14px 0;}
.about-mypath__actions{margin-top: 22px; display:flex; justify-content:center;}

.faq{
  padding: clamp(46px, 6vw, 84px) 0;
  background: #ffffff;
}

.faq__head{ text-align: center; margin-bottom: 18px; }
.faq__title{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0;
  letter-spacing: -.02em;
}
.faq__subtitle{
  margin: 6px 0 0;
  font-weight: 700;
  opacity: .75;
}

.faq__list{
  width: min(860px, 100%);
  margin: 26px auto 0;
  display:grid;
  gap: 12px;
}

.faq-item{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.faq-q{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-q__text{ font-weight: 700; font-size: 14.5px; }

.faq-q__icon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--purple);
  background: rgba(112,48,159,.06);
}

.faq-a{ padding: 0 16px 16px; color: rgba(0,0,0,.78); line-height: 1.85; }
.faq-a p{margin: 10px 0;}
.faq-a ul, .faq-a ol{margin: 10px 0 0 18px;}
.faq-a li{margin: 6px 0;}

.faq-item.is-open .faq-q__icon{
  background: rgba(246,166,2,.14);
  border-color: rgba(246,166,2,.35);
  color: var(--color-orange);
}
/* =========================
   SENARAI KERJA PAGE
   HERO CAROUSEL (jobs-hero)
   ========================= */

.page-jobs .jobs-hero{
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}

/* slides sit behind everything */
.page-jobs .jobs-hero__slides{
  position: absolute;
  inset: 0;
}

/* each slide must be absolute, otherwise it stacks vertically */
.page-jobs .jobs-hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.page-jobs .jobs-hero__slide.is-active{
  opacity: 1;
}

.page-jobs .jobs-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay for readable text */
.page-jobs .jobs-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.10) 100%
  );
  pointer-events: none;
}

/* text on top */
.page-jobs .jobs-hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 56px;
  color: #fff;
}

.page-jobs .jobs-hero__tag{
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 600;
}

.page-jobs .jobs-hero__title{
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 18px 0 14px;
  max-width: 18ch;
}

.page-jobs .jobs-hero__desc{
  margin: 0;
  max-width: 70ch;
  opacity: .92;
  line-height: 1.85;
  font-size: 16px;
}

.page-jobs .jobs-hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* arrows */
.page-jobs .jobs-hero__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:52px;
  height:52px;
  border-radius:999px;

  display:grid;
  place-items:center;

  border:1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.22);
  color:#fff;

  cursor:pointer;
  z-index: 6;              /* above overlay + image */
  pointer-events:auto;     /* clickable */
  backdrop-filter: blur(8px);
}
/* left + right placement */
.jobs-hero__nav--prev{ left:18px; }
.jobs-hero__nav--next{ right:18px; }

/* hover */
.jobs-hero__nav:hover{
  background: rgba(0,0,0,.35);
  transform: translateY(-50%) scale(1.03);
}

.page-jobs .jobs-hero__nav--prev{ left: 18px; }
.page-jobs .jobs-hero__nav--next{ right: 18px; }

/* dots */
.page-jobs .jobs-hero__dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.14);
}

.page-jobs .jobs-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.page-jobs .jobs-dot.is-active{
  background: var(--orange);
  border-color: rgba(246,166,2,.55);
}
/* === HERO ARROWS: force correct sides === */
.page-jobs .jobs-hero__nav{
  left: auto !important;
  right: auto !important;
}

.page-jobs .jobs-hero__nav--prev{
  left: 18px !important;
  right: auto !important;
}

.page-jobs .jobs-hero__nav--next{
  right: 18px !important;
  left: auto !important;
}

/* mobile */
@media (max-width: 980px){
  .page-jobs .jobs-hero__nav{ display:none; }
  .page-jobs .jobs-hero__title{ font-size: clamp(34px, 8vw, 54px); }
  .page-jobs .jobs-hero__desc{ font-size: 14.5px; }
}

/* ===== JOBS STACK (Senarai Kerja) ===== */
.jobs-stack{
  padding: 54px 0 70px;
  background:#fff;
}

.jobs-stack__track{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding-bottom: calc(var(--stackGap) * 0.55);
}

.jobs-card{
  --lift: 0;

  position: sticky;
  top: var(--stickyTop);

  background:#fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  overflow: hidden;

  z-index: calc(10 + var(--i));
  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));
  will-change: transform;
}

.jobs-card + .jobs-card{
  margin-top: var(--stackGap);
}

.jobs-card__head{
  padding: 16px 16px 10px;
  display:flex;
  align-items:center;
  gap:10px;
}

.jobs-card__num{
  width:30px;height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  font-weight:700;
  font-size:13px;
}

.jobs-card__title{
  margin:0;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:20px;
  letter-spacing:-.02em;
}

.jobs-card__body{
  padding: 0 16px 16px;
  color: rgba(0,0,0,.78);
  line-height: 1.75;
  font-size: 14px;
}

.jobs-card__body ul{ margin: 10px 0 0; padding-left: 18px; }
.jobs-card__body li{ margin: 6px 0; }

@media (max-width: 980px){
  .jobs-card{
    position: relative;
    top: auto;
    transform: none !important;
  }
  .jobs-card + .jobs-card{ margin-top: 14px; }
  .jobs-stack__track{ padding-bottom: 0; }
}
/* ===== Maklumat Sektor: light purple background ===== */
.jobs-stack{
  background: linear-gradient(180deg, #f6f1ff 0%, #efe6ff 55%, #e7dbff 100%);
  padding: 64px 0 86px;
}

/* make the track a bit wider */
.jobs-stack__track{
  width: min(1180px, 94%);
  margin: 0 auto;
  padding-bottom: calc(var(--stackGap) * 0.55);
}

/* ===== Bigger, roomier cards ===== */
.jobs-card{
  background: rgba(184,184,184,.35); /* light gray w/ opacity */
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;               /* small radius like you want */
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  overflow: hidden;

  /* make the card feel larger */
  min-height: 220px;
}

/* more breathing room */
.jobs-card__head{
  padding: 20px 22px 12px;
  gap: 12px;
}

.jobs-card__body{
  padding: 0 22px 22px;  /* <- this is the main fix */
  font-size: 15px;       /* slightly bigger text */
  line-height: 1.85;
}

/* nicer bullet spacing */
.jobs-card__body ul{
  margin: 12px 0 0;
  padding-left: 20px;
}
.jobs-card__body li{
  margin: 8px 0;
}

/* optional: make titles slightly bigger */
.jobs-card__title{
  font-size: 22px;
}
/* =========================
   TENTANG MYPATH (about page)
   Add AFTER your global styles.css
   ========================= */

:root{
  --t-bg: #631465;         /* dark violet bg — maps to color-dark-violet */
  --t-surface: rgba(255,255,255,.06);
  --t-surface-2: rgba(255,255,255,.08);
  --t-border: rgba(255,255,255,.10);
  --t-text: rgba(255,255,255,.92);
  --t-muted: rgba(255,255,255,.72);

  --t-orange: #f6a602;
  --t-purple: #70309f;

  --t-radius: 18px;
  --t-shadow: 0 18px 40px rgba(0,0,0,.35);
  --t-shadow-soft: 0 10px 28px rgba(0,0,0,.25);

  --t-max: 1160px;
}

/* Base / page wrapper */
.tentang-page{
  background: var(--t-bg);
  color: var(--t-text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.tentang-wrap{ overflow: hidden; }

.tentang-page .container{
  max-width: var(--t-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER OVERRIDE (make it white)
   ========================= */
.tentang-page .header{
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.tentang-page .header .container{
  max-width: 1200px; /* adjust if your site uses another */
}
/* MAIN: this is what makes it “tall” like homepage */
.tentang-page .header__inner{
  min-height: 70px;            /* ← increase this if still short */
  padding: 13px 0;             /* adds breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tentang-page .nav__link{
  color: rgba(0,0,0,.72) !important;
}

.tentang-page .nav__link:hover{
  color: rgba(0,0,0,.92) !important;
}

.tentang-page .nav__link.active{
  background: rgba(246,166,2,.14) !important;
  color: var(--color-dark-violet) !important;
  border-radius: 999px;
  padding: 10px 14px;
}

.tentang-page .icon-btn{
  border: 1px solid rgba(0,0,0,.10) !important;
  background: rgba(0,0,0,.03) !important;
}

.tentang-page .hamburger span{
  background: rgba(0,0,0,.75) !important;
}

/* =========================
   HERO
   ========================= */
.t-hero{
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: 120px 0 70px;
  background:
    radial-gradient(800px 500px at 18% 22%, rgba(112,48,159,.48), transparent 60%),
    radial-gradient(700px 520px at 85% 25%, rgba(246,166,2,.34), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.82));
}

.t-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    url("img/hero-1.png") center/cover no-repeat;
  opacity:.20;
  filter: saturate(1.05) contrast(1.05);
}

.t-hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.90));
}

.t-hero__inner{
  position: relative;
  z-index: 1;
  width: min(860px, 92vw);
  text-align: center;
  padding-top: 30px;
}

.t-breadcrumb{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.t-hero__title{
  margin: 18px 0 12px;
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: .95;
}

.t-hero__title .accent{
  color: var(--color-orange);
}

.t-hero__subtitle{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.75;
}

.t-hero__cta{
  display:flex;
  justify-content:center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Buttons (if your global has btn already, this will still work) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  will-change: transform;
}

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

.btn--primary{
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 10px 22px rgba(246,166,2,.25);
}

.btn--primary:hover{
  background: var(--color-purple);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(112,48,159,.30);
}

.btn--ghost{
  background: var(--color-purple);
  border: 2px solid #fff;
  color: var(--color-white);
}

.btn--ghost:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}

/* =========================
   ABOUT SECTION
   ========================= */
.t-section{
  padding: 62px 0;
  background: #ffffff;
  color: var(--color-dark-violet);
}

.t-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 26px;
  align-items: start;
}

.t-card{
  background: linear-gradient(180deg, rgba(17,17,22,.96), rgba(12,12,16,.96));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--t-radius);
  box-shadow: var(--t-shadow);
  color: var(--t-text);
  position: relative;
  overflow: hidden;
}

.t-card--pad{ padding: 22px; }

.t-kicker{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}

.t-kicker .dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--t-purple);
  box-shadow: 0 0 0 6px rgba(112,48,159,.15);
}

.t-h2{
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.04;
  margin: 0 0 10px;
}

.t-p{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.8;
}

.t-license{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(246,166,2,.20);
  background: rgba(246,166,2,.08);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.6;
}

/* split layout inside card */
.t-split{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

/* Skills */
.t-skill{ margin-top: 12px; }
.t-skill__row{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.86);
}
.t-skill__row strong{ font-weight: 700; }

.t-bar{
  height: 10px;
  border-radius: 999px;
  margin-top: 8px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.t-bar > span{
  display:block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--t-purple), var(--t-orange));
  transition: width .9s ease;
}

/* Stats (fix number size + alignment) */
.t-stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.t-stat{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
  min-height: 110px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}

.t-stat__num{
  margin: 0;
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: 700;
  font-size: 40px;         /* consistent */
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.96);
}

.t-stat__label{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

/* Right media */
.t-media{
  position: relative;
  border-radius: var(--t-radius);
  overflow: hidden;
  box-shadow: var(--t-shadow-soft);
  border: 1px solid rgba(0,0,0,.10);
  background: var(--color-dark-violet);
}

.t-media img{
  display:block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.t-media--ratio{
  aspect-ratio: 4 / 5;
}

/* =========================
   CTA video banner
   ========================= */
.t-cta{
  padding: 56px 0 64px;
  background: radial-gradient(900px 500px at 70% 40%, rgba(112,48,159,.18), transparent 60%),
              radial-gradient(900px 520px at 25% 50%, rgba(246,166,2,.16), transparent 60%),
              var(--color-dark-violet);
}

.t-cta__panel{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--t-shadow);
  min-height: 240px;
  background: var(--color-dark-violet);
}

.t-cta__panel video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.t-cta__panel::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35));
}

.t-cta__content{
  position: relative;
  z-index: 1;
  padding: 26px;
  max-width: 780px;
}

.t-cta__title{
  margin: 0 0 8px;
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.05;
}

.t-cta__desc{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-size: 14px;
}

/* =========================
   FAQ
   ========================= */
.t-faq{
  padding: 64px 0 80px;
  background: #FFFFFF;
}

.t-faq .t-h2{ margin-top: 6px; color: var(--color-purple); }
.t-faq .t-kicker{ color: var(--color-purple); }
.t-faq .t-kicker .dot{ box-shadow: 0 0 0 6px rgba(112,48,159,.12); }
.t-faq .t-p{ color: var(--color-dark-violet); }

.faq__wrap{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}

.faq__item{
  border: 1px solid rgba(112,48,159,.20);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.faq__q{
  width:100%;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  color: var(--color-purple);
  border: 0;
  cursor:pointer;
  font-weight: 600;
}

.faq__icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(112,48,159,.10);
  border: 1px solid rgba(112,48,159,.22);
  color: #70309f;
  flex: 0 0 auto;
}

.faq__a{
  display:none;
  padding: 0 16px 16px;
  color: var(--color-dark-violet);
  line-height: 1.8;
  font-size: 14px;
}

.faq__item.is-open .faq__a{ display:block; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .t-grid{ grid-template-columns: 1fr; }
  .t-media--ratio{ aspect-ratio: 16 / 10; }
  .t-split{ grid-template-columns: 1fr; }
  .t-stats{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .t-hero{ min-height: 78vh; padding: 110px 0 56px; }
  .t-hero__cta{ gap: 10px; }
  .t-card--pad{ padding: 16px; }
  .t-h2{ font-size: 28px; }
  .t-cta__title{ font-size: 28px; }
  .t-stats{ grid-template-columns: 1fr; }
}
/* =========================
   HUBUNGI KAMI (Contact / Apply)
   ========================= */

.page-contact{
  background: #fff;
}

/* HERO */
.page-contact .contact-hero{
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: var(--color-dark-violet);
}

.page-contact .contact-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 35%, rgba(246,166,2,.22), transparent 60%),
    radial-gradient(900px 520px at 78% 28%, rgba(112,48,159,.24), transparent 55%),
    url("images/hero-contact.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.page-contact .contact-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.35) 52%, rgba(0,0,0,.15) 100%);
}

.page-contact .contact-hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 76px 0 56px;
}

.page-contact .contact-hero__tag{
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.page-contact .contact-hero__title{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 18px 0 14px;
  max-width: 18ch;
}

.page-contact .contact-hero__brand{
  color: var(--orange);
  text-shadow: 0 16px 42px rgba(246,166,2,.18);
}

.page-contact .contact-hero__desc{
  margin: 0;
  max-width: 72ch;
  opacity: .92;
  line-height: 1.9;
  font-size: 16px;
}

.page-contact .contact-hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.page-contact .contact-hero__chips{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 980px;
}

.page-contact .contact-chip{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  padding: 14px 14px 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.20);
}

.page-contact .contact-chip__top{
  font-size: 12px;
  opacity: .9;
  font-weight: 800;
}

.page-contact .contact-chip__big{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 18px;
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.page-contact .contact-chip__sub{
  margin-top: 6px;
  font-size: 12.5px;
  opacity: .88;
  line-height: 1.55;
}

/* SECTION BG */
.page-contact .contact-section{
  background: linear-gradient(180deg, #f6f1ff 0%, #efe6ff 55%, #e7dbff 100%);
  padding: 64px 0 92px;
}

.page-contact .contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

/* LEFT SIDE */
.page-contact .contact-side{
  display: grid;
  gap: 14px;
}

.page-contact .contact-side__card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  padding: 18px;
}

.page-contact .contact-side__card--glow{
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(246,166,2,.18), transparent 55%),
    radial-gradient(700px 240px at 95% 20%, rgba(112,48,159,.18), transparent 55%),
    #fff;
}

.page-contact .contact-side__title{
  margin: 0 0 6px;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: -.02em;
}

.page-contact .contact-side__desc{
  margin: 0 0 12px;
  color: rgba(0,0,0,.70);
  line-height: 1.75;
  font-size: 13.5px;
}

.page-contact .contact-methods{
  display: grid;
  gap: 10px;
}

.page-contact .contact-method{
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f7f7f9;
}

.page-contact a.contact-method:hover{
  transform: translateY(-1px);
  transition: transform .15s ease;
}

.page-contact .contact-method__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(112,48,159,.10);
  border: 1px solid rgba(112,48,159,.18);
  font-size: 18px;
}

.page-contact .contact-method__label{
  font-size: 12px;
  font-weight: 900;
  opacity: .75;
}

.page-contact .contact-method__value{
  font-weight: 800;
  margin-top: 2px;
}

.page-contact .contact-mini{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(246,166,2,.22);
  background: rgba(246,166,2,.10);
  padding: 12px 12px;
  display: grid;
  gap: 6px;
}

.page-contact .contact-mini__badge{
  width: fit-content;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246,166,2,.20);
  border: 1px solid rgba(246,166,2,.26);
}

.page-contact .contact-mini__text{
  margin: 0;
  color: rgba(0,0,0,.80);
  line-height: 1.65;
  font-size: 13px;
}

.page-contact .contact-side__title2{
  margin: 0 0 10px;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 20px;
}

.page-contact .contact-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,.78);
  line-height: 1.8;
  font-size: 13.5px;
}
.page-contact .contact-list li{ margin: 6px 0; }

.page-contact .contact-badges{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-contact .contact-badge{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(112,48,159,.08);
  border: 1px solid rgba(112,48,159,.16);
  font-weight: 900;
  font-size: 12px;
}

/* RIGHT FORM */
.page-contact .contact-formWrap{
  display: grid;
  gap: 14px;
}

.page-contact .contact-formCard{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  overflow: hidden;
}

.page-contact .contact-formCard__head{
  padding: 18px 18px 12px;
  background:
    radial-gradient(700px 220px at 18% 0%, rgba(246,166,2,.18), transparent 55%),
    radial-gradient(700px 240px at 95% 25%, rgba(112,48,159,.18), transparent 55%),
    #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.page-contact .contact-formCard__title{
  margin: 0 0 6px;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 26px;
  letter-spacing: -.02em;
}

.page-contact .contact-formCard__subtitle{
  margin: 0;
  color: rgba(0,0,0,.70);
  line-height: 1.7;
  font-size: 13.5px;
}

.page-contact .contact-form{
  padding: 16px 18px 18px;
}

.page-contact .contact-block{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px;
  background: #f7f7f9;
  margin-top: 12px;
}

.page-contact .contact-block:first-child{ margin-top: 0; }

.page-contact .contact-block__title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.page-contact .contact-block__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(246,166,2,.14);
}
.page-contact .contact-block__dot--purple{
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(112,48,159,.14);
}
.page-contact .contact-block__dot--orange{
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(246,166,2,.14);
}

.page-contact .contact-fields{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-contact .contact-field{
  display: grid;
  gap: 6px;
}

.page-contact .contact-label{
  font-size: 12px;
  font-weight: 900;
  opacity: .85;
}

.page-contact .contact-req{
  color: var(--orange);
  font-weight: 900;
}

.page-contact .contact-input,
.page-contact .contact-textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
  background: #fff;
  font-size: 14px;
}

.page-contact .contact-input:focus,
.page-contact .contact-textarea:focus{
  border-color: rgba(112,48,159,.35);
  box-shadow: 0 0 0 4px rgba(112,48,159,.12);
}

.page-contact .contact-input--file{
  padding: 10px 10px;
}

.page-contact .contact-help{
  font-size: 12px;
  color: rgba(0,0,0,.65);
  line-height: 1.55;
}

.page-contact .contact-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.page-contact .contact-check{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
}

.page-contact .contact-check input{
  width: 16px;
  height: 16px;
}

.page-contact .contact-check--muted{
  border-radius: 14px;
  padding: 12px 12px;
  background: #f7f7f9;
}

.page-contact .contact-metaRow{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.page-contact .contact-count{
  font-weight: 900;
  font-size: 12px;
  color: rgba(0,0,0,.65);
}

.page-contact .contact-actions{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.page-contact .contact-actions__btns{
  display:flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.page-contact .contact-alert{
  min-height: 20px;
  font-size: 13px;
  font-weight: 800;
}

/* Note card */
.page-contact .contact-noteCard{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  padding: 16px;
}

.page-contact .contact-noteCard__title{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -.02em;
  font-weight: 900;
}

.page-contact .contact-noteCard__steps{
  display: grid;
  gap: 10px;
}

.page-contact .contact-step{
  display:flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 10px 10px;
}

.page-contact .contact-step__num{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(246,166,2,.18);
  border: 1px solid rgba(246,166,2,.28);
  font-weight: 900;
}

.page-contact .contact-step__text{
  font-weight: 700;
  color: rgba(0,0,0,.78);
  line-height: 1.55;
  font-size: 13.5px;
}

/* Responsive */
@media (max-width: 980px){
  .page-contact .contact-hero{ min-height: 680px; }
  .page-contact .contact-hero__chips{ grid-template-columns: 1fr; max-width: 520px; }
  .page-contact .contact-grid{ grid-template-columns: 1fr; }
  .page-contact .contact-fields{ grid-template-columns: 1fr; }
}
/* ===============================
   APS LICENSE STRIP (inside eastmy section)
================================= */
.eastmy__license{
  grid-column: 1 / -1; /* span across both columns */
  display: grid;
  grid-template-columns: 1fr 420px;  /* wider cert column */
  gap: 22px;
  align-items: center;              /* vertically center text beside cert */

  border-radius: 26px;
  padding: clamp(16px, 2.2vw, 22px);

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);

  margin-bottom: clamp(14px, 2vw, 18px);
}

.eastmy__licenseText{
  align-self: center;               /* keep left content in the middle */
  padding-right: 6px;
}

.eastmy__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);

  background: rgba(246,166,2,.14);
  border: 1px solid rgba(246,166,2,.30);
}

.eastmy__licenseTitle{
  margin: 10px 0 6px;
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.02em;
  color: #fff;
}

.eastmy__licenseDesc{
  margin: 0;
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.7;
}

.eastmy__licenseActions{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 12px;
}

.btn--sm{
  padding: 10px 14px;
  font-size: 13px;
}

.eastmy__licenseNote{
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.eastmy__licenseMedia{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);

  display: grid;
  place-items: center;              /* center the cert inside the box */
  padding: 14px;                    /* like screenshot 2 spacing */
}

.eastmy__licenseMedia img{
  width: 100%;
  height: 300px;                    /* taller so you can read it */
  object-fit: contain;              /* IMPORTANT: show full cert (no crop) */
  display:block;
}

/* Responsive: stack licence block on mobile */
@media (max-width: 980px){
  .eastmy__license{
    grid-template-columns: 1fr;
  }
  .eastmy__licenseMedia img{
    height: 360px;
  }
}
/* REMOVE the annoying side "light/glow" completely */
.marquee::before,
.marquee::after,
.testi-marquee::before,
.testi-marquee::after{
  content: none !important;
  display: none !important;
}
/* =========================================================
   KATA VIDEO — FULL-BLEED STICKY VIDEO BG (Kata-Kata Calon)
   (video stays, content on top, no white gap)
   ========================================================= */

.kata-video{
  /* full-bleed (break out of .container) */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* sticky video background (sits behind) */
.kata-video__bg{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* video covers viewport */
.kata-video__bgVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02); /* avoid edge slivers */
}

/* black overlay for readability */
.kata-video__shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.45) 35%,
    rgba(0,0,0,.65) 100%
  );
}

/* pull content up onto the sticky bg (removes the "gap") */
.kata-video__content{
  position: relative;
  z-index: 2;

  margin-top: -100vh; /* key: content sits on top of the sticky bg */
  padding: clamp(54px, 6vw, 90px) 0 clamp(44px, 6vw, 86px);
}

/* make the section heading readable on video */
.kata-video .h2,
.kata-video .muted{
  color: #fff;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* keep your testimonial cards looking clean */
.kata-video .testi{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

/* kata-video: secondary button inherits base style; enforce orange hover */
.kata-video .btn--outline:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}

/* =========================================================
   WCD ADDITIONS — v2 (May 2026)
   New components: trust bar, jawatan tiles, audio player,
   sticky WhatsApp, subscribe, final CTA, recruiter cards.
   Scroll speed fix: html scroll-behavior set to auto;
   custom JS easing used instead (see script.js).
   ========================================================= */

/* --- Scroll speed fix: disable browser native smooth scroll ---
   The custom JS easing (1 200 ms) gives better control. */
html { scroll-behavior: auto !important; }

/* --- Screen-reader only utility --- */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================================================
   STICKY WHATSAPP BUTTON
   ========================================================= */
.wa-sticky{
  position:fixed;
  bottom:24px;
  right:20px;
  z-index:200;
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--color-orange);
  color:var(--color-white);
  border-radius:999px;
  padding:12px 20px 12px 14px;
  font-weight:600;
  font-size:14px;
  box-shadow:0 8px 28px rgba(246,166,2,.35);
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.wa-sticky:hover{
  background:var(--color-purple);
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(112,48,159,.45);
}
.wa-sticky__icon{
  width:22px;
  height:22px;
  flex-shrink:0;
}
/* Hide label on very small screens */
@media(max-width:400px){
  .wa-sticky__label{ display:none }
  .wa-sticky{ padding:12px }
}

/* =========================================================
   WHATSAPP BUTTON VARIANT (header + cards)
   ========================================================= */
.btn--wa{
  background:var(--color-orange);
  color:var(--color-white);
  border-color:transparent;
}
.btn--wa:hover{ background:var(--color-purple); color:var(--color-white); }
.header__wa{ display:none }
@media(min-width:900px){ .header__wa{ display:inline-flex } }

/* =========================================================
   TRUST BAR — WCD §4.1.3
   ========================================================= */
.trust-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  margin-top:28px;
}
.trust-bar__item{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:600;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding:6px 14px;
  color:#fff;
}
.trust-bar__check{
  color:var(--color-orange);
  font-size:15px;
  line-height:1;
}

/* Mobile: stack trust bar items */
@media(max-width:600px){
  .trust-bar{ flex-direction:column; align-items:flex-start; gap:8px }
  .trust-bar__item{ font-size:12px }
}

/* Hero sub-headline responsive versions */
.hero__desc--mobile{ display:none }
@media(max-width:600px){
  .hero__desc--desktop{ display:none }
  .hero__desc--mobile{ display:block }
}

/* =========================================================
   JAWATAN KOSONG SECTION — WCD §4.1.5 & §4.1.6
   ========================================================= */
.jawatan-kosong{
  padding:clamp(56px,7vw,96px) 0;
  background:var(--bg);
}
.jawatan-kosong__head{
  text-align:center;
  margin-bottom:32px;
}
.jawatan-kosong__sub--desktop{ display:block }
.jawatan-kosong__sub--mobile{ display:none }
@media(max-width:600px){
  .jawatan-kosong__sub--desktop{ display:none }
  .jawatan-kosong__sub--mobile{ display:block }
}

.chips-wrap{
  margin-bottom:24px;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  padding:8px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:transparent;
  font-size:13px;
  font-weight:500;
  cursor:pointer;
  transition:background .15s, border-color .15s, color .15s;
}
.chip:hover{ background:rgba(112,48,159,.08) }
.chip.is-active{
  background:var(--purple);
  color:#fff;
  border-color:var(--purple);
}

/* Job tiles grid */
.jawatan-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px,1fr));
  gap:24px;
  margin-bottom:36px;
}
@media(max-width:600px){
  .jawatan-grid{ grid-template-columns:1fr }
}

.jawatan-tile{
  border-radius:var(--radius);
  border:1px solid var(--line);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}
.jawatan-tile:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 52px rgba(0,0,0,.13);
}
.jawatan-tile__img{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
}
.jawatan-tile__img img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.jawatan-tile__tag{
  position:absolute;
  top:10px; left:10px;
  background:var(--purple);
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:999px;
}
.jawatan-tile__body{
  padding:18px;
}
.jawatan-tile__title{
  font-size:17px;
  font-weight:700;
  margin:0 0 6px;
}
.jawatan-tile__loc{
  font-size:13px;
  color:var(--muted);
  margin:0 0 8px;
  display:flex;
  align-items:center;
  gap:6px;
}
.jawatan-tile__loc::before{
  content:'';
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#70309f;
  flex-shrink:0;
}
.jawatan-tile__gaji{
  font-size:14px;
  font-weight:600;
  color:var(--purple);
  margin:0 0 14px;
}
.jawatan-tile__gaji small{
  font-weight:400;
  color:var(--muted);
}
.jawatan-tile__actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.jawatan-kosong__cta{
  text-align:center;
}

/* =========================================================
   AUDIO MOCK-UP (compact — on job tiles)
   WCD §4.1.7 client feedback: visual placeholder for audio
   ========================================================= */
.audio-mockup{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(112,48,159,.06);
  border:1px solid rgba(112,48,159,.15);
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:14px;
}
.audio-mockup__play{
  flex-shrink:0;
  width:34px; height:34px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  border:none;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:12px;
  transition:opacity .15s;
}
.audio-mockup__play:hover{ opacity:.85 }
.audio-mockup__track{
  flex:1;
  display:flex;
  align-items:flex-end;
  gap:2px;
  height:28px;
}
.audio-mockup__bar{
  flex:1;
  background:rgba(112,48,159,.30);
  border-radius:2px;
  height:calc(var(--h, 50%));
  min-height:4px;
  transition:background .15s;
}
.audio-mockup__time{
  flex-shrink:0;
  font-size:11px;
  color:var(--muted);
  white-space:nowrap;
}

/* =========================================================
   FULL AUDIO PLAYER MOCK-UP (featured testimonials)
   WCD client feedback: clear visual placeholder for audio
   ========================================================= */
.audio-note{
  background:rgba(246,166,2,.10);
  border:1px solid rgba(246,166,2,.30);
  border-radius:10px;
  padding:12px 16px;
  font-size:13px;
  margin-bottom:28px;
  color:var(--text);
}

.audio-player{
  margin-top:14px;
  background:rgba(112,48,159,.05);
  border:1px solid rgba(112,48,159,.15);
  border-radius:14px;
  padding:14px 16px;
}
.audio-player__btn{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--purple);
  color:#fff;
  border:none;
  cursor:pointer;
  display:inline-grid;
  place-items:center;
  font-size:14px;
  vertical-align:middle;
  margin-right:12px;
  transition:opacity .15s;
}
.audio-player__btn:hover{ opacity:.85 }
.audio-player__progress{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:12px 0 8px;
}
.audio-player__bar{
  height:4px;
  border-radius:4px;
  background:rgba(112,48,159,.15);
  position:relative;
  overflow:hidden;
}
.audio-player__fill{
  position:absolute;
  left:0; top:0; bottom:0;
  width:0;
  background:var(--purple);
  border-radius:4px;
  transition:width .1s linear;
}
.audio-player__waves{
  display:flex;
  align-items:flex-end;
  gap:2px;
  height:32px;
}
.audio-player__waves span{
  flex:1;
  background:rgba(112,48,159,.25);
  border-radius:2px;
  height:calc(var(--h,50%));
  min-height:4px;
}
.audio-player__time{
  font-size:12px;
  color:var(--muted);
  display:block;
  margin-top:4px;
}
.audio-player__label{
  font-size:11px;
  color:var(--muted);
  margin:8px 0 0;
  border-top:1px solid rgba(0,0,0,.07);
  padding-top:8px;
}

/* =========================================================
   TESTIMONI CARD UPDATES (name + audio wrap)
   ========================================================= */
.tm-name{
  font-size:12px;
  font-weight:600;
  color:var(--purple);
  margin:8px 0 4px;
}
.tm-audio-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
}
.tm-duration{
  font-size:11px;
  color:var(--muted);
}

/* =========================================================
   SUBSCRIBE SECTION — WCD §4.1.9
   ========================================================= */
.subscribe{
  padding:clamp(56px,7vw,96px) 0;
  background:var(--purple);
}
.subscribe__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:20px;
}
.subscribe .h2,
.subscribe .muted{
  color:#fff;
}
.subscribe__text{ max-width:52ch }
.subscribe__form{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  width:100%;
  max-width:480px;
}
.subscribe__input{
  flex:1;
  min-width:200px;
  padding:13px 18px;
  border-radius:999px;
  border:none;
  font-size:14px;
  font-family:inherit;
  outline:none;
}
.subscribe__btn{ white-space:nowrap }
.subscribe__pdpa{
  font-size:12px;
  color:rgba(255,255,255,.70);
  max-width:46ch;
  margin:0;
  line-height:1.7;
}
.subscribe__pdpa a{
  color:#fff;
  text-decoration:underline;
}

/* =========================================================
   FINAL CTA / HUBUNGI KAMI — WCD §4.1.10 + §4.6
   ========================================================= */
.final-cta{
  padding:clamp(56px,7vw,96px) 0;
  background:var(--color-purple);
  color:var(--color-white);
}
.final-cta__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:36px;
}
.final-cta__title{ color:#fff }
.final-cta__desc{
  max-width:56ch;
  opacity:.85;
  line-height:1.8;
  margin:0;
}
.final-cta__alt{ margin-top:8px }
.final-cta__alt p{
  font-size:14px;
  color:rgba(255,255,255,.60);
  margin:0 0 12px;
}

/* Recruiter cards — WCD §4.6.2 */
.recruiter-cards{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
  width:100%;
}
.recruiter-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:22px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  min-width:220px;
  max-width:280px;
  text-align:center;
  transition:background .2s;
}
.recruiter-card:hover{ background:rgba(255,255,255,.10) }
.recruiter-card__info{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:14px;
  color:rgba(255,255,255,.85);
}
.recruiter-card__info strong{
  font-size:18px;
  color:#fff;
}

/* =========================================================
   KELUARGA CTA BUTTON
   ========================================================= */
.keluarga-cta{
  text-align:center;
  margin-top:32px;
}
/* .keluarga-cta secondary button — inherits base purple + white-border style */

/* =========================================================
   MOBILE RESPONSIVE — global fixes
   ========================================================= */
@media(max-width:760px){
  /* Nav: mobile overlay */
  .nav{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    z-index:49;
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
  }
  body.nav-open .nav{
    opacity:1;
    pointer-events:auto;
  }
  .hamburger{ display:grid }

  /* Hero */
  .hero__title{ font-size:clamp(38px,11vw,52px) }
  .hero__cta{ flex-direction:column }
  .hero__cta .btn{ width:100%; justify-content:center }

  /* Trust bar */
  .trust-bar{ margin-top:20px }

  /* Jawatan grid */
  .jawatan-grid{ gap:16px }

  /* Recruiter cards */
  .recruiter-cards{ flex-direction:column; align-items:center }
  .recruiter-card{ width:100%; max-width:100% }

  /* Subscribe form */
  .subscribe__form{ flex-direction:column }
  .subscribe__input{ width:100% }

  /* Sector grid: single column on mobile */
  .sector-grid{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:480px){
  /* Smaller hero */
  .hero__title{ font-size:clamp(34px,12vw,46px) }
  /* Audio mockup: hide waveform on tiny screens */
  .audio-mockup__track{ display:none }
}

/* =========================================================
   MOBILE-FIRST HARDENING
   Touch targets, overflow guards, audio/media fixes.
   ========================================================= */

/* Minimum 44px touch targets for all interactive elements */
@media(max-width:760px){
  .btn{
    min-height:44px;
    padding:11px 18px;
  }
  .btn--sm{
    min-height:40px;
    padding:9px 14px;
  }
  .nav__link{
    min-height:44px;
    display:flex;
    align-items:center;
  }
  .hamburger{
    width:44px; height:44px;
  }
  .icon-btn{
    width:44px; height:44px;
  }
  /* Footer links: bigger tap area */
  .footer__links a{
    padding:6px 0;
    display:inline-block;
  }
  /* Ensure filter pills are tappable */
  .t-filter__pill{
    min-height:40px;
    display:inline-flex;
    align-items:center;
  }
}

/* Prevent any stray fixed-width element from overflowing on tiny screens */
@media(max-width:400px){
  .contact-chip,
  .hk-hero__chip{
    min-width:0;
    width:100%;
  }
  /* Jobs hero: keep text readable */
  .jobs-hero__overlay{
    padding: 14px;
  }
}

/* Smooth inertia scrolling on iOS for scrollable containers */
.marquee,
.t-wave__marquee,
.testi-marquee .marquee{
  -webkit-overflow-scrolling: touch;
}

/* Native HTML5 audio: full-width and styled consistently on mobile */
audio{
  width:100%;
  border-radius:8px;
  accent-color:#70309f;
}

/* Prevent long words/URLs from breaking layout in cards and body text */
.testimonial-card__quote,
.jd-body p,
.ak-parents__body,
.footer__text{
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ================================================
   MOBILE CRITICAL PATCH — Round 2
   Priority overrides for hamburger, footer, testi-marquee
   ================================================ */

/* ── Hamburger span transitions ── */
.hamburger{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hamburger span{
  transition: transform .22s ease, opacity .18s ease;
  transform-origin: center;
  width: 20px;
}

@media (max-width: 980px){
  .hamburger{ display: flex !important; }
}

/* Hamburger → X when menu open */
body.nav-open .hamburger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2){ opacity: 0; transform: scaleX(0); }
body.nav-open .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ── Nav dropdown — single authoritative open state ── */
body.nav-open .nav{
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 68px !important;
  left: 12px !important;
  right: 12px !important;
  bottom: auto !important;
  width: auto !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  border-radius: 20px !important;
  padding: 14px !important;
  gap: 4px !important;
  z-index: 200 !important;
  box-shadow: 0 12px 48px rgba(0,0,0,.22) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  inset: unset !important;
  top: 68px !important;
  left: 12px !important;
  right: 12px !important;
}

body.nav-open .nav__link{
  padding: 12px 14px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--color-dark-violet) !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  opacity: 1 !important;
}

body.nav-open .nav__link:hover,
body.nav-open .nav__link.active{
  background: rgba(112,48,159,.08) !important;
  color: var(--purple) !important;
}

/* ── Footer — dark-purple text on white bg ── */
.footer__address{
  color: rgba(99, 20, 101, .78) !important;
  font-style: normal;
  font-size: 0.82rem;
  margin-top: 8px;
  line-height: 1.7;
}
.footer__address a{
  color: var(--color-dark-violet) !important;
  text-decoration: underline;
}
.footer__address a:hover{ color: var(--color-orange) !important; }

/* Remove white gap before footer */
.footer{ margin-top: 0 !important; }
main > *:last-child{ margin-bottom: 0 !important; }

@media (max-width: 760px){
  .footer__inner{ gap: 24px !important; }
  .footer__cta{ align-items: stretch !important; }
  .footer__cta .btn{ width: 100% !important; justify-content: center !important; }
  .footer__small{ display: block; margin-top: 4px; }
}

/* ── Testi-marquee — solid background, no video ── */
.testi-marquee{
  background: var(--color-purple) !important;
  padding-top: 56px !important;
  padding-bottom: 48px !important;
}
.testi-marquee__bg{ display: none !important; }
.testi-marquee__content{
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative !important;
}

/* Testimonial inline cards — solid dark bg, force white text */
.testi-marquee article{
  color: rgba(255,255,255,.92) !important;
}
.testi-marquee article p,
.testi-marquee article span,
.testi-marquee article strong,
.testi-marquee article small {
  color: inherit !important;
}
.testi-marquee [style*="backdrop-filter"]{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 760px){
  .testi-marquee{ padding-top: 40px !important; padding-bottom: 32px !important; }
  .testi-marquee__head .h2{ font-size: clamp(1.5rem, 7vw, 2rem); }
  /* Center CTA button on mobile */
  .testi-marquee [style*="text-align:center"],
  .testi-marquee div[style*="text-align"]{
    text-align: center !important;
  }
}

/* ── Location text — replace emoji spacing fix ── */
.testimonial-card__loc svg,
.tm-loc-icon{
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  width: 12px;
  height: 12px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ================================================
   ROUND 3 PATCH — Hamburger visual, header z-index,
   kata-video solid background
   ================================================ */

/* ── Header: stays above all content on mobile ── */
.header { z-index: 100 !important; }

/* ── Hamburger: clean definitive visual ── */
.hamburger{
  display: none;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border: 1.5px solid rgba(0,0,0,.14) !important;
  background: #fff !important;
  border-radius: 10px !important;
  cursor: pointer;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span{
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--color-dark-violet) !important;
  border-radius: 2px !important;
  margin: 0 !important;
  transition: transform .22s ease, opacity .18s ease;
  transform-origin: center;
}
@media (max-width: 980px){
  .hamburger{ display: flex !important; }
}

/* ── kata-video: solid brand background, no video needed ── */
.kata-video{
  background: var(--color-purple) !important;
}
.kata-video__bg{ display: none !important; }
.kata-video__content{
  margin-top: 0 !important;
  padding-top: 56px !important;
  padding-bottom: 52px !important;
}
.kata-video .h2{
  color: #fff !important;
  text-shadow: none !important;
}
.kata-video .muted{
  color: rgba(255,255,255,.78) !important;
  text-shadow: none !important;
}
/* kata-video secondary button — base style + orange hover */
.kata-video .btn--outline:hover{
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
  border-color: #fff !important;
}

/* ===== Testi-marquee CTA button ===== */
.testi-marquee .btn--outline {
  background: var(--color-purple) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}
.testi-marquee .btn--outline:hover {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
  border-color: #fff !important;
}
@media (max-width: 768px) {
  .testi-marquee .btn--outline {
    display: block !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }
  /* ── Hide hero facts bar on mobile (all job detail pages) ── */
  .jd-facts[role="list"] { display: none !important; }
}


/* =====================================================
   Merged from styles2.css (2026-07-01)
   ===================================================== */

*{box-sizing:border-box}
html,body{height:100%}
html{
  background:#fff;
  transition: background-color 900ms ease;
}

html.is-purple{
  background:#70309f;
}

body{
  margin:0;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: transparent;
    transition: background-color 900ms ease; /* smooth change */

  overflow-x:hidden;
}
/* do NOT paint white behind the purple zone */
body.is-purple .sector-showcase{
  background: transparent !important;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

.h2{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:clamp(26px, 3vw, 36px);
  letter-spacing:-.02em;
  margin:0 0 10px;
}
.muted{color:var(--muted); margin:0; line-height:1.7}

/* =========================================================
   FULL-BLEED helper (forces 100vw even if wrapped by container)
   ========================================================= */
.full-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__logo{height:34px; width:auto}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  font-size:14px;
  opacity:.88;
  padding:10px 10px;
  border-radius:999px;
}
.nav__link:hover{opacity:1; background:rgba(112,48,159,.08)}
.nav__link.active{
  background:rgba(246,166,2,.16);
  opacity:1;
}

.header__right{display:flex; align-items:center; gap:10px}
.icon-btn{
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-dot{
  width:12px;height:12px;
  border-radius:999px;
  background:var(--purple);
  box-shadow:0 0 0 6px rgba(112,48,159,.12);
}

/* Hamburger */
.hamburger{
  display:none;
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:999px;
  cursor:pointer;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:var(--black);
  margin:5px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--color-orange);
  color:var(--color-white);
  transition:background .2s ease, transform .15s ease;
}
.btn--primary:hover{
  background:var(--color-purple);
  color:var(--color-white);
}
.btn--ghost{
  background: var(--color-purple);
  color: var(--color-white);
  border: 2px solid #fff;
  transition: background .2s ease, transform .15s ease;
}
.btn--ghost:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}
.btn--outline{
  background: var(--color-purple);
  color: var(--color-white);
  border: 2px solid #fff;
  transition: background .2s ease, transform .15s ease;
}
.btn--outline:hover{
  background: var(--color-orange);
  color: var(--color-white);
  border-color: #fff;
}
.btn--sm{padding:9px 14px; font-size:13px}

/* =========================================================
   HERO (FORCE FULL WIDTH + 100vh)
   ========================================================= */
.hero{
  position:relative;
  height:100vh;              /* requested */
  min-height:100vh;
  background:var(--black);
  overflow:hidden;

  /* force full width even if something wraps it */
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:var(--black);
  opacity:.48;
}
.hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:72px 0 56px;
  color:var(--white);
}
.hero__tag{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  width:fit-content;
}
.hero__title{
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:clamp(42px, 6vw, 72px);
  line-height:1.02;
  letter-spacing:-.03em;
  margin:18px 0 14px;
  max-width:16ch;
}
.hero__desc{
  margin:0;
  max-width:62ch;
  opacity:.92;
  line-height:1.8;
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.hero__stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:12px 14px;
  min-width:160px;
}
.stat__num{
  font-family:"League Spartan", system-ui, sans-serif;
  font-weight:700;
  font-size:18px;
}
.stat__label{
  font-size:13px;
  opacity:.9;
  margin-top:4px;
}

/* Page shell */
.page{
  margin-top:10px;
  padding-bottom:48px;
}
.page__shell{
  background:transparent;
  border:none;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
}

/* Sections */
.section{
  padding:44px 28px;
}
.section--tight{padding:22px 28px}
.section__head{margin-bottom:20px}
.section__foot{margin-top:18px; display:flex; justify-content:flex-end}

/* Chips */
.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  background:var(--white);
  cursor:pointer;
  font-size:13px;

  /* remove weird browser outline look */
  outline:none;
}
.chip:focus-visible{
  outline:2px solid rgba(112,48,159,.28);
  outline-offset:2px;
}
.chip.is-active{
  border-color:rgba(112,48,159,.35);
  background:rgba(112,48,159,.08);
}

/* =========================================================
   ORANGE STACK (FIXED: no see-through gap, reverse stacking, spacing)
   ========================================================= */
.orange-stack{
  padding:32px 0 36px; /* smaller bottom gap (fix huge whitespace) */
}
.orange-stack__card{
  width:min(1100px, 92%);
  margin:0 auto 18px;
}
.orange-stack__track{
  width:min(1100px, 92%);
  margin:0 auto;

  /* IMPORTANT: give room so last sticky card can "release"
     without crashing into the next section */
  padding-bottom: calc(var(--stackGap) * 0.55);
}

.orange-card{
  --lift: 0;
  --bg: #fff6e6;

  position: sticky;
  top: var(--stickyTop);

  background: var(--bg);              /* opaque (no see-through) */
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  padding: 18px 18px 16px;

  /* reverse stacking: later cards higher z-index */
  z-index: calc(10 + var(--i));

  /* cover each other cleanly */
  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));

  will-change: transform;
}

/* Scroll distance between cards (controls how long each card stays) */
.orange-card + .orange-card{
  margin-top: var(--stackGap);
}

/* card header */
.orange-card__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.orange-card__num{
  width:30px;height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  font-weight:700;
  font-size:13px;
}
.orange-card h3{
  margin:0;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:22px;
  letter-spacing:-.02em;
}
.orange-card p{
  margin:0 0 10px;
  line-height:1.75;
  color:rgba(0,0,0,.78);
  font-size:14px;
}
.orange-card ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
  font-size:13px;
  color:rgba(0,0,0,.82);
}
.orange-card li{margin:6px 0}

/* =========================================================
   Testimonials marquee (FULL WIDTH)
   ========================================================= */
.testi-marquee{
  padding:38px 0 26px;
}

/* full-bleed section */
.testi-marquee.full-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.marquee{
  position:relative;
  overflow:hidden;
  padding:18px 0;
}
.marquee__track{
  display:flex;
  gap:14px;
  width:max-content;
  animation: marquee-left 28s linear infinite;
}
.marquee--reverse .marquee__track{
  animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@keyframes marquee-right{
  0%{ transform: translateX(-50%); }
  100%{ transform: translateX(0); }
}

.tcard{
  width: 240px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}
.tcard__img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.tcard__body{
  padding:12px;
}
.tcard__text{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.55;
  color:rgba(0,0,0,.78);
  min-height: 42px;
}
.tcard__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 12px;
  border:1px solid rgba(112,48,159,.22);
  background:rgba(112,48,159,.08);
  font-weight:600;
  font-size:13px;
}
.tcard__dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--purple);
  box-shadow: 0 0 0 5px rgba(112,48,159,.12);
}

/* Jobs grid (if you still keep elsewhere) */
.jobs{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.job{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  transform:translateZ(0);
}
.job img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.job__body{padding:14px}
.job h3{
  margin:0 0 6px;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size:18px;
}
.job__meta{margin:0;color:var(--muted);font-size:13px}
.job__actions{display:flex; gap:10px; margin-top:12px}

/* Testimonials preview (old grid if you still use it) */
.testis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.testi{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.testi img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.testi__body{padding:14px}
.testi__quote{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:rgba(0,0,0,.82);
}
.testi__name{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

/* CTA block */
.cta{
  padding:0 28px 28px;
}
.cta__inner{
  border-radius:20px;
  border:1px solid rgba(112,48,159,.20);
  background: linear-gradient(135deg, rgba(112,48,159,.10), rgba(246,166,2,.10));
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cta__title{
  font-family:"League Spartan", system-ui, sans-serif;
  margin:0 0 6px;
  font-size:26px;
}
.cta__text{margin:0; color:var(--muted); line-height:1.7}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Footer */
.footer{
  background:var(--color-white);
  color:var(--color-dark-violet);
  padding:26px 0;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:18px;
  align-items:start;
}
.footer__logo{height:32px; width:auto}
.footer__text{margin:10px 0 0; opacity:.9; line-height:1.7; font-size:13px}
.footer__links{
  display:grid;
  gap:10px;
  font-size:13px;
  opacity:.92;
}
.footer__cta{display:flex; flex-direction:column; gap:10px; align-items:flex-start}
.footer__small{opacity:.75}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .hamburger{display:block}
  .jobs{grid-template-columns:1fr}
  .testis{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}

  /* Disable sticky stacking on mobile (smooth UX) */
  .orange-card{
    position:relative;
    top:auto;
    transform:none !important;
  }
  .orange-card + .orange-card{ margin-top: 14px; }
  .orange-stack__track{ padding-bottom: 0; }

  .hero{ height:100vh; min-height:100vh; }
}

@media (max-width: 520px){
  .section{padding:36px 18px}
  .section--tight{padding:18px}
  .hero__content{padding:62px 0 46px}
  .hero__title{max-width:18ch}
}

/* Mobile menu open state */
body.nav-open .nav{
  display:grid;
  position:fixed;
  inset:64px 12px auto 12px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  gap:8px;
  z-index:80;
  box-shadow:var(--shadow);
}
body.nav-open .nav__link{
  padding:12px 12px;
  border-radius:14px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation:none !important; }
  .orange-card{ transition:none !important; }
}
/* ===== FULL-WIDTH TESTIMONI MARQUEE ===== */
.testi-marquee{
  margin-top: 8px;               /* keep close after stack section */
  padding: 28px 0 34px;
  background: #fff;
}

.testi-marquee__head{
  margin-bottom: 14px;
}

.marquee{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.marquee__track{
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeLeft 26s linear infinite;
  padding-left: 14px;
  padding-right: 14px;
}

.marquee--slow .marquee__track{ animation-duration: 34s; }
.marquee--left .marquee__track{ animation-name: marqueeLeft; }

@keyframes marqueeLeft{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* because we duplicate items */
}

.marquee:hover .marquee__track{ animation-play-state: paused; }

/* Card */
.tm-card{
  width: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  flex: 0 0 auto;
}

.tm-card img{
  width: 100%;
  aspect-ratio: 1 / 1;     /* square */
  object-fit: cover;
  display: block;
}

.tm-quote{
  margin: 10px 12px 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(0,0,0,.78);
  min-height: 38px;
}

.tm-audio{
  margin: 0 12px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(112,48,159,.22);
  background: rgba(112,48,159,.06);
  color: rgba(0,0,0,.82);
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

.tm-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(112,48,159,.14);
}

/* Mobile: slightly smaller cards */
@media (max-width: 520px){
  .tm-card{ width: 190px; }
  .testi-marquee{ padding: 22px 0 26px; }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}
/* ===== Senarai Kerja (full-width 2-up grid like reference) ===== */
.sector-showcase{
  padding: 40px 0 54px;
  background: #fff;
}

.sector-showcase__head{
  margin-bottom: 18px;
}

.sector-grid{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  padding: 0 max(24px, 4vw);
}

.sector-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: visible;              /* allow image to stay sharp */
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding-bottom: 16px;
}

.sector-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;

  border-radius: 0;               /* sharp corners */
  transform: scale(1);
  transition: transform .25s ease;
}
.sector-card:hover img{
  transform: scale(1.04);
}


.sector-card h3{
  margin: 14px 16px 6px;
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: -.02em;
}

.sector-card p{
  margin: 0 16px 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13.5px;
}

.sector-card .btn{
  margin: 0 16px;
}

@media (max-width: 980px){
  .sector-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.bg-sentinel{
  height: 1px;
}

/* everything after becomes purple */
.keluarga-zone{
  background: transparent; /* let BODY color show */
  padding: 54px 0 70px;
}
/* ===== AKTIVITI KELUARGA: VIDEO STACK ===== */
.keluarga-head{ margin-bottom: 18px; }

.keluarga-stack{
  padding-top: 10px;
  padding-bottom: calc(var(--stackGap) * 0.55); /* same idea as orange track */
}

/* sticky stack card */
.video-card{
  --lift: 0;

  position: sticky;
  top: var(--stickyTop);

  background: var(--color-purple);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.32);
  overflow: hidden;

  z-index: calc(10 + var(--i));

  transform:
    translateY(calc(var(--lift) * -6px))
    scale(calc(1 - var(--lift) * 0.006));
  will-change: transform;
}

/* distance between sticky cards */
.video-card + .video-card{
  margin-top: var(--stackGap);
}

.video-card__top{
  padding: 16px 18px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.video-card__top h3{
  margin:0;
  color:#fff;
  font-family:"League Spartan", system-ui, sans-serif;
  font-size: 22px;
  letter-spacing:-.02em;
}

.video-pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  font-weight:600;
  font-size: 13px;
}

/* video fills container */
.video-wrap{
  width:100%;
  height: 420px; /* adjust height */
  background: rgba(0,0,0,.25);
}

/* IMPORTANT: sharp edges (no border radius on video) */
.video-wrap video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  border-radius: 0;
}

/* mobile: disable sticky stack like your orange-card */
@media (max-width: 980px){
  .video-card{
    position: relative;
    top: auto;
    transform: none !important;
  }
  .video-card + .video-card{ margin-top: 14px; }
  .keluarga-stack{ padding-bottom: 0; }
  .video-wrap{ height: 260px; }
}

/* ===================== TESTIMONIAL PAGE ===================== */
/* Page scope */
.page--testimoni {
  padding-top: 0;
}

/* HERO (full-bleed YouTube carousel) */
.t-hero {
  position: relative;
  background: #0f0f14;
  color: #fff;
}
.t-hero.full-bleed {
  margin-top: 0;
}
.t-hero__wrap {
  width: 100%;
}
.t-hero__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.t-hero__slides {
  display: flex;
  width: 100%;
  transition: transform 450ms ease;
  will-change: transform;
}
.t-hero__slide {
  min-width: 100%;
  position: relative;
}
.t-hero__media {
  position: relative;
  width: 100%;
height: min(90vh, 860px);
}
.t-hero__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  background: #000;
}
.t-hero__poster {
  position: absolute;
  inset: 0;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.t-hero__shade {
  display: none;
}
.t-hero__overlay {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 6vh, 56px);
  max-width: min(720px, 88vw);
  z-index: 2;
  pointer-events: auto;
}
.t-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 12px;
}
.t-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 12px;
  text-wrap: balance;
}
.t-hero__desc {
  margin: 0 0 18px;
  opacity: .92;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}
.t-hero__play.btn {
  border-radius: 14px;
}
.t-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}
.t-hero__nav:hover {
  background: rgba(0,0,0,.5);
}
.t-hero__prev { left: 14px; }
.t-hero__next { right: 14px; }

.t-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.t-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  cursor: pointer;
}
.t-hero__dot.is-active {
  background: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.88);
}

.t-hero__slide.is-playing .t-hero__poster { display: none; }
.t-hero__slide.is-playing .t-hero__iframe { display: block; }

/* ABOUT (Boundary-inspired layout) */
.t-about {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}
.t-about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
}
.t-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.58);
  margin: 0 0 10px;
}
.t-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px;
}
.t-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  margin: 0 0 22px;
}
.t-about__heroImg {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  background: #f3f3f3;
}
.t-about__heroImg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.t-about__mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0 22px;
}
.t-about__mini img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.t-mini__label {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}
.t-mini__text {
  margin: 0;
  color: rgba(0,0,0,.70);
  font-weight: 600;
  line-height: 1.7;
}

.t-quote {
  border-left: 4px solid rgba(0,0,0,.12);
  padding-left: 16px;
  margin-top: 10px;
}
.t-quote__mark {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 6px;
  color: rgba(0,0,0,.25);
}
.t-quote__text {
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
}
.t-quote__by {
  margin: 0;
  font-weight: 700;
  color: rgba(0,0,0,.55);
}

/* WAVY MARQUEE */
.t-wave {
  padding: 26px 0 40px;
  background: #f7f7fb;
  border-top: 1px solid rgba(0,0,0,.06);
}
.t-wave__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 14px;
}
.t-wave__head .h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}
.t-wave__head .muted {
  margin: 0;
  color: rgba(0,0,0,.55);
  font-weight: 600;
}
.t-wave__marquee {
  overflow: hidden;
  padding: 10px 0 0;
}
.t-wave__track {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  width: max-content;
  animation: tWaveMarquee 38s linear infinite;
  padding: 10px 18px 18px;
}
.t-wave__marquee:hover .t-wave__track {
  animation-play-state: paused;
}
.t-wave__item {
  width: 170px;
  transform: translateY(var(--y));
  will-change: transform;
}
.t-wave__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
  background: #e9e9ee;
  display: block;
}
.t-wave__cap {
  margin-top: 10px;
  display: grid;
  gap: 2px;
}
.t-wave__name {
  font-weight: 900;
  font-size: 13px;
  color: rgba(0,0,0,.78);
}
.t-wave__role {
  font-weight: 700;
  font-size: 12px;
  color: rgba(0,0,0,.55);
}

@keyframes tWaveMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .t-about__grid {
    grid-template-columns: 1fr;
  }
  .t-about__mini {
    grid-template-columns: 100px 1fr;
  }
  .t-wave__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .t-hero__nav {
    display: none;
  }
}
/* =========================
   TESTIMONIAL PAGE — WAVY PEOPLE STRIP (OVERRIDES)
   ========================= */

/* remove the note text */
.t-wave__head .muted{
  display:none !important;
}

/* spacing for the whole strip */
.t-wave{
  padding: 44px 0 58px;
}

/* make the cards bigger + more breathing space */
.t-wave__track{
  gap: 44px !important;
}

/* bigger card width */
.t-wave__item{
  width: clamp(240px, 20vw, 340px) !important;
}

/* bigger image area */
.t-wave__media{
  height: clamp(280px, 32vw, 440px) !important;
  border-radius: 0 !important;              /* sharp corners */
  overflow: hidden !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
  background: #fff;
}

/* ensure image itself is sharp too (in case global styles override) */
.t-wave__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;              /* sharp corners */
  display: block;
}

/* optional: make name text a bit clearer under larger cards */
.t-wave__meta h4{
  margin-top: 12px;
  font-weight: 700;
}

/* responsive: let cards be wider on small screens */
@media (max-width: 768px){
  .t-wave__item{
    width: 72vw !important;
  }
  .t-wave__media{
    height: 52vw !important;
  }
}
