/* === Brilliant Learning Center === */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.blog-card .img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.blog-card .body {
  padding: 20px;
}

.blog-card .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 12px;
}

.blog-card .cat {
  color: #d48a12;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.blog-card h4 {
  margin: 0 0 12px;
}

.blog-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

:root {
  --brand: #1B3A8A;
  --brand-deep: #102559;
  --brand-light: #2C50B0;
  --accent: #F5A623;
  --accent-deep: #E08E0B;
  --ink: #0F1A36;
  --ink-2: #3B4566;
  --muted: #6B7390;
  --line: #E5E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;
  --bg-tint: #EEF2FB;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15,26,54,.06), 0 2px 6px rgba(15,26,54,.04);
  --shadow-md: 0 6px 20px rgba(15,26,54,.08), 0 2px 6px rgba(15,26,54,.05);
  --shadow-lg: 0 18px 50px rgba(15,26,54,.14);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; min-width: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOPBAR ========== */
.topbar {
  background: var(--brand-deep);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: inherit; opacity: .9; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar .info { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar .info span { display: inline-flex; gap: 6px; align-items: center; }
.topbar .socials { display: flex; gap: 14px; }

/* ========== HEADER ========== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand-text { min-width: 0; }
.brand-text .name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--brand); letter-spacing: -.01em; }
.brand-text .tag { font-size: 11px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  font-weight: 500; font-size: 14.5px; padding: 10px 16px; border-radius: 8px;
  color: var(--ink-2); transition: all .15s;
}
.nav a:hover, .nav a.active { color: var(--brand); background: var(--bg-tint); }
.nav .cta { margin-left: 8px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 14.5px;
  transition: all .18s; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--brand-deep); }
.btn-accent:hover { background: var(--accent-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn-light:hover { background: rgba(255,255,255,.22); }

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--brand);
}
.menu-fallback { display: none; }
@media (min-width: 981px) {
  .menu-toggle { display: none !important; }
}
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; border-top: 1px solid var(--line); align-items: stretch; box-shadow: var(--shadow-md); max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav a, .nav .cta { width: 100%; justify-content: center; text-align: center; margin-left: 0; }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--brand);
  }
  .menu-toggle i { display: none; }
  .menu-fallback {
    display: block;
    font-size: 23px;
    line-height: 1;
  }
  .menu-toggle::before {
    content: "";
    font-size: 23px;
    line-height: 1;
  }
  .nav.open + .menu-toggle::before {
    content: "";
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .topbar { display: none; }
  .header .row { padding: 10px 0; gap: 10px; }
  .brand { gap: 9px; }
  .brand img { width: 38px; height: 38px; }
  .brand-text { max-width: calc(100vw - 120px); }
  .brand-text .name {
    font-size: 15.5px;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-text .tag {
    font-size: 9px;
    letter-spacing: .09em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav { padding: 12px 18px 18px; max-height: calc(100vh - 58px); }
  .nav a { padding: 12px 14px; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 56%, var(--brand-light) 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 58px;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(900px 420px at 100% 0%, rgba(245,166,35,.14), transparent 62%),
    radial-gradient(720px 340px at 0% 100%, rgba(44,80,176,.36), transparent 64%);
  pointer-events: none;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .085;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.72) 1px, transparent 0);
  background-size: 28px 28px;
}
.hero-grid,
.hero.layout-image-left .hero-grid,
.hero.layout-full .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}
.hero.layout-image-left .hero-text,
.hero.layout-image-left .hero-visual { order: initial; }
.hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-visual { display: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(15,26,54,.28);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(245,166,35,.42);
  margin: 0 auto 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(42px, 5.25vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 auto 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.88);
  font-size: clamp(15.5px, 1.5vw, 18px);
  line-height: 1.65;
  text-align: center;
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.hero .btn {
  min-height: 52px;
  padding: 14px 25px;
  border-radius: 11px;
  font-weight: 700;
}

.hero-stats {
  width: 100%;
  max-width: 1180px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}
.hero-stats .item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  text-align: left;
  border-left: 1px solid rgba(255,255,255,.16);
}
.hero-stats .item:first-child { border-left: 0; }
.hero-stats .stat-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 23px;
  border: 1.5px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.03);
}
.hero-stats .num {
  font-family: var(--font-head);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
  margin-bottom: 3px;
}
.hero-stats .label {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.hero-stats .sub {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero { padding: 56px 0 60px; min-height: auto; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 0; max-width: 760px; }
  .hero-stats .item { justify-content: flex-start; }
  .hero-stats .item:nth-child(odd) { border-left: 0; }
}
@media (max-width: 640px) {
  .hero { padding: 42px 0 46px; min-height: auto; align-items: flex-start; }
  .eyebrow {
    display: block;
    width: auto;
    max-width: 330px;
    white-space: normal;
    line-height: 1.35;
    font-size: 10.5px;
    padding: 7px 12px;
    margin: 0 auto 18px;
    overflow-wrap: normal;
    text-align: center;
  }
  .eyebrow .dot { display: none; }
  .hero h1 {
    max-width: 330px;
    font-size: clamp(27px, 7.6vw, 31px);
    line-height: 1.12;
    overflow-wrap: normal;
    text-wrap: balance;
    margin-bottom: 18px;
  }
  .hero p.lead { max-width: 330px; font-size: 14.5px; line-height: 1.62; margin-bottom: 24px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 34px; gap: 12px; }
  .hero-stats .item {
    border-left: 0;
    justify-content: flex-start;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
  }
  .hero-stats .stat-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .hero-stats .num { font-size: 18px; }
  .hero-stats .label { font-size: 13.5px; }
  .hero-stats .sub { font-size: 12px; }
}
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .brand img { width: 34px; height: 34px; }
  .brand-text { max-width: calc(100vw - 108px); }
  .brand-text .name { font-size: 14px; }
  .brand-text .tag { display: none; }
  .hero h1 { font-size: 27px; }
  .btn { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 640px) {
  section { padding: 58px 0; scroll-margin-top: 64px; }
  .sec-head { margin-bottom: 34px; }
  .sec-head .kicker, .about-text .kicker, .faq-side .kicker {
    font-size: 11.5px;
    letter-spacing: .1em;
  }
  .sec-head h2,
  .about-text h2,
  .faq-side h2 {
    font-size: clamp(25px, 7.3vw, 32px);
  }
  .sec-head p { font-size: 14.5px; }
  .hero-cta-row .btn,
  .cta-band .btn,
  .reg-actions .btn,
  .success-card .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .about-grid { gap: 34px; }
  .about-visual { display: none; }
  .about-visual .img-main { aspect-ratio: 4/4.4; }
  .about-visual .accent-shape { display: none; }
  .about-visual .credit-card {
    left: 12px;
    right: 12px;
    bottom: 14px;
    max-width: none;
    padding: 14px 16px;
  }
  .about-visual .credit-card .num { font-size: 26px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }
  .stats-band { padding: 42px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stats-grid .item { padding: 18px 10px; }
  .stats-grid .item,
  .stats-grid .item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .stats-grid .item:last-child { border-bottom: none; }
  .stats-grid .num { font-size: 34px; }
  .stats-grid .label { font-size: 12.5px; line-height: 1.4; }
  .vm-card,
  .service-card,
  .format-card {
    padding: 24px 20px;
  }
  .vm-card h3,
  .format-card h3 {
    font-size: 22px;
  }
  .service-head {
    align-items: flex-start;
    gap: 12px;
  }
  .service-head .ico {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .service-head h3 { font-size: 19px; }
  .service-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .team-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: -4px -18px 32px;
    padding-left: 18px;
    padding-right: 18px;
    scrollbar-width: none;
  }
  .team-tabs::-webkit-scrollbar { display: none; }
  .team-tabs button {
    flex: 0 0 auto;
    padding: 9px 16px;
    white-space: nowrap;
  }
  .team-grid,
  .member-lead {
    grid-template-columns: 1fr;
  }
  .member-lead {
    grid-column: span 1;
    padding: 22px;
    gap: 20px;
  }
  .member-lead h3 { font-size: 20px; overflow-wrap: anywhere; }
  .uni-grid { gap: 12px; }
  .uni-card { padding: 18px 10px; }
  .blog-card .body { padding: 20px; }
  .faq-item button {
    padding: 18px;
    align-items: flex-start;
    font-size: 14.5px;
  }
  .faq-item .answer-inner { padding: 0 18px 18px; }
  .contact-grid { gap: 22px; }
  .contact-info { padding: 24px 20px; }
  .contact-info .item { gap: 12px; }
  .contact-info .item .val { overflow-wrap: anywhere; }
  .contact-map,
  .map-frame {
    min-height: 320px;
  }
  .cta-band { padding: 58px 0; }
  .cta-band p { font-size: 15px; }
  .cta-band .row { width: 100%; }
  .footer { padding-top: 48px; }
  .footer-grid { gap: 28px; padding-bottom: 36px; }
  .footer .newsletter {
    flex-direction: column;
  }
  .footer .newsletter button {
    width: 100%;
  }
  .wa-fab {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
    font-size: 24px;
  }
}

/* ========== SECTIONS ========== */
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head .kicker {
  display: inline-block; color: var(--accent-deep); font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 16px; }

/* ========== ABOUT ========== */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-visual .img-main {
  aspect-ratio: 4/4.2; /* sebelumnya 4/5, sekarang lebih pendek agar bawah terpotong */
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-visual .accent-shape {
  position: absolute; right: -20px; bottom: -20px;
  width: 140px; height: 140px;
  background: var(--accent);
  border-radius: 24px;
  z-index: -1;
}
.about-visual .credit-card {
  position: absolute; left: -28px; bottom: 32px;
  background: #fff; padding: 18px 22px; border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 14px; align-items: center;
  max-width: 280px;
}
.about-visual .credit-card .num { font-size: 32px; font-weight: 800; color: var(--brand); font-family: var(--font-head); }
.about-visual .credit-card .txt { font-size: 13px; color: var(--ink-2); line-height: 1.4; }

.about-text .kicker { color: var(--accent-deep); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 14px; }
.about-text h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.about-text p { color: var(--ink-2); margin-bottom: 16px; font-size: 15.5px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-features .feat { display: flex; gap: 12px; align-items: flex-start; }
.about-features .feat .ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-tint); color: var(--brand);
  display: grid; place-items: center; font-size: 18px;
}
.about-features .feat .ttl { font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.about-features .feat .desc { font-size: 13px; color: var(--muted); line-height: 1.45; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 440px; margin: 0 auto; }
}

/* ========== STATS COUNTER ========== */
.stats-band {
  background: var(--brand-deep);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0; opacity: .08;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.5) 1px, transparent 0);
  background-size: 28px 28px;
}
.stats-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stats-grid .item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid .item:last-child { border-right: none; }
.stats-grid .num {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  color: var(--accent); letter-spacing: -.02em; line-height: 1;
  margin-bottom: 8px;
}
.stats-grid .label { color: rgba(255,255,255,.85); font-size: 14px; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .item:nth-child(2) { border-right: none; }
}

/* ========== VISION & MISSION ========== */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  padding: 40px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff; transition: all .25s;
  position: relative; overflow: hidden;
}
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vm-card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 26px; margin-bottom: 22px;
}
.vm-card.vision .ico { background: var(--brand); color: #fff; }
.vm-card.mission .ico { background: var(--accent); color: #fff; }
.vm-card h3 { font-size: 26px; margin-bottom: 14px; }
.vm-card p { color: var(--ink-2); font-size: 15px; }
.vm-card ul { list-style: none; padding: 0; margin: 0; }
.vm-card ul li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  font-size: 14.5px; color: var(--ink-2);
}
.vm-card ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 4px; background: var(--accent);
}
@media (max-width: 768px) { .vm-grid { grid-template-columns: 1fr; } }

