/* =========================================================
   OXFORD EDUVISION — styles.css (FULL v3)
   ========================================================= */

/* =========================================================
   1. ROOT TOKENS
   ========================================================= */
:root {
  --bg:          #ffffff;
  --surface:     #F6F8FB;
  --text:        #0B1220;
  --muted:       #475569;
  --border:      #E5E7EB;
  --oxford:      #0B3A82;
  --oxford2:     #1C6AE4;
  --gold:        #C9A24B;
  --radius-xl:   28px;
  --radius-lg:   22px;
  --radius-md:   16px;
  --shadow-sm:   0 10px 28px rgba(11,18,32,.06);
  --shadow-md:   0 18px 60px rgba(11,18,32,.10);
  --shadow-glow: 0 24px 90px rgba(28,106,228,.18);
  --max: 1120px;

  /* Pattern */
  --pattern-color: #c8d5e8;
  --pattern-size:  56px;
}

/* =========================================================
   2. RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: transparent; /* pattern dari body::before akan kelihatan */
  overflow-x: hidden;
  position: relative;
}

/* =========================================================
   DIAMOND GRID BACKGROUND PATTERN
   ========================================================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #f4f7fc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cline x1='0' y1='40' x2='8' y2='40' stroke='%23c8d5e8' stroke-width='1'/%3E%3Cline x1='72' y1='40' x2='80' y2='40' stroke='%23c8d5e8' stroke-width='1'/%3E%3Cline x1='40' y1='0' x2='40' y2='8' stroke='%23c8d5e8' stroke-width='1'/%3E%3Cline x1='40' y1='72' x2='40' y2='80' stroke='%23c8d5e8' stroke-width='1'/%3E%3Crect x='8' y='8' width='64' height='64' rx='10' ry='10' fill='none' stroke='%23cfd9ea' stroke-width='1.2'/%3E%3Cpath d='M40,17 L63,40 L40,63 L17,40 Z' fill='none' stroke='%23c4d2e6' stroke-width='1.1'/%3E%3Ccircle cx='40' cy='40' r='5.5' fill='none' stroke='%23c4d2e6' stroke-width='1.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: var(--pattern-size) var(--pattern-size);
  opacity: 0.65;
}

/* Ensure all content sits above pattern */
body > * {
  position: relative;
  z-index: 1;
}

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =========================================================
   3. UTILITIES
   ========================================================= */
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.muted { color: var(--muted); }
.small { font-size: 12.5px; }

.section { padding: 78px 0; background: transparent; }
.section--tint {
  background: rgba(240,244,250,.55);
}
/* About section — padding atas dikurangkan supaya rapat dengan hero */
.section--about { padding-top: 48px; }
.section__head { max-width: 74ch; margin-bottom: 24px; }
.section__head h2 { margin: 0 0 8px; font-size: 35px; letter-spacing: -0.02em; }
.section__head p  { margin: 0; color: rgba(71,85,105,.96); line-height: 1.65; }

.cardX {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(229,231,235,.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float {
  animation: floaty 5.2s ease-in-out infinite;
  animation-delay: var(--d, 0ms);
}

@keyframes pulse {
  0%, 100% { transform: scale(.85); opacity: .45; }
  50%       { transform: scale(1.05); opacity: .90; }
}

/* =========================================================
   4. NAVBAR
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(229,231,235,.75);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand__logo { width: 42px; height: 42px; object-fit: contain; }
.brand__text strong { display: block; font-size: 14px; letter-spacing: .2px; }
.brand__text small  { display: block; font-size: 12px; color: var(--muted); }
.nav__links {
  display: flex; align-items: center; gap: 18px;
  font-size: 13.5px; color: rgba(11,18,32,.88);
}
.nav__links a { padding: 10px 12px; border-radius: 999px; transition: background .2s ease; }
.nav__links a:hover { background: rgba(11,58,130,.08); }
.nav__cta { display: flex; align-items: center; gap: 10px; }

/* =========================================================
   5. BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 999px; padding: 10px 14px;
  font-weight: 700; font-size: 13.5px; border: 1px solid transparent;
  cursor: pointer; user-select: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--oxford), var(--oxford2));
  color: #fff; box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--ghost {
  background: rgba(255,255,255,.7);
  border-color: rgba(229,231,235,.95);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(11,58,130,.18); }

/* =========================================================
   6. HAMBURGER & DRAWER
   ========================================================= */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(229,231,235,.95); background: rgba(255,255,255,.75); cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: rgba(11,18,32,.75); margin: 4px auto; border-radius: 2px; }
.drawer {
  display: none; position: fixed; inset: 62px 0 auto 0;
  background: rgba(255,255,255,.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,.8);
  transform: translateY(-120%); transition: transform .25s ease; z-index: 99;
}
.drawer.is-open { transform: translateY(0); }
.drawer__panel { padding: 14px 0 22px; display: grid; gap: 10px; }
.drawer__link { padding: 12px 14px; border-radius: 16px; border: 1px solid rgba(229,231,235,.85); background: rgba(255,255,255,.78); }
.drawer__link:hover { border-color: rgba(11,58,130,.18); }

/* =========================================================
   7. HERO — STARS & FLOATING DIAMONDS ANIMATION
   ========================================================= */

/* Star twinkle keyframe */
@keyframes starTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  20%       { opacity: 0.9; transform: scale(1.2); }
  50%       { opacity: 0.5; transform: scale(0.8); }
  80%       { opacity: 1;   transform: scale(1.0); }
}

