/* ============================================
   SEMESTA GROUP · Company Profile
   Poppins (display/heading) · Nunito (body)
   ============================================ */

/* ── THEME VARIABLES ──────────────────────── */
:root {
  /* Brand – never change */
  --blue:   #4B68F7;
  --blue-dk:#3452D8;
  --blue-2: #4A92F3;
  --yellow: #F4D734;
  --amber:  #FCC213;
  --red:    #ED5252;

  /* Light mode (default) */
  --bg:     #FFFFFF;
  --bg-2:   #F3F3F7;
  --bg-3:   #E8E8EE;
  --ink:    #0A0A0F;
  --ink-2:  #3C3C50;
  --ink-3:  #52526A;
  --bd:     #E0E0EC;

  /* Dark sections – always dark regardless of mode */
  --dk:     #0A0A0F;
  --dk-2:   #111118;
  --dk-card:rgba(255,255,255,.05);
  --dk-bd:  rgba(255,255,255,.09);

  /* Shared */
  --r:      12px;
  --r-sm:   8px;
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --shadow-md:0 8px 36px rgba(0,0,0,.10);
  --t:      .22s ease;
}

[data-theme="dark"] {
  --bg:     #0F0F18;
  --bg-2:   #17172A;
  --bg-3:   #1F1F32;
  --ink:    #F0F0FC;
  --ink-2:  #BDBDCC;
  --ink-3:  #7A7A8E;
  --bd:     #2A2A3E;
  --shadow: 0 2px 16px rgba(0,0,0,.25);
  --shadow-md:0 8px 36px rgba(0,0,0,.35);
}

/* Smooth theme transition */
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  transition: background-color var(--t), border-color var(--t), color var(--t);
}

/* ── BASE ─────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.12;
  color: var(--ink);
  font-weight: 800;
  transition: color var(--t);
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.s-light { background: var(--bg);   padding: 100px 0; }
.s-gray  { background: var(--bg-2); padding: 100px 0; }
.s-dark  { background: var(--dk);   padding: 100px 0; }
.s-blue  { background: var(--blue); padding: 100px 0; }

/* ── LABEL / TITLE / SUB ──────────────────── */
.label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.label.light { color: rgba(255,255,255,.7); }
.label.light::before { background: var(--amber); }

.h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 20px;
}
.h2.light { color: #fff; }

.sub-text {
  font-size: .975rem;
  color: var(--ink-3);
  max-width: 500px;
  line-height: 1.75;
}

.txt-accent { color: var(--blue); font-style: italic; }

.split-head { margin-bottom: 52px; }

.centered { text-align: center; margin-bottom: 52px; }
.centered .sub-text { margin: 0 auto; }

.col-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px; display: block;
}
.col-tag.light { color: rgba(255,255,255,.65); }

/* ── BUTTONS ──────────────────────────────── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem; font-weight: 600;
  background: #fff; color: var(--dk);
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: var(--t); cursor: pointer;
}
.btn-dark:hover { background: var(--yellow); }

.btn-ghost-w {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem; font-weight: 600;
  background: transparent; color: rgba(255,255,255,.7);
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.2);
  transition: var(--t); cursor: pointer;
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.btn-submit {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 700;
  background: var(--blue); color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  border: none; cursor: pointer;
  transition: var(--t);
  letter-spacing: .01em;
}
.btn-submit:hover { background: var(--blue-dk); transform: translateY(-1px); }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
[data-theme="dark"] .navbar { background: rgba(15,15,24,.88); }
.navbar.scrolled { border-bottom-color: var(--bd); box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto;
  padding: 14px 32px;
  gap: 16px;
}

.nav-logo img { height: 36px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem; font-weight: 500;
  color: var(--ink-3);
  padding: 8px 12px;
  border-radius: 7px;
  transition: var(--t);
}
.nav-menu a:hover { color: var(--ink); background: var(--bg-2); }

.nav-btn {
  background: var(--blue) !important;
  color: #fff !important;
  margin-left: 6px;
}
.nav-btn:hover { background: var(--blue-dk) !important; }

/* Theme toggle */
.theme-btn {
  width: 38px; height: 38px;
  background: var(--bg-2);
  border: 1.5px solid var(--bd);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-3);
  transition: var(--t);
  flex-shrink: 0;
}
.theme-btn:hover { background: var(--bg-3); color: var(--ink); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.nav-right {
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: var(--t);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  background: var(--dk);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 0;
  position: relative;
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 60px;
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: block;
}

.display {
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .93;
  margin-bottom: 40px;
  display: flex; flex-direction: column;
}

.d-plain { color: #fff; }

.d-fill {
  display: inline-block;
  background: var(--yellow);
  color: var(--dk);
  padding: 4px 18px 8px;
  margin: 6px 0;
  line-height: 1.05;
  width: fit-content;
}

.d-ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.28);
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  max-width: 440px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1160px;
  width: 100%;
  margin: 48px auto 0;
  padding: 32px;
}