/* ========== SERVICES ========== */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 36px; transition: all .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured::before { transform: scaleX(1); background: var(--accent); }
.service-head { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.service-head .ico {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-tint); color: var(--brand);
  display: grid; place-items: center; font-size: 26px;
  flex-shrink: 0;
}
.service-card.featured .service-head .ico { background: var(--accent); color: #fff; }
.service-head h3 { font-size: 22px; margin: 0 0 4px; }
.service-head .lvl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.service-card ul li {
  font-size: 14.5px; color: var(--ink-2);
  padding: 8px 0; border-bottom: 1px dashed var(--line);
  display: flex; gap: 10px; align-items: flex-start;
}
.service-card ul li::before {
  content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0;
}
.service-card.featured ul li::before { color: var(--accent-deep); }
.service-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; }
.service-foot .price { font-family: var(--font-head); font-weight: 700; color: var(--brand); font-size: 15px; }
.service-foot a { font-size: 13.5px; font-weight: 600; color: var(--brand); display: inline-flex; gap: 4px; align-items: center; }

.format-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.format-card {
  padding: 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.format-card.private { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%); color: var(--brand-deep); }
.format-card .tag {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.18); margin-bottom: 14px;
}
.format-card.private .tag { background: rgba(16,37,89,.18); }
.format-card h3 { color: inherit; font-size: 24px; margin-bottom: 14px; }
.format-card ul { list-style: none; padding: 0; margin: 0; }
.format-card ul li { padding: 6px 0; font-size: 14px; opacity: .92; padding-left: 22px; position: relative; }
.format-card ul li::before { content: '→'; position: absolute; left: 0; opacity: .8; }