/* Star drift keyframe — naik perlahan */
@keyframes starDrift {
  0%   { transform: translateY(0)    translateX(0)   scale(1);   opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translateY(-60px) translateX(15px) scale(1.1); opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-130px) translateX(30px) scale(0.8); opacity: 0; }
}

/* Titik kecil naik dari bawah ke atas & fade */
@keyframes floatUp {
  0%   { transform: translateY(0)    scale(0.6); opacity: 0; }
  10%  { opacity: 0.5; }
  60%  { opacity: 0.35; }
  100% { transform: translateY(-280px) scale(0.3); opacity: 0; }
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-20px) scale(1.05); }
  66%       { transform: translate(-20px,15px) scale(.97); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(-25px,20px) scale(1.04); }
  66%       { transform: translate(18px,-12px) scale(.98); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(15px,25px) scale(1.06); }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 20px;
  background: transparent;
}

.hero::before { display: none; }

/* Fade bawah hero — tipis */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, #f4f7fc 100%);
}

/* Stars container */
.hero__stars {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}

/* Individual star — dot kecil berkelip */
.hero__star {
  position: absolute;
  border-radius: 50%;
  animation: starDrift linear infinite;
  will-change: transform, opacity;
}

/* Float-up dots container */
.hero__sparkles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}

/* Titik bulat kecil naik ke atas */
.hero__sparkle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp ease-in-out infinite;
  will-change: transform, opacity;
}
.hero__sparkle::before,
.hero__sparkle::after { display: none; }

/* Blobs */
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.blob { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }
.blob--a { width: 500px; height: 500px; left: -150px; top: -100px; background: radial-gradient(circle, rgba(28,106,228,.10), transparent 65%); animation: blobDrift  14s ease-in-out infinite; }
.blob--b { width: 440px; height: 440px; right: -160px; top: -100px; background: radial-gradient(circle, rgba(11,58,130,.08), transparent 65%); animation: blobDrift2 17s ease-in-out infinite; }
.blob--c { width: 380px; height: 380px; left: 36%; top: 10%; background: radial-gradient(circle, rgba(201,162,75,.08), transparent 65%); animation: blobDrift3 12s ease-in-out infinite; }
.blob--d { display: none; }
.blob--e { display: none; }

/* Glow parallax */
.glow {
  position: absolute; inset: -260px -260px auto -260px; height: 560px; z-index: 2;
  background: radial-gradient(closest-side, rgba(28,106,228,.16), transparent 65%), radial-gradient(closest-side, rgba(201,162,75,.12), transparent 70%);
  filter: blur(12px); pointer-events: none;
}

/* Hero grid — above blobs */
.hero__grid, .hero__copy, .hero__visual { position: relative; z-index: 2; }

.hero__grid {
  display: grid; grid-template-columns: 1.15fr .95fr;
  gap: 28px; align-items: center;
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px;
  border-radius: 999px; border: 1px solid rgba(229,231,235,.92);
  background: rgba(255,255,255,.72); color: rgba(11,18,32,.82);
  font-size: 12.5px; box-shadow: var(--shadow-sm);
}
.spark {
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--oxford), var(--oxford2));
  box-shadow: 0 0 0 6px rgba(28,106,228,.12);
}
.hero__title { margin: 14px 0 10px; font-size: clamp(36px,4.6vw,62px); letter-spacing: -0.035em; line-height: 1.03; }
.grad {
  background: linear-gradient(135deg, var(--oxford), var(--oxford2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__desc { margin: 0; max-width: 58ch; font-size: 16.8px; color: rgba(71,85,105,.96); line-height: 1.65; }
.hero__actions { display: flex; gap: 12px; margin: 18px 0; flex-wrap: wrap; }
.hero__facts { display: flex; gap: 12px; flex-wrap: wrap; }
.fact { padding: 12px 14px; border-radius: 18px; border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); min-width: 150px; }
.fact__label { display: block; font-size: 12px; color: rgba(71,85,105,.95); font-weight: 700; }
.fact__value { display: block; font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.scrollcue { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: rgba(71,85,105,.95); font-weight: 700; font-size: 12px; }
.scrollcue__dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(11,58,130,.22); position: relative; }
.scrollcue__dot::after { content: ""; position: absolute; inset: -10px; border-radius: 999px; border: 1px solid rgba(11,58,130,.18); animation: pulse 1.6s ease-in-out infinite; }

/* =========================================================
   8. HERO BENTO
   ========================================================= */
.bento {
  position: relative; width: min(580px,100%); aspect-ratio: 1/1; margin-left: auto;
  display: grid; grid-template-columns: 1.35fr .85fr; grid-template-rows: 1fr 1fr; gap: 14px;
}
.tile {
  position: relative; overflow: hidden; border-radius: 28px;
  border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.68);
  box-shadow: 0 18px 60px rgba(11,18,32,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.03); }
.tile--hero { grid-column: 1/2; grid-row: 1/3; }
.tile--a    { grid-column: 2/3; grid-row: 1/2; }
.tile--b    { grid-column: 2/3; grid-row: 2/3; }
.tile--c    { position: absolute; width: 52%; height: 34%; left: 6%; bottom: -6%; transform: rotate(-3deg); border-radius: 26px; box-shadow: 0 24px 90px rgba(11,18,32,.18); }
.tile--hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0) 25%, rgba(11,18,32,.38) 100%), radial-gradient(520px 320px at 20% 15%, rgba(28,106,228,.18), transparent 60%);
  pointer-events: none;
}
.tile__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; pointer-events: none; }
.tile__meta { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(229,231,235,.88); box-shadow: 0 16px 40px rgba(11,18,32,.10); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: 12px; margin-bottom: 8px; background: rgba(201,162,75,.14); border: 1px solid rgba(201,162,75,.22); color: rgba(11,18,32,.80); }
.tag--blue { background: rgba(28,106,228,.12); border-color: rgba(28,106,228,.20); }
.tag--gold { background: rgba(201,162,75,.14); border-color: rgba(201,162,75,.24); }
.meta { display: block; font-size: 12.5px; font-weight: 800; color: rgba(71,85,105,.92); }
@media (pointer:fine) { .tile:hover { transform: translateY(-6px); box-shadow: 0 30px 90px rgba(11,18,32,.18); transition: transform .25s ease, box-shadow .25s ease; } }