.hstat { flex: 1; padding: 0 32px; }
.hstat:first-child { padding-left: 0; }
.hstat:last-child  { padding-right: 0; }

.hstat-n {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  letter-spacing: -.04em;
  color: #fff; display: block;
  line-height: 1; margin-bottom: 6px;
}
.hstat-n sup { font-size: 1.1rem; vertical-align: super; }
.hstat-l { font-size: .75rem; color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: .02em; }

.hstat-sep { width: 1px; background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */
.ticker {
  background: var(--blue);
  overflow: hidden;
  padding: 13px 0;
  position: relative; z-index: 1;
}
.ticker-inner {
  display: inline-flex; align-items: center; gap: 22px;
  white-space: nowrap;
  animation: run 26s linear infinite;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.tdot { color: var(--yellow); font-size: .55rem; }
.ticker:hover .ticker-inner { animation-play-state: paused; }
@keyframes run { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
}

.body-text { font-size: .975rem; color: var(--ink-3); margin-bottom: 14px; line-height: 1.78; }
.body-text strong { color: var(--ink); font-weight: 700; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.pill {
  background: var(--bg-2);
  border: 1px solid var(--bd);
  color: var(--ink-2);
  font-family: 'Poppins', sans-serif;
  font-size: .75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px;
}

.loc-row {
  display: flex; gap: 10px; align-items: flex-start;
  padding-top: 18px; border-top: 1px solid var(--bd);
  font-size: .85rem; color: var(--ink-3); line-height: 1.55;
}
.loc-row svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }

.quote-card {
  background: var(--dk-2);
  border-radius: var(--r);
  padding: 44px 40px;
  position: relative; overflow: hidden;
}
.quote-card::after {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--blue); border-radius: 50%; opacity: .12;
}
.qc-mark {
  font-family: 'Poppins', sans-serif; font-style: italic;
  font-size: 6rem; font-weight: 900;
  color: var(--blue); opacity: .25;
  line-height: .6; margin-bottom: 14px; display: block;
}
.quote-card blockquote {
  font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: #fff; line-height: 1.55; margin-bottom: 18px;
}
.quote-card cite { font-size: .8rem; font-weight: 600; color: var(--amber); font-style: normal; }

/* ═══════════════════════════════════
   VIDEO
═══════════════════════════════════ */
.vid-head { text-align: center; margin-bottom: 44px; }
.vid-frame {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.vid-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════
   HISTORY
═══════════════════════════════════ */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }

.tl-axis {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--bd);
  transform: translateX(-50%);
}

.tl-item { display: flex; width: 50%; padding-bottom: 30px; position: relative; z-index: 1; }
.tl-l { padding-right: 44px; justify-content: flex-end; }
.tl-r { padding-left: 44px; margin-left: 50%; }

.tl-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 22px 24px;
  max-width: 300px; width: 100%;
  box-shadow: var(--shadow);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
}
.tl-card::before {
  content: '';
  position: absolute; top: 20px;
  width: 9px; height: 9px;
  background: var(--blue);
  border: 2px solid var(--bg-2);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--blue);
}
.tl-l .tl-card::before { right: -48px; }
.tl-r .tl-card::before { left: -48px; }
.tl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue); }