@media (max-width: 768px) {
  .services-grid, .format-row { grid-template-columns: 1fr; }
}

/* ========== TEAM ========== */
.team-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.team-tabs button {
  padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  background: var(--bg-soft); color: var(--ink-2);
  border: 1.5px solid var(--line); transition: all .15s;
}
.team-tabs button.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: #fff;
  border: 1px solid var(--line); transition: all .2s;
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member .photo {
  aspect-ratio: 1/1.1;
  background-size: cover; background-position: center top;
  background-color: var(--bg-tint);
  position: relative;
}
.member .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16,37,89,.65) 100%);
}
.member .info {
  padding: 18px 18px 20px; text-align: center;
}
.member .name { font-weight: 700; font-size: 15.5px; color: var(--ink); margin-bottom: 2px; }
.member .role { font-size: 12.5px; color: var(--accent-deep); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.member .uni { font-size: 12px; color: var(--muted); }
.member-lead {
  grid-column: span 4;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px;
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 32px; align-items: center;
  border: 1px solid var(--line); margin-bottom: 20px;
}
.member-lead .photo {
  aspect-ratio: 1/1.05;
  background-size: cover; background-position: center top;
  border-radius: 12px;
  background-color: var(--bg-tint);
}
.member-lead h3 { font-size: 24px; margin-bottom: 6px; }
.member-lead .role { color: var(--accent-deep); font-weight: 600; margin-bottom: 14px; font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; }
.member-lead p { color: var(--ink-2); font-size: 14.5px; }
@media (max-width: 880px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .member-lead { grid-column: span 2; grid-template-columns: 1fr; }
}

/* ========== ACHIEVEMENT ========== */
.achievement {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.achievement::before {
  content: ''; position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.5) 1px, transparent 0);
  background-size: 28px 28px;
}
.achievement .sec-head h2 { color: #fff; }
.achievement .sec-head p { color: rgba(255,255,255,.82); }
.achievement .sec-head .kicker { color: var(--accent); }
.uni-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.uni-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  transition: all .2s;
}
.uni-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.uni-card .seal {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  margin: 0 auto 10px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800;
  color: var(--brand); font-size: 14px;
  letter-spacing: .04em;
}
.uni-card .nm { font-size: 11.5px; color: rgba(255,255,255,.95); font-weight: 600; line-height: 1.35; }
@media (max-width: 880px) { .uni-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .uni-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-soft); }
.testi-carousel {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 64px;
}
.testi-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.testi-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.testi-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 6px;
}
.testi-slide-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.testi-slide-grid.count-1 {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
}
.testi-slide-grid.count-2 {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.testi-card {
  background: #fff; padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: all .25s;
  width: 100%;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-image-card {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.testi-image {
  display: block;
  width: 100%;
  height: clamp(280px, 32vw, 470px);
  object-fit: contain;
  background: #fff;
}
.testi-card .quote-mark {
  font-family: Georgia, serif; font-size: 60px; line-height: 1;
  color: var(--accent); position: absolute; top: 14px; right: 22px; opacity: .35;
}
.testi-card .stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card .quote { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; margin-bottom: 24px; }
.testi-card .who { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-card .who .ph {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-tint); flex-shrink: 0;
  background-size: cover; background-position: center;
}
.testi-card .who .nm { font-weight: 700; font-size: 14px; }
.testi-card .who .place { font-size: 12px; color: var(--muted); }
.testi-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}
.testi-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%);
  transition: all .18s;
}
.testi-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.testi-nav.prev { left: 0; }
.testi-nav.next { right: 0; }
@media (max-width: 880px) {
  .testi-carousel {
    max-width: 720px;
    padding: 0 48px;
  }
  .testi-slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .testi-slide-grid.count-1,
  .testi-slide-grid.count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testi-slide-grid.count-1 .testi-image-card {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }
  .testi-slide-grid .testi-image-card:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }
}