/* =========================================================
   9. HERO MOBILE SLIDER
   ========================================================= */
.mhero { display: none; }
.mhero__frame { position: relative; width: 100%; max-width: 520px; margin: 0 auto; border-radius: 28px; overflow: hidden; border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.66); box-shadow: 0 18px 60px rgba(11,18,32,.12); aspect-ratio: 16/11; }
.mhero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.02); transition: opacity .7s ease, transform 1.2s ease; }
.mhero__img.is-active { opacity: 1; transform: scale(1); }

/* =========================================================
   10. ABOUT
   ========================================================= */
.section--about { position: relative; overflow: hidden; background: transparent; }
.section--about::before { display: none; }
.about__head { max-width: 78ch; margin-bottom: 22px; position: relative; }
.kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(229,231,235,.92); background: rgba(255,255,255,.70); box-shadow: 0 12px 34px rgba(11,18,32,.06); font-size: 12.5px; font-weight: 900; color: rgba(11,18,32,.74); margin: 0 0 12px; }
.kdot { width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--oxford), var(--oxford2)); box-shadow: 0 0 0 6px rgba(28,106,228,.12); }
.about__title { margin: 0 0 10px; font-size: 35px; letter-spacing: -0.03em; line-height: 1.12; }
.about__desc  { margin: 0; font-size: 16.5px; color: rgba(71,85,105,.96); line-height: 1.7; }
.about__grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.aboutcard { position: relative; border-radius: 28px; padding: 18px; background: rgba(255,255,255,.82); border: 1px solid rgba(229,231,235,.88); box-shadow: 0 18px 60px rgba(11,18,32,.10); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.aboutcard::before { content: ""; position: absolute; inset: -2px; border-radius: 30px; padding: 1px; background: linear-gradient(135deg, rgba(28,106,228,.28), rgba(201,162,75,.18), rgba(11,58,130,.22)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .55; }
.aboutcard__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.aboutcard__icon { width: 44px; height: 44px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(11,58,130,.14), rgba(28,106,228,.10)); border: 1px solid rgba(229,231,235,.85); }
.aboutcard__pill { padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.70); color: rgba(11,18,32,.72); }
.aboutcard__pill--blue { background: rgba(28,106,228,.12); border-color: rgba(28,106,228,.18); }
.aboutcard h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.aboutcard p  { margin: 0; color: rgba(71,85,105,.95); line-height: 1.65; }
@media (pointer:fine) { .aboutcard:hover { transform: translateY(-6px); box-shadow: 0 30px 90px rgba(11,18,32,.16); border-color: rgba(11,58,130,.18); } }

/* =========================================================
   11. SERVICES
   ========================================================= */