.tl-yr {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem; font-weight: 700;
  color: var(--blue); letter-spacing: .08em;
  text-transform: uppercase; display: block; margin-bottom: 7px;
}
.tl-title { font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.tl-body  { font-size: .825rem; color: var(--ink-3); line-height: 1.6; }

/* ═══════════════════════════════════
   VISION MISSION
═══════════════════════════════════ */
.vm-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.vm-intro { font-size: .95rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-top: 14px; }
.vm-r { display: flex; flex-direction: column; gap: 14px; }
.vm-card {
  background: var(--dk-card);
  border: 1px solid var(--dk-bd);
  border-radius: var(--r);
  padding: 22px 26px;
  transition: background var(--t), border-color var(--t);
}
.vm-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.vm-tag {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 10px;
}
.vm-card p { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.7; }

/* ═══════════════════════════════════
   VALUES — BENTO
═══════════════════════════════════ */
.val-head { margin-bottom: 36px; }

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

/* BERkah wide (col 1–2), DOminasi (col 3) */
.b-val:nth-child(1) { grid-column: span 2; --vc: #4B68F7; }
.b-val:nth-child(2) { --vc: #ED5252; }
.b-val:nth-child(3) { --vc: #FCC213; }
/* Wide dark banner */
.b-dark { grid-column: span 2; }

.b-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-left: 4px solid var(--vc, var(--bd));
  border-radius: var(--r);
  padding: 32px 28px;
  transition: box-shadow var(--t), transform var(--t);
  position: relative; overflow: hidden;
}
.b-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.b-ghost {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem; font-weight: 900;
  letter-spacing: -.05em;
  color: var(--vc, var(--bd));
  opacity: .1; line-height: 1;
  display: block; margin-bottom: 8px;
}

.b-name { font-size: 1.25rem; font-weight: 800; color: var(--vc, var(--ink)); margin-bottom: 12px; }
.b-body { font-size: .85rem; color: var(--ink-3); line-height: 1.7; }

.b-dark {
  background: var(--dk);
  border: none;
  border-left: 4px solid var(--yellow);
  display: flex; flex-direction: column; justify-content: center;
}
.berdoa-word {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; letter-spacing: -.04em;
  color: #fff; line-height: 1; margin-bottom: 10px;
}
.berdoa-key {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.65); letter-spacing: .04em;
}
.berdoa-key strong { color: var(--yellow); font-weight: 700; }

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.svc-head { margin-bottom: 44px; }

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

.svc-card:nth-child(1) { --sc: #4B68F7; }
.svc-card:nth-child(2) { --sc: #FCC213; }
.svc-card:nth-child(3) { --sc: #ED5252; }

.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--sc);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
}
.svc-card:hover {
  background: rgba(255,255,255,.07);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transform: translateY(-4px);
}

.svc-n {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--sc); opacity: .35;
  line-height: 1; margin-bottom: 18px;
}
.svc-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-body  { font-size: .875rem; color: rgba(255,255,255,.78); line-height: 1.7; flex: 1; }
.svc-foot  { margin-top: 22px; color: var(--sc); transition: transform var(--t); }
.svc-card:hover .svc-foot { transform: translateX(4px); }

/* ═══════════════════════════════════
   BRANDS
═══════════════════════════════════ */
.brands-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.brand-item:nth-child(1) { --bc: #ED5252; }
.brand-item:nth-child(2) { --bc: #4B68F7; }
.brand-item:nth-child(3) { --bc: #4A92F3; }
.brand-item:nth-child(4) { --bc: #FCC213; }
.brand-item:nth-child(5) { --bc: #F4D734; }

.brand-item {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 28px 16px 22px;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative; overflow: hidden;
}
.brand-item:hover { border-color: var(--bc); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.brand-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--bc);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.brand-item:hover .brand-line { transform: scaleX(1); }

.brand-ico {
  font-size: 1.8rem; display: block; margin-bottom: 12px;
  filter: grayscale(100%); opacity: .6;
  transition: filter var(--t), opacity var(--t);
}
.brand-item:hover .brand-ico { filter: grayscale(0%); opacity: 1; }

.brand-nm { font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; display: block; }
.brand-tx { font-size: .775rem; color: var(--ink-3); line-height: 1.5; }

/* ═══════════════════════════════════
   ACHIEVEMENTS
═══════════════════════════════════ */
.ach-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.ach-note { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-top: 16px; }
.ach-r { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ach-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  padding: 28px 22px;
  transition: background var(--t);
}
.ach-item:hover { background: rgba(255,255,255,.16); }

.ach-n {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem; font-weight: 900;
  letter-spacing: -.04em;
  color: #fff; line-height: 1;
  margin-bottom: 8px; display: block;
}
.ach-l { font-size: .82rem; color: rgba(255,255,255,.82); line-height: 1.45; }

/* ═══════════════════════════════════
   CAREER
═══════════════════════════════════ */
.career-cols { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }

.ladder { display: flex; flex-direction: column; max-width: 260px; }
.rung {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  transition: border-color var(--t), background var(--t), transform var(--t);
  cursor: default;
}
.rung:hover { border-color: var(--blue); transform: translateX(4px); }
.rung-top { border-left: 3px solid var(--amber); }
.rung-bot { border-left: 3px solid var(--blue); }

.rung-n {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem; font-weight: 800;
  color: var(--ink-3); min-width: 20px;
}
.rung-name {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 700; color: var(--ink);
}

.rung-line {
  height: 16px;
  border-left: 1px dashed var(--bd);
  margin-left: 28px;
}

.steps { display: flex; flex-direction: column; }
.step-row {
  display: flex; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bd);
}
.step-row:first-child { padding-top: 0; }
.step-row:last-child  { border-bottom: none; padding-bottom: 0; }

.step-dot {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.step-body h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.step-body p  { font-size: .82rem; color: var(--ink-3); line-height: 1.6; }

/* ═══════════════════════════════════
   BENEFITS
═══════════════════════════════════ */
.ben-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 800px;
}
.ben-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.ben-row:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateX(4px); }
.ben-check {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════
   INTERNSHIP
═══════════════════════════════════ */
.int-head { margin-bottom: 44px; }
.int-sub { font-size: .975rem; color: rgba(255,255,255,.72); margin-top: 10px; }

.int-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 44px; }

.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  transition: background var(--t), border-color var(--t);
  cursor: default;
}
.tag-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

.perk-ul { display: flex; flex-direction: column; gap: 12px; }
.perk-ul li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.6;
}
.perk-ul svg { flex-shrink: 0; color: var(--blue-2); margin-top: 3px; }

.testi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 36px 40px;
}
.testi-q { color: var(--blue); opacity: .25; margin-bottom: 14px; display: block; }
.testi-text { font-size: .975rem; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 22px; }
.testi-by strong { display: block; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; color: #fff; }
.testi-by span   { font-size: .8rem; color: var(--blue-2); font-weight: 600; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.ci-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.ci {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color var(--t);
}
.ci:hover { border-color: var(--blue); }
.ci-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.ci-lbl { display: block; font-family: 'Poppins', sans-serif; font-size: .68rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.ci-val { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); }

.map-wrap { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--bd); line-height: 0; }
.map-wrap iframe { width: 100%; height: 230px; border: none; display: block; }

.cform {
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 36px;
}
.cform h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }

.fg { margin-bottom: 16px; }
.fg label { display: block; font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem; color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: var(--r-sm);
  padding: 11px 15px; outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75,104,247,.12);
}
.fg textarea { resize: vertical; min-height: 92px; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer { background: var(--dk); padding: 52px 0 28px; }

.ft-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 36px; gap: 32px; flex-wrap: wrap;
}

.ft-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .8; display: block; margin-bottom: 10px; }
.ft-tag  { font-family: 'Poppins', sans-serif; font-size: .78rem; color: rgba(255,255,255,.55); }