.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.slider-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); border: none; padding: 0; cursor: pointer;
  transition: all .15s;
}
.slider-dots .dot.active { background: var(--brand); transform: scale(1.2); }
@media (max-width: 640px) {
  .testi-carousel {
    padding: 0;
  }
  .testi-viewport {
    border-radius: 14px;
  }
  .testi-slide {
    padding: 0;
  }
  .testi-slide-grid,
  .testi-slide-grid.count-1,
  .testi-slide-grid.count-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testi-image {
    height: auto;
    max-height: none;
  }
  .testi-nav {
    top: auto;
    bottom: -58px;
    transform: none;
    width: 40px;
    height: 40px;
  }
  .testi-nav.prev {
    left: calc(50% - 58px);
  }
  .testi-nav.next {
    right: calc(50% - 58px);
  }
  .slider-dots {
    margin-top: 76px;
  }
}

/* ========== GALLERY ========== */
.gallery-showcase-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 74px 0;
}
.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.gallery-copy {
  min-width: 0;
}
.gallery-copy h2 {
  max-width: 430px;
  margin: 16px 0 18px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.18;
}
.gallery-copy p {
  max-width: 430px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
}
.gallery-highlight-list {
  display: grid;
  gap: 0;
  max-width: 390px;
  margin-top: 30px;
}
.gallery-highlight {
  display: grid;
  grid-template-columns: 54px 16px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}
.gallery-highlight:last-child {
  border-bottom: 0;
}
.gallery-highlight-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 14px 28px rgba(15, 26, 54, .08);
  font-size: 21px;
}
.gallery-highlight > .bi-check-lg {
  color: var(--accent-deep);
  font-size: 18px;
  font-weight: 800;
}
.gallery-highlight strong {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
}
.gallery-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .9fr);
  grid-auto-rows: 188px;
  gap: 16px;
  min-width: 0;
}
.gallery-photo-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--brand-deep);
  box-shadow: 0 14px 28px rgba(15, 26, 54, .1);
}
.gallery-photo-card.featured {
  grid-row: span 2;
}
.gallery-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-photo-card:hover img {
  transform: scale(1.035);
}
.gallery-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(90deg, rgba(15, 35, 68, .98), rgba(15, 35, 68, .86));
  backdrop-filter: blur(8px);
}
.gallery-photo-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
  box-shadow: 0 10px 22px rgba(245, 166, 35, .28);
}
.gallery-photo-caption h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}
.gallery-photo-caption p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.4;
}
.gallery-empty {
  grid-column: 1 / -1;
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}
.gallery-empty i {
  color: var(--brand);
  font-size: 34px;
}
@media (max-width: 1120px) {
  .gallery-showcase {
    grid-template-columns: 1fr;
  }
  .gallery-copy h2,
  .gallery-copy p,
  .gallery-highlight-list {
    max-width: 760px;
  }
  .gallery-board {
    grid-auto-rows: 200px;
  }
}
@media (max-width: 760px) {
  .gallery-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .gallery-copy p {
    font-size: 15px;
    line-height: 1.75;
  }
  .gallery-highlight-list {
    margin-top: 30px;
  }
  .gallery-highlight {
    grid-template-columns: 56px 16px minmax(0, 1fr);
    gap: 12px;
    min-height: 84px;
  }
  .gallery-highlight-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  .gallery-highlight strong {
    font-size: 15px;
  }
  .gallery-board {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-photo-card,
  .gallery-photo-card.featured {
    grid-row: auto;
    min-height: 220px;
  }
  .gallery-photo-caption {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }
  .gallery-photo-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }
  .gallery-photo-caption h3 {
    font-size: 16px;
  }
  .gallery-photo-caption p {
    font-size: 13px;
  }
}