.servicesX__grid { display: grid; grid-template-columns: repeat(4, 1fr) !important; gap: 14px; }
.svc__badge--teal { border-color: rgba(14,116,144,.28); }
.svc__link--teal  { color: #0E7490; }

/* Override responsive untuk services — kekal 4 kolum sehingga 768px */
@media (max-width: 980px) {
  .servicesX__grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 768px) {
  .servicesX__grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .servicesX__grid { grid-template-columns: 1fr !important; }
}
.svc { border-radius: 28px; background: rgba(255,255,255,.82); border: 1px solid rgba(229,231,235,.88); box-shadow: 0 18px 60px rgba(11,18,32,.10); overflow: hidden; display: flex; flex-direction: column; min-height: 420px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.svc__media { position: relative; height: 180px; background: rgba(246,248,251,.9); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); transition: transform .5s ease; }
.svc__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,32,0) 35%, rgba(11,18,32,.35) 100%), radial-gradient(420px 220px at 20% 18%, rgba(28,106,228,.18), transparent 60%); pointer-events: none; }
.svc__overlay { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; z-index: 2; }
.svc__badge { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; color: rgba(11,18,32,.82); background: rgba(255,255,255,.78); border: 1px solid rgba(229,231,235,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.svc__badge--blue { border-color: rgba(28,106,228,.22); }
.svc__badge--gold { border-color: rgba(201,162,75,.28); }
.svc__chip { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; color: rgba(255,255,255,.92); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.svc__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc__body h3 { margin: 0; font-size: 18px; letter-spacing: -0.01em; }
.svc__body p  { margin: 0; color: rgba(71,85,105,.95); line-height: 1.65; flex: 1; }
.svc__link { font-weight: 900; color: var(--oxford); font-size: 13.5px; }
@media (pointer:fine) { .svc:hover { transform: translateY(-6px); box-shadow: 0 30px 90px rgba(11,18,32,.16); border-color: rgba(11,58,130,.18); } .svc:hover .svc__media img { transform: scale(1.06); } }

/* =========================================================
   12. EDUCATION SECTION
   ========================================================= */
.eduX { position: relative; overflow: hidden; background: transparent; }
.eduX__bg { display: none; }
.eduX__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.eduCard {
  border-radius: 26px; background: rgba(255,255,255,.88); border: 1px solid rgba(229,231,235,.90);
  box-shadow: 0 14px 50px rgba(11,18,32,.07); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
@media (pointer:fine) { .eduCard:hover { transform: translateY(-6px); box-shadow: 0 28px 80px rgba(11,18,32,.12); } }

.eduCard__icon { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(11,58,130,.12), rgba(28,106,228,.08)); border: 1px solid rgba(229,231,235,.85); color: #0B3A82; flex-shrink: 0; }
.eduCard__icon--purple { background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(139,92,246,.08)); color: #7C3AED; }
.eduCard__icon--amber  { background: linear-gradient(135deg, rgba(180,83,9,.12), rgba(217,119,6,.08)); color: #B45309; }
.eduCard__icon--teal   { background: linear-gradient(135deg, rgba(14,116,144,.12), rgba(8,145,178,.08)); color: #0E7490; }

.eduCard__badge { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 900; letter-spacing: .04em; width: fit-content; background: rgba(11,58,130,.10); border: 1px solid rgba(11,58,130,.20); color: #0B3A82; }
.eduCard__badge--green  { background: rgba(5,150,105,.10);  border-color: rgba(5,150,105,.22);  color: #065F46; }
.eduCard__badge--purple { background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.22); color: #7C3AED; }
.eduCard__badge--amber  { background: rgba(180,83,9,.10);   border-color: rgba(180,83,9,.22);   color: #B45309; }
.eduCard__badge--teal   { background: rgba(14,116,144,.10); border-color: rgba(14,116,144,.22); color: #0E7490; }

.eduCard__title { margin: 2px 0 0; font-size: 17px; letter-spacing: -0.01em; line-height: 1.2; }
.eduCard__desc  { margin: 0; color: rgba(71,85,105,.95); font-size: 13.5px; line-height: 1.65; flex: 1; }

.eduCard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.eduCard__tags span { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 800; background: rgba(11,58,130,.08); border: 1px solid rgba(11,58,130,.16); color: #0B3A82; }
.eduCard__tags--green  span { background: rgba(5,150,105,.08);  border-color: rgba(5,150,105,.18);  color: #065F46; }
.eduCard__tags--purple span { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.18); color: #7C3AED; }
.eduCard__tags--amber  span { background: rgba(180,83,9,.08);   border-color: rgba(180,83,9,.18);   color: #B45309; }
.eduCard__tags--teal   span { background: rgba(14,116,144,.08); border-color: rgba(14,116,144,.18); color: #0E7490; }

.eduCard__foot { padding-top: 10px; border-top: 1px solid rgba(229,231,235,.80); margin-top: auto; }
.eduCard__link { font-weight: 900; font-size: 13px; color: #0B3A82; }
.eduCard__link--green  { color: #065F46; } .eduCard__link--purple { color: #7C3AED; }
.eduCard__link--amber  { color: #B45309; } .eduCard__link--teal   { color: #0E7490; }
.eduCard__link:hover { text-decoration: underline; }

/* CTA card */
.eduCard--cta { background: linear-gradient(145deg, #0B3A82 0%, #1C6AE4 60%, #2563EB 100%); border-color: transparent; color: #fff; align-items: center; justify-content: center; }
.eduCard--cta__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.eduCard--cta__emoji { font-size: 42px; }
.eduCard--cta h3 { margin: 0; font-size: 20px; color: #fff; }
.eduCard--cta p  { margin: 0; color: rgba(255,255,255,.80); font-size: 13.5px; line-height: 1.6; max-width: 22ch; }
.eduCard--cta__btn { background: rgba(255,255,255,.15) !important; border: 1px solid rgba(255,255,255,.40) !important; color: #fff !important; backdrop-filter: blur(8px); }
.eduCard--cta__btn:hover { background: rgba(255,255,255,.25) !important; box-shadow: 0 12px 40px rgba(0,0,0,.20) !important; }

/* =========================================================
   13. TECHNOLOGY SECTION
   ========================================================= */
.techX {
  position: relative;
  background: rgba(240,244,250,.50);
}
.techX__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }

.techCard {
  border-radius: 26px; padding: 22px;
  border: 1px solid rgba(229,231,235,.90); background: rgba(255,255,255,.88);
  box-shadow: 0 14px 50px rgba(11,18,32,.07);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease;
}
@media (pointer:fine) { .techCard:hover { transform: translateY(-6px); box-shadow: 0 28px 80px rgba(11,18,32,.12); } }

.techCard--apps   { border-top: 3px solid #1C6AE4; }
.techCard--system { border-top: 3px solid #059669; }
.techCard--web    { border-top: 3px solid #7C3AED; }

.techCard__top { display: flex; align-items: center; gap: 10px; }
.techCard__ico { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(28,106,228,.14), rgba(11,58,130,.08)); border: 1px solid rgba(229,231,235,.85); color: #1C6AE4; flex-shrink: 0; }
.techCard__ico--sys { background: linear-gradient(135deg, rgba(5,150,105,.14), rgba(6,95,70,.08)); color: #059669; }
.techCard__ico--web { background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(109,40,217,.08)); color: #7C3AED; }
.techCard__label { font-size: 11.5px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: rgba(71,85,105,.85); }
.techCard h3 { margin: 0; font-size: 20px; letter-spacing: -0.02em; line-height: 1.15; }
.techCard p  { margin: 0; color: rgba(71,85,105,.95); font-size: 13.5px; line-height: 1.65; }

.techCard__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; flex: 1; }
.techCard__list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(11,18,32,.82); font-weight: 600; }
.techCard__list li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: #1C6AE4; flex-shrink: 0; }
.techCard--system .techCard__list li::before { background: #059669; }
.techCard--web    .techCard__list li::before { background: #7C3AED; }

.techCard__badge-row { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(229,231,235,.80); }
.techCard__badge-row span { padding: 5px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 900; background: rgba(11,58,130,.08); border: 1px solid rgba(11,58,130,.14); color: #0B3A82; }
.techCard--system .techCard__badge-row span { background: rgba(5,150,105,.08); border-color: rgba(5,150,105,.16); color: #065F46; }
.techCard--web    .techCard__badge-row span { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.16); color: #7C3AED; }

.techX__cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-radius: 26px; background: linear-gradient(135deg, rgba(11,58,130,.06), rgba(28,106,228,.04), rgba(201,162,75,.04)); border: 1px solid rgba(229,231,235,.88); box-shadow: 0 14px 50px rgba(11,18,32,.06); }
.techX__cta h3 { margin: 0 0 4px; font-size: 18px; letter-spacing: -.01em; }
.techX__cta p  { margin: 0; color: rgba(71,85,105,.90); font-size: 13.5px; }

/* =========================================================
   14. PRODUCTS SECTION
   ========================================================= */
.prodX { position: relative; overflow: hidden; background: transparent; }
.prodX__bg { display: none; }
.prodX__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.prodX__col { display: flex; flex-direction: column; gap: 16px; }
.prodX__colHead { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,.88); border: 1px solid rgba(229,231,235,.88); box-shadow: 0 10px 36px rgba(11,18,32,.06); }
.prodX__colIcon { font-size: 32px; line-height: 1; }
.prodX__colHead h3 { margin: 0 0 2px; font-size: 17px; letter-spacing: -.01em; }
.prodX__colHead p  { margin: 0; font-size: 13px; color: rgba(71,85,105,.90); }

.prodCards { display: flex; flex-direction: column; gap: 12px; }

.prodCard { border-radius: 20px; border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.88); box-shadow: 0 10px 36px rgba(11,18,32,.06); overflow: hidden; display: flex; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
@media (pointer:fine) { .prodCard:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(11,18,32,.10); border-color: rgba(11,58,130,.18); } }

.prodCard__img { width: 100px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(145deg, rgba(11,58,130,.10), rgba(28,106,228,.07)); }
.prodCard__img--blue   { background: linear-gradient(145deg, rgba(11,58,130,.10), rgba(28,106,228,.07)); }
.prodCard__img--green  { background: linear-gradient(145deg, rgba(5,150,105,.10), rgba(6,95,70,.06)); }
.prodCard__img--purple { background: linear-gradient(145deg, rgba(124,58,237,.10), rgba(109,40,217,.06)); }
.prodCard__img--amber  { background: linear-gradient(145deg, rgba(217,119,6,.10), rgba(180,83,9,.06)); }
.prodCard__img--teal   { background: linear-gradient(145deg, rgba(14,116,144,.10), rgba(8,145,178,.06)); }
.prodCard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prodCard__imgInner { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px; text-align: center; }
.prodCard__imgInner span { font-size: 28px; }
.prodCard__imgInner small { font-size: 10px; color: rgba(71,85,105,.70); font-weight: 700; line-height: 1.3; }

.prodCard__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prodCard__cat { display: inline-flex; padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .04em; width: fit-content; background: rgba(11,58,130,.08); border: 1px solid rgba(11,58,130,.14); color: #0B3A82; }
.prodCard__cat--green  { background: rgba(5,150,105,.08);  border-color: rgba(5,150,105,.16);  color: #065F46; }
.prodCard__cat--purple { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.16); color: #7C3AED; }
.prodCard__cat--amber  { background: rgba(217,119,6,.08);  border-color: rgba(217,119,6,.16);  color: #B45309; }
.prodCard__cat--teal   { background: rgba(14,116,144,.08); border-color: rgba(14,116,144,.16); color: #0E7490; }
.prodCard__body h4 { margin: 0; font-size: 14px; letter-spacing: -.01em; line-height: 1.3; }
.prodCard__body p  { margin: 0; font-size: 12.5px; color: rgba(71,85,105,.90); line-height: 1.55; flex: 1; }
.prodCard__link { font-size: 12.5px; font-weight: 900; color: #0B3A82; }
.prodCard__link--green  { color: #065F46; } .prodCard__link--purple { color: #7C3AED; }
.prodCard__link--amber  { color: #B45309; } .prodCard__link--teal   { color: #0E7490; }
.prodCard__link:hover { text-decoration: underline; }

.prodCard--inquiry { background: linear-gradient(145deg, #0B3A82 0%, #1C6AE4 100%); border-color: transparent; flex-direction: column; align-items: center; padding: 0; }
.prodCard__inquiry-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 22px 20px; }
.prodCard__inquiry-icon { font-size: 32px; }
.prodCard--inquiry h4 { margin: 0; font-size: 16px; color: #fff; }
.prodCard--inquiry p  { margin: 0; font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.55; max-width: 24ch; }
.prodCard--inquiry__btn { background: rgba(255,255,255,.15) !important; border: 1px solid rgba(255,255,255,.35) !important; color: #fff !important; margin-top: 8px; }
.prodCard--inquiry__btn:hover { background: rgba(255,255,255,.25) !important; }

/* =========================================================
   15. STUDENTS & TEACHERS
   ========================================================= */
.sttA { position: relative; overflow: hidden; background: transparent; }
.sttA__bg { display: none; } /* buang gradient biru yang tutup pattern */
.sttA__head { max-width: 76ch; margin-bottom: 22px; position: relative; }
.sttA__head h2 { margin: 0 0 8px; font-size: clamp(30px,3.4vw,35px); letter-spacing: -0.03em; }
.sttA__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; align-items: stretch; }
.sttA__left  { padding: 18px; display: grid; gap: 12px; }
.sttA__right { padding: 18px; display: grid; gap: 14px; }
.sttA__kpi { border-radius: 22px; padding: 16px; border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.88); box-shadow: 0 14px 40px rgba(11,18,32,.08); }
.sttA__klabel { font-size: 12px; letter-spacing: .10em; font-weight: 900; color: rgba(71,85,105,.90); }
.sttA__kvalue { margin-top: 8px; font-size: clamp(44px,4.2vw,64px); font-weight: 900; letter-spacing: -0.03em; color: rgba(11,58,130,.98); }
.sttA__foot    { margin-top: auto; display: grid; gap: 12px; padding-top: 4px; }
.sttA__updated { text-align: center; color: rgba(71,85,105,.92); font-weight: 800; font-size: 13px; }
.flagsTitle { font-size: 15px; font-weight: 900; margin: 0 0 12px; }
.flagGrid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.flagItem { aspect-ratio: 1/1; border-radius: 18px; border: 1px solid rgba(15,23,42,.08); background: rgba(255,255,255,.92); box-shadow: 0 14px 40px rgba(15,23,42,.08); overflow: hidden; display: grid; place-items: center; transition: transform .16s ease, box-shadow .16s ease; }
.flagItem img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (pointer:fine) { .flagItem:hover { transform: translateY(-2px); box-shadow: 0 18px 56px rgba(15,23,42,.12); } }
.flagNote { margin: 10px 0 0; font-weight: 800; font-size: 13px; color: rgba(71,85,105,.88); }

/* =========================================================
   16. APPS MARQUEE
   ========================================================= */
.appsMarquee2 { overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); padding: 14px; }
.appsMarquee2__track { display: flex; gap: 12px; width: max-content; align-items: stretch; animation: appsScroll 22s linear infinite; will-change: transform; }
.appsMarquee2:hover .appsMarquee2__track { animation-play-state: paused; }
@keyframes appsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.appPill { flex: 0 0 auto; width: 240px; border-radius: 22px; border: 1px solid rgba(229,231,235,.90); background: rgba(246,248,251,.65); box-shadow: 0 14px 44px rgba(11,18,32,.06); padding: 12px; display: flex; flex-direction: column; gap: 10px; transition: transform .18s ease, box-shadow .18s ease; }
@media (pointer:fine) { .appPill:hover { transform: translateY(-4px); box-shadow: 0 22px 66px rgba(11,18,32,.10); } }
.appPill__top { display: flex; gap: 12px; align-items: center; }
.appPill__icon { width: 54px; height: 54px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(229,231,235,.92); background: rgba(255,255,255,.75); flex: 0 0 auto; }
.appPill__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.appPill__name { margin: 0; font-size: 14px; font-weight: 900; color: rgba(11,18,32,.90); line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.appPill__sub { margin: 2px 0 0; font-size: 12.5px; font-weight: 800; color: rgba(71,85,105,.88); }
.appStores { display: flex; gap: 10px; align-items: center; }
.storeBtn { width: 42px; height: 42px; border-radius: 14px; border: 1px solid rgba(229,231,235,.92); background: rgba(255,255,255,.82); box-shadow: 0 10px 30px rgba(11,18,32,.06); display: grid; place-items: center; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.storeBtn img { width: 22px; height: 22px; object-fit: contain; display: block; }
.storeBtn.is-disabled { opacity: .35; cursor: not-allowed; }
@media (pointer:fine) { .storeBtn:hover:not(.is-disabled) { transform: translateY(-2px); box-shadow: 0 16px 46px rgba(11,18,32,.10); } }

/* =========================================================
   17. PARTNERS MARQUEE
   ========================================================= */
.marquee { overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.marquee__track { display: flex; gap: 12px; padding: 14px; width: max-content; animation: scroll 18s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo { height: 64px; width: 180px; border-radius: 20px; border: 1px solid rgba(229,231,235,.88); background: rgba(246,248,251,.65); display: flex; align-items: center; justify-content: center; }
.logo img { max-height: 40px; max-width: 120px; object-fit: contain; display: block; }

/* =========================================================
   18. LOCATION
   ========================================================= */
.locX { position: relative; overflow: hidden; padding: 72px 0; background: rgba(240,244,250,.45); }
.locX__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: stretch; }
.locCard { border-radius: 28px; border: 1px solid rgba(229,231,235,.88); background: rgba(255,255,255,.88); box-shadow: 0 18px 60px rgba(11,18,32,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.locLeft { padding: 18px; display: flex; flex-direction: column; gap: 14px; border: none; box-shadow: none; background: transparent; backdrop-filter: none; }
.locBrand { display: flex; align-items: center; gap: 12px; }
.locBrand img { width: 44px; height: 44px; object-fit: contain; }
.locBrand__text strong { display: block; font-size: 15px; letter-spacing: -0.01em; }
.locAddr { line-height: 1.6; font-weight: 700; }
.locMeta { display: grid; gap: 10px; padding-top: 2px; }
.locRow { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 12px; border-radius: 18px; border: 1px solid rgba(229,231,235,.88); background: rgba(246,248,251,.70); }
.locKey { font-size: 12px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; color: rgba(71,85,105,.88); white-space: nowrap; }
.locVal { font-weight: 900; color: rgba(11,18,32,.90); text-align: right; }
.locVal a { color: var(--oxford2); } .locVal a:hover { color: var(--oxford); }
.locCopy { margin-top: auto; font-size: 12.5px; font-weight: 800; }
.locMap { padding: 12px; }
.locMap__frame { border-radius: 24px; overflow: hidden; border: 1px solid rgba(229,231,235,.88); background: rgba(246,248,251,.70); box-shadow: 0 14px 44px rgba(11,18,32,.06); height: 100%; min-height: 300px; }
.locMap__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   19. FOOTER
   ========================================================= */
.footer { background: rgba(255,255,255,.60); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.footer__inner { padding: 18px 0; display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.footer__links { display: flex; gap: 14px; font-size: 13px; color: rgba(11,18,32,.78); }
.footer__links a:hover { color: var(--oxford); }

/* =========================================================
   20. TEACHER HUB MODAL
   ========================================================= */
.tmodal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(11,18,32,.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.tmodal.is-open { display: flex; }
body.modal-open { overflow: hidden; }
body.modal-open main, body.modal-open header, body.modal-open footer { filter: blur(6px); }
.tmodal, .tmodal * { filter: none !important; }
.tmodal__backdrop { position: absolute; inset: 0; }
.tmodal__panel { position: relative; width: min(520px, calc(100% - 28px)); border-radius: 22px; background: rgba(255,255,255,.92); border: 1px solid rgba(229,231,235,.9); box-shadow: 0 28px 90px rgba(11,18,32,.25); padding: 18px; transform: translateY(10px); opacity: 0; transition: transform .22s ease, opacity .22s ease; }
.tmodal.is-open .tmodal__panel { transform: translateY(0); opacity: 1; }
.tmodal__panel.shake { animation: shake .28s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-8px)} 50%{transform:translateX(8px)} 75%{transform:translateX(-6px)} }
.tmodal__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.tmodal__title strong { display: block; font-size: 16px; } .tmodal__title small { display: block; color: rgba(71,85,105,.92); margin-top: 2px; }
.tmodal__x { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(229,231,235,.92); background: rgba(255,255,255,.75); cursor: pointer; }
.tmodal__label { display: block; font-weight: 900; font-size: 13px; color: rgba(11,18,32,.82); margin: 6px 0 8px; }
.tmodal__input { width: 100%; margin-top: 8px; border-radius: 18px; padding: 12px; border: 1px solid rgba(229,231,235,.96); background: rgba(255,255,255,.82); font: inherit; outline: none; }
.tmodal__input:focus { border-color: rgba(28,106,228,.45); box-shadow: 0 0 0 7px rgba(28,106,228,.12); }
.tmodal__err { margin: 10px 2px 0; min-height: 18px; color: #b42318; font-weight: 800; font-size: 12.5px; }
.tmodal__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 10px; }

/* =========================================================
   21. TOAST
   ========================================================= */
.toast { position: fixed; left: 50%; top: 18px; transform: translateX(-50%); z-index: 10000; display: none; }
.toast.is-show { display: block; animation: toastIn .22s ease forwards; }
@keyframes toastIn { from { opacity:0; transform: translateX(-50%) translateY(-8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.toast__card { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(229,231,235,.85); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 18px 60px rgba(11,18,32,.16); color: rgba(11,18,32,.88); font-size: 13px; font-weight: 800; }
.toast__card strong { font-weight: 900; } .toast__card span { font-weight: 700; color: rgba(71,85,105,.95); }

/* =========================================================
   22. WHATSAPP FLOAT
   ========================================================= */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 999px; background: linear-gradient(135deg, #25D366, #1ebe5d); color: #fff; font-weight: 700; border: none; box-shadow: 0 18px 40px rgba(37,211,102,.35); transition: transform .2s ease, box-shadow .2s ease; }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 24px 55px rgba(37,211,102,.45); }

/* =========================================================
   23. REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s ease; will-change: opacity, transform; }
.reveal.is-hidden { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   24. RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hamburger  { display: inline-flex; }
  .drawer     { display: block; }

  .hero { padding: 56px 0 28px; }
  .hero__grid { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .scrollcue, .glow { display: none; }
  .bento { display: none !important; }
  .mhero { display: block; }
  .hero__facts { gap: 10px; }
  .fact { min-width: 0; flex: 1 1 30%; padding: 10px 12px; }
  .fact__value { font-size: 18px; }

  .about__grid { grid-template-columns: 1fr; }

  .svc { min-height: 0; }
  .svc__media { height: 170px; }

  .eduX__grid { grid-template-columns: 1fr 1fr; }

  .techX__grid { grid-template-columns: 1fr; }
  .techX__cta  { flex-direction: column; align-items: flex-start; }
  .techX__cta .btn { width: 100%; justify-content: center; }

  .prodX__grid { grid-template-columns: 1fr; }

  .sttA__grid { grid-template-columns: 1fr; }
  .flagGrid   { grid-template-columns: repeat(5,1fr); }

  .locX__grid { grid-template-columns: 1fr; }
  .locMap__frame { min-height: 260px; }
}

@media (max-width: 520px) {
  .wa-float { padding: 14px; }
  .wa-float span { display: none; }
  .flagGrid { grid-template-columns: repeat(4,1fr); gap: 10px; }
  .flagItem { border-radius: 16px; }
  .appPill  { width: 210px; }
  .prodCard__img { width: 80px; }
  .prodCard__imgInner small { display: none; }
  .eduX__grid { grid-template-columns: 1fr; }
  .servicesX__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================
   25. LANGUAGE TOGGLE BUTTON
   ========================================================= */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,.92);
  background: rgba(255,255,255,.75);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: rgba(11,18,32,.82);
  box-shadow: 0 6px 20px rgba(11,18,32,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11,18,32,.10);
  border-color: rgba(11,58,130,.22);
  background: rgba(255,255,255,.95);
}
.lang-toggle:active { transform: scale(.96); }

.lang-toggle__flag  { font-size: 16px; line-height: 1; }
.lang-toggle__label { font-size: 12px; font-weight: 900; letter-spacing: .04em; }

/* Drawer variant — full width */
.lang-toggle--drawer {
  width: 100%;
  justify-content: center;
  border-radius: 16px;
  padding: 12px 14px;
  margin-top: 4px;
}

/* =========================================================
   26. SERVICE LIST — ENHANCED + MOBILE FIX
   ========================================================= */

/* Fix horizontal scroll on iOS */
html, body { max-width: 100%; overflow-x: hidden; }

.svc { min-height: 480px; }
.svc__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc__body > p { margin: 0; color: rgba(71,85,105,.95); line-height: 1.65; }
.svc__list-group { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.svc__spacer { flex: 1; }
.svc__link { font-weight: 900; color: var(--oxford); font-size: 13.5px; }

/* Styled label */
.svc__list-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 900; letter-spacing: .10em;
  text-transform: uppercase; color: rgba(71,85,105,.80);
  padding: 6px 0 4px 2px;
  border-top: 1px solid rgba(229,231,235,.90);
}

/* Colored block */
.svc__list-block {
  background: rgba(11,58,130,.04); border: 1px solid rgba(11,58,130,.10);
  border-radius: 16px; padding: 10px 12px;
}
.svc__list-block--blue { background: rgba(28,106,228,.05); border-color: rgba(28,106,228,.12); }
.svc__list-block--gold { background: rgba(201,162,75,.06); border-color: rgba(201,162,75,.18); }
.svc__list-block--dashed { background: rgba(71,85,105,.04); border-color: rgba(71,85,105,.12); border-style: dashed; }

/* Remove default bullet & reset ul */
.svc__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(11,18,32,.82);
  list-style: none !important;
}
/* Remove any ::marker */
.svc__list li::marker { display: none; content: ""; }

.svc__list li .svc__ico { font-size: 14px; flex-shrink: 0; }
.svc__list li .svc__arr { font-size: 11px; font-weight: 900; color: #0B3A82; flex-shrink: 0; opacity: .85; }
.svc__list--blue  li .svc__arr { color: #1C6AE4; }
.svc__list--gold  li .svc__arr { color: #8a6b1f; }
.svc__list--faded li { color: rgba(11,18,32,.60); }
.svc__list--faded li .svc__arr { opacity: .40; }

.apps__cta {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.apps__cta p { margin: 0 0 4px; }
.apps__cta a {
  color: var(--oxford);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.apps__cta a:hover { color: var(--oxford2); }

/* iOS overflow fix */
* { -webkit-tap-highlight-color: transparent; }
.wrap, .servicesX__grid, .svc, .svc__body { max-width: 100%; box-sizing: border-box; }