.ft-nav { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; padding-top: 4px; }
.ft-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem; color: rgba(255,255,255,.62);
  padding: 6px 12px; border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.ft-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }

.ft-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
}

/* ═══════════════════════════════════
   BACK TO TOP
═══════════════════════════════════ */
.totop {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(75,104,247,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), visibility var(--t), transform var(--t), background var(--t);
  z-index: 999;
}
.totop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--blue-dk); transform: translateY(-2px); }

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-aos="fade-right"] { transform: translateX(-22px); }
[data-aos="fade-left"]  { transform: translateX(22px); }
[data-aos].aos-animated { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .brands-row { grid-template-columns: repeat(3, 1fr); }
  .ach-grid   { grid-template-columns: 1fr; gap: 36px; }
  .vm-grid    { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* Base */
  .wrap { padding: 0 20px; }
  .s-light, .s-gray, .s-dark, .s-blue { padding: 64px 0; }

  /* Navbar */
  .nav-menu {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px; gap: 2px;
    border-bottom: 1px solid var(--bd);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { font-size: .95rem; padding: 12px 16px; display: block; border-radius: 8px; }
  .nav-menu .nav-btn { text-align: center; margin: 6px 0 0; }
  .nav-hamburger { display: flex; }

  /* Hero — font size is the #1 mobile issue */
  .display { font-size: clamp(2.4rem, 10vw, 4.5rem); letter-spacing: -.04em; }
  .hero { padding: 110px 0 0; }
  .hero-body { padding: 0 20px 40px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-desc { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; padding: 20px; margin-top: 32px; }
  .hstat { flex: 1 1 130px; padding: 14px 12px; }
  .hstat-sep { display: none; }
  .hstat-n { font-size: 1.8rem; }

  /* Sections */
  .split-head { margin-bottom: 36px; }
  .h2 { margin-bottom: 14px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-l    { order: 2; }
  .about-r    { order: 1; }
  .quote-card { padding: 28px 22px; }

  /* History */
  .tl-axis { left: 16px; }
  .tl-item { width: 100%; padding-left: 44px !important; padding-right: 0 !important; margin-left: 0 !important; justify-content: flex-start !important; }
  .tl-card { max-width: 100%; }
  .tl-card::before { left: -36px !important; right: auto !important; }

  /* Vision Mission */
  .vm-grid  { grid-template-columns: 1fr; gap: 32px; }
  .vm-card  { padding: 18px 20px; }

  /* Values */
  .bento { grid-template-columns: 1fr; }
  .b-val:nth-child(1), .b-dark { grid-column: span 1; }
  .b-ghost { font-size: 4rem; }

  /* Services */
  .svc-row  { grid-template-columns: 1fr; }
  .svc-head { margin-bottom: 32px; }

  /* Brands */
  .brands-row { grid-template-columns: repeat(2, 1fr); }

  /* Achievements */
  .ach-grid { grid-template-columns: 1fr; gap: 32px; }
  .ach-r    { grid-template-columns: 1fr 1fr; }

  /* Career */
  .career-cols { grid-template-columns: 1fr; gap: 40px; }
  .ladder      { max-width: 100%; }

  /* Benefits */
  .ben-list { grid-template-columns: 1fr 1fr; max-width: 100%; }

  /* Internship */
  .int-cols { grid-template-columns: 1fr; gap: 28px; }
  .testi    { padding: 24px 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cform        { padding: 22px; }
  .map-wrap iframe { height: 200px; }

  /* Footer */
  .ft-top    { flex-direction: column; gap: 20px; }
  .ft-nav    { flex-wrap: wrap; }
  .ft-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

@media (max-width: 480px) {
  /* Base */
  .wrap { padding: 0 16px; }
  .s-light, .s-gray, .s-dark, .s-blue { padding: 52px 0; }

  /* Hero */
  .display    { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero       { padding: 100px 0 0; }
  .hero-body  { padding: 0 16px 32px; }
  .hero-stats { padding: 16px; }
  .hstat      { flex: 1 1 120px; padding: 12px 8px; }
  .hstat-n    { font-size: 1.6rem; }
  .eyebrow    { font-size: 9px; }

  /* Typography */
  .h2 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }

  /* Navbar */
  .nav-inner { padding: 12px 16px; }
  .nav-logo img { height: 30px; }

  /* Values */
  .bento   { gap: 10px; }
  .b-card  { padding: 24px 18px; }
  .b-ghost { font-size: 3rem; }
  .berdoa-word { font-size: 2.4rem; }

  /* Brands */
  .brands-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brand-item { padding: 20px 12px 16px; }

  /* Achievements */
  .ach-item { padding: 20px 14px; }
  .ach-n    { font-size: 1.9rem; }

  /* Benefits */
  .ben-list { grid-template-columns: 1fr; }

  /* Career */
  .rung     { padding: 10px 14px; }
  .step-row { gap: 12px; }

  /* Contact */
  .contact-grid { gap: 28px; }
  .cform        { padding: 18px; }
  .ci           { padding: 10px 12px; gap: 10px; }

  /* Footer */
  .ft-nav { gap: 2px; }
}