/* ========== BLOG ========== */
.blog { background: var(--bg-soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  transition: all .25s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  position: relative;
}
.blog-card .img .placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 12px, transparent 12px 24px);
  display: grid; place-items: center;
  font-family: ui-monospace, monospace; font-size: 11px; color: rgba(255,255,255,.8);
}
.blog-card .body { padding: 24px; }
.blog-card .meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card .meta .cat { color: var(--accent-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h4 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { color: var(--ink-2); font-size: 14px; }
.blog-card:focus-visible {
  outline: 3px solid rgba(27,58,138,.24);
  outline-offset: 4px;
  border-color: var(--brand);
}
.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}
.blog-card .read-more i {
  transition: transform .18s;
}
.blog-card:hover .read-more i,
.blog-card:focus-visible .read-more i {
  transform: translateX(4px);
}
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

.article-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15,26,54,.64);
  backdrop-filter: blur(8px);
}
.article-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.article-close {
  position: sticky;
  top: 16px;
  z-index: 2;
  float: right;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 16px 16px -58px 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: all .18s;
}
.article-close:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.article-hero {
  height: 320px;
  overflow: hidden;
  background: var(--bg-tint);
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: rgba(255,255,255,.86);
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-content {
  padding: 38px 48px 46px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.article-meta span:first-child {
  color: var(--accent-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-modal h3 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.14;
  margin-bottom: 16px;
}
.article-lead {
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
}
.article-section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.article-section h4 {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 19px;
}
.article-section p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.82;
}
.article-takeaway {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 12px;
  background: rgba(245,166,35,.11);
  color: var(--brand-deep);
}
.article-takeaway i {
  color: var(--accent-deep);
  font-size: 20px;
  line-height: 1.5;
}
.article-takeaway p {
  margin: 0;
  font-weight: 700;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .article-modal-backdrop {
    padding: 10px;
    align-items: end;
  }
  .article-modal {
    max-height: calc(100vh - 20px);
    border-radius: 16px 16px 0 0;
  }
  .article-close {
    top: 10px;
    width: 38px;
    height: 38px;
    margin: 10px 10px -48px 0;
  }
  .article-hero {
    height: 210px;
  }
  .article-content {
    padding: 26px 20px 34px;
  }
  .article-meta {
    gap: 8px 12px;
    font-size: 12px;
  }
  .article-lead {
    font-size: 15px;
    line-height: 1.7;
  }
  .article-section h4 {
    font-size: 17px;
  }
}

/* ========== FAQ ========== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.faq-side h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.faq-side .kicker { color: var(--accent-deep); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 14px; display: block; }
.faq-side p { color: var(--muted); margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  transition: all .2s;
}
.faq-item.open { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item button {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--ink);
}
.faq-item .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-tint); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-item .answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .answer { max-height: 300px; }
.faq-item .answer-inner { padding: 0 24px 22px; color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff; padding: 40px;
  border-radius: var(--radius);
}
.contact-info h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.contact-info p { color: rgba(255,255,255,.82); margin-bottom: 30px; font-size: 14.5px; }
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .item .ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: var(--accent);
  display: grid; place-items: center; font-size: 18px;
  flex-shrink: 0;
}
.contact-info .item .ttl { font-size: 12px; opacity: .7; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.contact-info .item .val { font-size: 14.5px; font-weight: 500; }
.contact-info .socials { display: flex; gap: 10px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-info .socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center; transition: all .2s;
  font-size: 16px;
}
.contact-info .socials a:hover { background: var(--accent); color: var(--brand-deep); }

.contact-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-soft);
  position: relative; min-height: 480px;
}
.map-frame { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ========== CTA BAND ========== */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--brand-deep); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; color: var(--brand-deep); }
.cta-band p { font-size: 17px; max-width: 600px; margin: 0 auto 28px; color: rgba(16,37,89,.85); }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--brand-deep); color: #fff; }
.cta-band .btn-primary:hover { background: var(--ink); }
.cta-band .btn-ghost { background: transparent; color: var(--brand-deep); border: 1.5px solid var(--brand-deep); }
.cta-band .btn-ghost:hover { background: var(--brand-deep); color: #fff; }

/* ========== FOOTER ========== */
.footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 70px 0 0; font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-weight: 700; }
.footer .brand { margin-bottom: 18px; }
.footer .brand-text .name { color: #fff; }
.footer .brand-text .tag { color: var(--accent); }
.footer p.about { line-height: 1.7; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a:hover { color: var(--accent); }
.footer .newsletter { display: flex; gap: 8px; margin-bottom: 14px; }
.footer .newsletter input {
  flex: 1; padding: 12px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: #fff; font-size: 14px; font-family: inherit;
}
.footer .newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer .newsletter button {
  padding: 12px 18px; background: var(--accent); color: var(--brand-deep);
  border-radius: 8px; font-weight: 700; font-size: 13px; transition: all .15s;
}
.footer .newsletter button:hover { background: #fff; }
.footer .copy { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ========== WHATSAPP FAB ========== */
.wa-fab {
  position: fixed; bottom: 26px; right: 26px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 100; transition: all .2s;
  animation: wa-pulse 2.4s infinite;
}
.wa-fab:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ========== REGISTRATION PAGE ========== */
.reg-hero {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff; padding: 70px 0 110px;
  position: relative; overflow: hidden;
}
.reg-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .08;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.5) 1px, transparent 0);
  background-size: 28px 28px;
}
.reg-hero .container { position: relative; }
.reg-hero h1 { color: #fff; font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; }
.reg-hero p { color: rgba(255,255,255,.82); font-size: 16px; max-width: 600px; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumbs a { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; }

.reg-wrap { margin-top: -70px; position: relative; z-index: 2; padding-bottom: 80px; }
.reg-card {
  background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  overflow: hidden;
}
.reg-stepper {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.reg-stepper .step {
  flex: 1; padding: 22px 20px;
  display: flex; gap: 14px; align-items: center;
  position: relative; cursor: default;
  border-right: 1px solid var(--line);
}
.reg-stepper .step:last-child { border-right: none; }
.reg-stepper .step .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: var(--muted);
  flex-shrink: 0;
}
.reg-stepper .step.active .num { background: var(--brand); border-color: var(--brand); color: #fff; }
.reg-stepper .step.done .num { background: var(--accent); border-color: var(--accent); color: #fff; }
.reg-stepper .step .label { font-size: 13px; color: var(--muted); }
.reg-stepper .step .ttl { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.reg-stepper .step.active .ttl, .reg-stepper .step.done .ttl { color: var(--ink); }

.reg-body { padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: span 2; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--accent-deep); margin-left: 2px; }
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 14.5px; font-family: inherit; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(27,58,138,.1);
}
.field textarea { min-height: 90px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.field.error input, .field.error select, .field.error textarea { border-color: #DC2626; }
.field.error .err { color: #DC2626; font-size: 12px; margin-top: 6px; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill {
  padding: 10px 18px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 14px; cursor: pointer; transition: all .15s; background: #fff;
  font-weight: 500;
}
.radio-pill.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.radio-pill input { display: none; }

.upload {
  border: 2px dashed var(--line); border-radius: 12px;
  padding: 28px; text-align: center; cursor: pointer;
  transition: all .15s; background: var(--bg-soft);
}
.upload:hover, .upload.drag { border-color: var(--brand); background: var(--bg-tint); }
.upload .ico { font-size: 32px; color: var(--brand); margin-bottom: 8px; }
.upload .t { font-weight: 600; font-size: 14px; }
.upload .s { font-size: 12px; color: var(--muted); margin-top: 4px; }
.upload input { display: none; }
.upload-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.upload-list .file {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 12px; background: #fff; border-radius: 8px; font-size: 13px;
  border: 1px solid var(--line);
}
.upload-list .file .x { margin-left: auto; color: var(--muted); cursor: pointer; }

.program-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.program-card {
  padding: 18px; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: all .15s; background: #fff;
}
.program-card:hover { border-color: var(--brand); }
.program-card.active { border-color: var(--brand); background: var(--bg-tint); }
.program-card .head { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.program-card .ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 16px;
}
.program-card.active .ico { background: var(--accent); color: var(--brand-deep); }
.program-card .t { font-weight: 700; font-size: 14.5px; }
.program-card .s { font-size: 12.5px; color: var(--muted); }
@media (max-width: 768px) { .program-options { grid-template-columns: 1fr; } }

.section-h {
  font-family: var(--font-head); font-weight: 800;
  font-size: 18px; color: var(--ink);
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
  margin: 8px 0 24px; display: flex; gap: 10px; align-items: center;
}
.section-h .num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 13px;
}
.section-h:not(:first-child) { margin-top: 36px; }

.reg-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.consent { display: flex; gap: 10px; align-items: flex-start; padding: 16px; background: var(--bg-soft); border-radius: 10px; }
.consent input[type="checkbox"] { margin-top: 3px; }
.consent label { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

.success-card {
  text-align: center; padding: 60px 32px;
}
.success-card .check {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff; display: grid; place-items: center;
  margin: 0 auto 28px; font-size: 42px;
  box-shadow: 0 12px 32px rgba(34,197,94,.3);
}
.success-card h2 { font-size: 32px; margin-bottom: 14px; }
.success-card p { color: var(--ink-2); font-size: 16px; max-width: 460px; margin: 0 auto 28px; }
.success-card .ref {
  display: inline-block; padding: 14px 22px; background: var(--bg-soft); border-radius: 10px;
  font-family: ui-monospace, monospace; font-weight: 700; color: var(--brand);
  margin-bottom: 28px; border: 1px dashed var(--line);
}

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .reg-body { padding: 28px 22px; }
  .reg-stepper { flex-direction: column; }
  .reg-stepper .step { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ========== ADMIN ========== */
.admin-body {
  min-height: 100vh;
  background: #F4F6FB;
  color: var(--ink);
}
.admin-setup,
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-setup-card,
.admin-login-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 28px;
}
.admin-setup-card img,
.admin-login-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.admin-setup-card h1 {
  margin: 18px 0 10px;
  font-size: 24px;
}
.admin-setup-card p {
  margin: 0 0 18px;
  color: var(--ink-2);
}
.admin-code {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0F1A36;
  color: #E8EEF9;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  line-height: 1.7;
  overflow-x: auto;
  margin-bottom: 18px;
}
.admin-login-brand,
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-login-brand {
  margin-bottom: 24px;
}
.admin-login-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--brand);
}
.admin-login-subtitle {
  color: var(--muted);
  font-size: 13px;
}
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 18px;
  background: var(--brand-deep);
  color: #fff;
}
.admin-brand {
  min-height: 46px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
}
.admin-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.admin-nav {
  display: grid;
  gap: 6px;
}
.admin-nav button,
.admin-sidebar-foot button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  text-align: left;
  font-weight: 700;
  transition: all .18s;
}
.admin-nav button:hover,
.admin-nav button.active,
.admin-sidebar-foot button:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.admin-sidebar-foot {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.admin-user-email {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.admin-main {
  min-width: 0;
  padding: 28px;
}
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.admin-top h1 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 4px;
}
.admin-top p {
  margin: 0;
  color: var(--muted);
}
.admin-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-primary-btn,
.admin-ghost-btn,
.admin-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  transition: all .18s;
}
.admin-primary-btn {
  width: 100%;
  background: var(--brand);
  color: #fff;
}
.admin-primary-btn:hover {
  background: var(--brand-deep);
}
.admin-danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  width: 100%;
  padding: 10px 16px;
  border: 1px solid rgba(220,38,38,.28);
  border-radius: 8px;
  background: #FEF2F2;
  color: #B91C1C;
  font-weight: 800;
  font-size: 14px;
  transition: all .18s;
}
.admin-danger-btn:hover {
  background: #DC2626;
  border-color: #DC2626;
  color: #fff;
}
.admin-primary-btn:disabled,
.admin-ghost-btn:disabled {
  opacity: .62;
  cursor: wait;
}
.admin-ghost-btn,
.admin-link-btn {
  width: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.admin-ghost-btn:hover,
.admin-link-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.admin-text-btn {
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}
.admin-workspace {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-form-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.admin-form-panel .admin-panel-head {
  padding: 0 0 14px;
}
.admin-help-text {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.admin-panel-head h2 {
  font-size: 18px;
}
.admin-panel-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.admin-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.admin-field textarea {
  resize: vertical;
  min-height: 90px;
}
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(27,58,138,.1);
}
.admin-upload-field {
  gap: 9px;
}
.admin-image-uploader {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}
.admin-image-preview {
  width: 108px;
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}
.admin-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-image-preview div {
  display: grid;
  gap: 6px;
  place-items: center;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}
.admin-image-preview i {
  color: var(--brand);
  font-size: 24px;
}
.admin-upload-actions {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.admin-upload-btn,
.admin-clear-image-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: all .18s;
}
.admin-upload-btn {
  background: var(--brand);
  color: #fff;
  cursor: pointer;
}
.admin-upload-btn:hover {
  background: var(--brand-deep);
}
.admin-upload-btn input {
  display: none;
}
.admin-clear-image-btn {
  border: 1px solid rgba(220,38,38,.24);
  background: #fff;
  color: #B91C1C;
}
.admin-clear-image-btn:hover {
  background: #FEF2F2;
}
.admin-upload-actions small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.admin-check,
.admin-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}
.admin-check input {
  width: 17px;
  height: 17px;
}
.admin-toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.admin-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.admin-switch span {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #D8DEE9;
  transition: background .18s;
}
.admin-switch span::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15,26,54,.22);
  transition: transform .18s;
}
.admin-switch input:checked + span {
  background: var(--brand);
}
.admin-switch input:checked + span::after {
  transform: translateX(18px);
}
.admin-list {
  display: grid;
}
.admin-list-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}
.admin-list-item:first-child {
  border-top: 0;
}
.admin-list-item.article {
  grid-template-columns: 76px minmax(0, 1fr) auto auto;
}
.admin-avatar,
.admin-thumb {
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg-tint);
  color: var(--brand);
  font-weight: 800;
}
.admin-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.admin-thumb {
  width: 76px;
  height: 48px;
  border-radius: 8px;
}
.admin-avatar img,
.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-list-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.admin-list-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-list-copy span {
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-status {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.admin-row-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.admin-row-actions button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: all .15s;
}
.admin-row-actions button:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.admin-row-actions .admin-action-btn.danger {
  border-color: rgba(220,38,38,.22);
  color: #B91C1C;
}
.admin-row-actions .admin-action-btn.danger:hover {
  background: #DC2626;
  border-color: #DC2626;
  color: #fff;
}
.admin-alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 14px;
}
.admin-alert.error {
  border: 1px solid rgba(220,38,38,.25);
  background: #FEF2F2;
  color: #B91C1C;
}
.admin-alert.success {
  border: 1px solid rgba(22,163,74,.25);
  background: #F0FDF4;
  color: #15803D;
}
.admin-swal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(15, 26, 54, .48);
  backdrop-filter: blur(5px);
  animation: admin-swal-fade .16s ease-out;
}
.admin-swal {
  position: relative;
  width: min(420px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 28px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.7);
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 26, 54, .28);
  text-align: center;
  animation: admin-swal-pop .18s ease-out;
}
.admin-swal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  transition: all .15s;
}
.admin-swal-close:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.admin-swal-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 36px;
}
.admin-swal.success .admin-swal-icon {
  background: #DCFCE7;
  color: #16A34A;
}
.admin-swal.error .admin-swal-icon {
  background: #FEE2E2;
  color: #DC2626;
}
.admin-swal.warning .admin-swal-icon {
  background: #FEF3C7;
  color: #D97706;
}
.admin-swal.info .admin-swal-icon {
  background: var(--bg-tint);
  color: var(--brand);
}
.admin-swal h2 {
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1.25;
}
.admin-swal p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
}
.admin-swal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}
.admin-swal-btn {
  min-width: 116px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  transition: all .15s;
}
.admin-swal-btn.primary {
  background: var(--brand);
  color: #fff;
}
.admin-swal.warning .admin-swal-btn.primary {
  background: #DC2626;
}
.admin-swal-btn.primary:hover {
  filter: brightness(.94);
  transform: translateY(-1px);
}
.admin-swal-btn.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.admin-swal-btn.ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
@keyframes admin-swal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes admin-swal-pop {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 520px) {
  .admin-swal {
    padding: 30px 20px 22px;
  }
  .admin-swal-actions {
    flex-direction: column-reverse;
  }
  .admin-swal-btn {
    width: 100%;
  }
}
.admin-empty,
.admin-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 34px 18px;
  color: var(--muted);
  font-weight: 700;
}
.admin-loading {
  min-height: 100vh;
}
.admin-loading.compact {
  min-height: auto;
  padding: 12px 14px;
  justify-content: flex-start;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.admin-loading i {
  animation: admin-spin 1s linear infinite;
}
@keyframes admin-spin {
  to { transform: rotate(360deg); }
}
.admin-import-panel {
  max-width: 720px;
  padding-bottom: 18px;
}
.admin-import-panel p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-2);
}
.admin-import-panel .admin-primary-btn {
  margin: 0 18px;
  width: calc(100% - 36px);
}
.admin-import-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}
.admin-import-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}
.admin-import-stats strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}
.admin-import-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
  }
  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-sidebar-foot {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .admin-workspace {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .admin-main {
    padding: 18px;
  }
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-top-actions,
  .admin-ghost-btn {
    width: 100%;
  }
  .admin-nav {
    grid-template-columns: 1fr;
  }
  .admin-list-item,
  .admin-list-item.article {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }
  .admin-thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
  .admin-status {
    display: none;
  }
  .admin-row-actions {
    grid-column: 2 / -1;
    justify-content: flex-end;
  }
  .admin-toggle-grid,
  .admin-import-stats {
    grid-template-columns: 1fr;
  }
  .admin-image-uploader {
    grid-template-columns: 1fr;
  }
  .admin-image-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ========== UTILITIES ========== */
.fade-up { opacity: 0; transform: translateY(20px); transition: all .5s ease-out; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ========== FINAL MOBILE POLISH ========== */
@media (max-width: 640px) {
  html, body { max-width: 100%; overflow-x: hidden; }

  section { padding: 58px 0; scroll-margin-top: 64px; }
  .sec-head { margin-bottom: 34px; }
  .sec-head .kicker,
  .about-text .kicker,
  .faq-side .kicker {
    font-size: 11.5px;
    letter-spacing: .1em;
  }
  .sec-head h2,
  .about-text h2,
  .faq-side h2 {
    font-size: clamp(25px, 7.3vw, 32px);
  }
  .sec-head p { font-size: 14.5px; }

  .menu-toggle {
    display: inline-flex !important;
    position: fixed;
    right: 18px;
    top: 7px;
    transform: none;
    z-index: 90;
    width: 44px;
    height: 44px;
    padding: 0;
    flex: 0 0 auto;
    margin-left: auto;
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
  }
  .header > .container.row {
    position: relative;
    display: flex;
    padding-right: 62px;
    min-height: 58px;
    grid-template-columns: none;
    align-items: center;
  }
  .header .brand {
    min-width: 0;
  }
  .header .nav {
    grid-column: 1 / -1;
  }
  .menu-toggle i { display: none; }
  .menu-fallback {
    display: block;
    font-size: 23px;
    line-height: 1;
  }
  .menu-toggle::before {
    content: "";
    font-size: 23px;
    line-height: 1;
  }
  .nav.open + .menu-toggle::before {
    content: "";
    font-size: 28px;
  }
  .hero-cta-row .btn,
  .cta-band .btn,
  .reg-actions .btn,
  .success-card .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .about-grid { gap: 34px; }
  .about-visual { display: none; }
  .about-visual .img-main { aspect-ratio: 4/4.4; }
  .about-visual .accent-shape { display: none; }
  .about-visual .credit-card {
    left: 12px;
    right: 12px;
    bottom: 14px;
    max-width: none;
    padding: 14px 16px;
  }
  .about-visual .credit-card .num { font-size: 26px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }

  .stats-band { padding: 42px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stats-grid .item { padding: 18px 10px; }
  .stats-grid .item,
  .stats-grid .item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .stats-grid .item:last-child { border-bottom: none; }
  .stats-grid .num { font-size: 34px; }
  .stats-grid .label { font-size: 12.5px; line-height: 1.4; }

  .vm-card,
  .service-card,
  .format-card {
    padding: 24px 20px;
  }
  .vm-card h3,
  .format-card h3 {
    font-size: 22px;
  }
  .service-head {
    align-items: flex-start;
    gap: 12px;
  }
  .service-head .ico {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .service-head h3 { font-size: 19px; }
  .service-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .team-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: -4px -18px 32px;
    padding-left: 18px;
    padding-right: 18px;
    scrollbar-width: none;
  }
  .team-tabs::-webkit-scrollbar { display: none; }
  .team-tabs button {
    flex: 0 0 auto;
    padding: 9px 16px;
    white-space: nowrap;
  }
  .team-grid,
  .member-lead {
    grid-template-columns: 1fr;
  }
  .member-lead {
    grid-column: span 1;
    padding: 22px;
    gap: 20px;
  }
  .member-lead h3 { font-size: 20px; overflow-wrap: anywhere; }

  .uni-grid { gap: 12px; }
  .uni-card { padding: 18px 10px; }
  .blog-card .body { padding: 20px; }

  .faq-item button {
    padding: 18px;
    align-items: flex-start;
    font-size: 14.5px;
  }
  .faq-item .answer-inner { padding: 0 18px 18px; }

  .contact-grid { gap: 22px; }
  .contact-info { padding: 24px 20px; }
  .contact-info .item { gap: 12px; }
  .contact-info .item .val { overflow-wrap: anywhere; }
  .contact-map,
  .map-frame {
    min-height: 320px;
  }

  .cta-band { padding: 58px 0; }
  .cta-band p { font-size: 15px; }
  .cta-band .row { width: 100%; }
  .footer { padding-top: 48px; }
  .footer-grid { gap: 28px; padding-bottom: 36px; }
  .footer .newsletter { flex-direction: column; }
  .footer .newsletter button { width: 100%; }
  .wa-fab {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
    font-size: 24px;
  }

  .reg-hero { padding: 46px 0 92px; }
  .reg-hero h1 { font-size: clamp(28px, 8vw, 34px); }
  .reg-hero p { font-size: 14.5px; }
  .reg-wrap { margin-top: -58px; padding-bottom: 58px; }
  .reg-card { border-radius: 14px; }
  .reg-stepper .step { padding: 16px; gap: 12px; }
  .reg-body { padding: 24px 18px; }
  .radio-pill {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    padding: 10px 12px;
  }
  .upload { padding: 22px 14px; }
  .reg-actions {
    flex-direction: column;
    margin-top: 28px;
    padding-top: 22px;
  }
  .success-card { padding: 42px 18px; }
  .success-card .ref {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stats-grid .item:last-child { border-bottom: none; }
  .radio-pill { flex-basis: 100%; }
}
