/* ====================================================
   NEXTLEVEL INDONESIA — SHARED STYLESHEET
   Design: Luxury Editorial | Dark Navy + Gold
   Fonts: Cormorant Garamond + Nunito Sans
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --dark:     #0D1F3C;
  --mid:      #1A3A6B;
  --accent:   #1E56A0;
  --gold:     #C9A96E;
  --gold-lt:  #E8C98A;
  --offwhite: #F8F7F4;
  --lgray:    #E0E0DC;
  --mgray:    #888888;
  --dgray:    #444444;
  --text:     #1A1A1A;
  --white:    #FFFFFF;
  --core-c:   #1A7A8A;
  --core-o:   #C47D1A;
  --core-r:   #2A7A4A;
  --core-e:   #6A3A9A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', 'Helvetica Neue', sans-serif;

  --radius: 2px;
  --shadow: 0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,60,0.16);

  --transition: 0.3s ease;
  --max-w: 1160px;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── CONTAINER ───────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--dark); font-weight: 600; }
.display { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.01em; }
.display-sm { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
.eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.eyebrow--gold { color: var(--gold); }
.lead { font-family: var(--font-display); font-size: 1.22rem; font-style: italic; color: var(--dark); line-height: 1.7; }
.body-text { font-size: 1rem; color: var(--dgray); line-height: 1.75; }
.small-text { font-size: 0.85rem; color: var(--mgray); }

/* ── GOLD RULE ───────────────────────────────────── */
.gold-rule { width: 44px; height: 3px; background: var(--gold); display: block; margin: 1rem 0 1.75rem; }
.gold-rule--center { margin: 1rem auto 1.75rem; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2.2rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); border-radius: var(--radius); }
.btn--primary { background: var(--gold); color: var(--dark); }
.btn--primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--dark); }
.btn--outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn--outline-dark:hover { background: var(--dark); color: var(--white); }
.btn--text { background: none; color: var(--accent); padding: 0; font-size: 0.85rem; letter-spacing: 0.08em; }
.btn--text:hover { color: var(--gold); }
.btn svg { width: 16px; height: 16px; }

/* ── NAVIGATION ──────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 2rem; max-width: var(--max-w); margin: 0 auto; }
.nav.transparent .nav__inner { /* on dark heroes */ }
.nav.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.10); }
.nav.scrolled .nav__logo-text { color: var(--dark) !important; }
.nav.scrolled .nav__link { color: var(--dark) !important; }
.nav.scrolled .nav__logo-text span { color: var(--gold) !important; }

.nav__logo { display: flex; align-items: center; gap: 0.5rem; }
.nav__logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); transition: var(--transition); }
.nav__logo-text span { color: var(--gold); }
.nav--light .nav__logo-text { color: var(--dark); }
.nav--light .nav__logo-text span { color: var(--gold); }

.nav__menu { display: flex; align-items: center; gap: 2.4rem; }
.nav__link { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); transition: var(--transition); position: relative; padding-bottom: 4px; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--gold); }
.nav--light .nav__link { color: var(--dgray); }
.nav--light .nav__link:hover { color: var(--accent); }

.nav__cta { padding: 0.6rem 1.5rem; background: var(--gold); color: var(--dark); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition); border-radius: var(--radius); }
.nav__cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.nav.scrolled .nav__hamburger span,
.nav--light .nav__hamburger span { background: var(--dark); }

/* ── HERO ────────────────────────────────────────── */
.hero { background: var(--dark); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #0D1F3C 0%, #0F2847 50%, #0a1830 100%); }
.hero__pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.3) 40px, rgba(255,255,255,0.3) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.3) 40px, rgba(255,255,255,0.3) 41px); }
.hero__watermark { position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 28vw; font-weight: 700; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; user-select: none; }
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.hero__title { color: var(--white); margin-bottom: 1rem; }
.hero__title span { color: var(--gold); }
.hero__subtitle { color: var(--dgray); margin-bottom: 1rem; }
.hero__lead { color: rgba(255,255,255,0.7); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; animation: bounce 2s infinite; }
.hero__scroll::before { content: ''; width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0), var(--gold)); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero { background: var(--dark); padding: 10rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark) 0%, #0f2847 100%); }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow { color: var(--gold); margin-bottom: 1rem; }
.page-hero__title { color: var(--white); margin-bottom: 1rem; }
.page-hero__lead { color: rgba(255,255,255,0.65); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; max-width: 620px; line-height: 1.7; }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }
.section--dark { background: var(--dark); }
.section--mid { background: var(--mid); }
.section--offwhite { background: var(--offwhite); }
.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; }
.section__header--center .gold-rule { margin: 1rem auto 1.75rem; }

/* ── CALLOUT BOX ─────────────────────────────────── */
.callout { background: var(--dark); border-left: 4px solid var(--gold); padding: 1.75rem 2rem; border-radius: var(--radius); }
.callout p { font-family: var(--font-display); font-size: 1.15rem; color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.65; }
.callout--light { background: var(--offwhite); border-left-color: var(--gold); }
.callout--light p { color: var(--dark); }

/* ── STATS ROW ───────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: var(--lgray); }
.stats__item { background: var(--white); padding: 2.5rem 1.5rem; text-align: center; border-top: 3px solid var(--accent); }
.stats__num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: 0.5rem; }
.stats__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mgray); line-height: 1.4; }
.stats--dark .stats__item { background: rgba(255,255,255,0.04); border-top-color: var(--gold); }
.stats--dark .stats__num { color: var(--white); }
.stats--dark .stats__label { color: rgba(255,255,255,0.45); }

/* ── CARDS ───────────────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--lgray); border-top: 3px solid var(--accent); padding: 2rem; border-radius: var(--radius); transition: var(--transition); box-shadow: var(--shadow); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card--gold { border-top-color: var(--gold); }
.card__icon-line { width: 28px; height: 3px; background: var(--gold); margin-bottom: 1.2rem; }
.card__title { font-family: var(--font-display); font-size: 1.45rem; color: var(--dark); margin-bottom: 0.75rem; font-weight: 600; }
.card__body { font-size: 0.92rem; color: var(--dgray); line-height: 1.7; margin-bottom: 1rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.card__tag { background: #eef3fa; color: var(--accent); font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 2px; letter-spacing: 0.04em; }

/* ── CORE CARDS ──────────────────────────────────── */
.core-grid { display: flex; flex-direction: column; gap: 1rem; }
.core-item { display: flex; align-items: stretch; border-radius: var(--radius); overflow: hidden; background: #f4f7fc; }
.core-item__letter { width: 80px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--white); }
.core-item__body { padding: 1.4rem 1.75rem; flex: 1; }
.core-item__title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark); margin-bottom: 0.5rem; }
.core-item__text { font-size: 0.92rem; color: var(--dgray); line-height: 1.65; }

/* ── VALUES GRID ─────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--lgray); }
.value-item { background: var(--offwhite); padding: 1.75rem; border-top: 3px solid var(--gold); }
.value-item__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; }
.value-item__text { font-size: 0.88rem; color: var(--dgray); line-height: 1.65; }

/* ── VM BOXES ────────────────────────────────────── */
.vm-box { padding: 2rem 2.5rem; margin-bottom: 1.25rem; border-radius: var(--radius); }
.vm-box--vision { background: var(--dark); }
.vm-box--mission { background: var(--offwhite); border-left: 4px solid var(--accent); }
.vm-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.vm-box--vision .vm-label { color: var(--gold); }
.vm-box--mission .vm-label { color: var(--accent); }
.vm-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.6; }
.vm-box--vision .vm-text { color: var(--white); }
.vm-box--mission .vm-text { color: var(--dark); }
.vm-detail { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; line-height: 1.65; }
.vm-box--mission .vm-detail { color: var(--dgray); }

/* ── PROCESS STEPS ───────────────────────────────── */
.process-flow { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--lgray); position: relative; }
.process-step:last-child { border-bottom: none; }
.process-step__circle { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.process-step__body { flex: 1; padding-top: 4px; }
.process-step__title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.process-step__text { font-size: 0.9rem; color: var(--dgray); line-height: 1.65; }
.process-step__dur { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-top: 0.4rem; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testi-card { background: var(--white); border: 1px solid var(--lgray); padding: 2rem; position: relative; border-bottom: 3px solid var(--accent); transition: var(--transition); box-shadow: var(--shadow); }
.testi-card--gold { border-bottom-color: var(--gold); }
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-card__quote-mark { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); opacity: 0.5; line-height: 0.8; margin-bottom: 0.75rem; }
.testi-card__text { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.testi-card__meta { display: flex; align-items: center; gap: 0.75rem; }
.testi-card__avatar { width: 36px; height: 36px; background: var(--mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.testi-card__name { font-size: 0.85rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.testi-card__role { font-size: 0.78rem; color: var(--mgray); }
.testi-card__ind { margin-left: auto; background: var(--dark); color: rgba(255,255,255,0.65); font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.5rem; letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0; }

/* ── CASE STUDY ──────────────────────────────────── */
.case-card { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.case-card__header { padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1.25rem; }
.case-card__num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: rgba(255,255,255,0.25); line-height: 1; }
.case-card__ind { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.3rem; }
.case-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.case-card__body { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--lgray); border-top: none; }
.case-card__col { padding: 1.5rem; border-right: 1px solid var(--lgray); }
.case-card__col:last-child { border-right: none; }
.case-card__col-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; padding-bottom: 0.6rem; margin-bottom: 0.75rem; border-bottom: 1px solid var(--lgray); }
.case-card__col--ch .case-card__col-label { color: #c0392b; }
.case-card__col--sl .case-card__col-label { color: var(--accent); }
.case-card__col--re .case-card__col-label { color: var(--core-r); }
.case-card__col-text { font-size: 0.88rem; color: var(--dgray); line-height: 1.6; }
.result-tag { display: inline-block; background: #eaf4ee; color: var(--core-r); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.5rem; margin: 0.25rem 0.25rem 0 0; border-radius: 2px; }

/* ── SECTOR ROW ──────────────────────────────────── */
.sector-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5px; background: var(--lgray); }
.sector-item { background: var(--white); padding: 1.75rem 1rem; text-align: center; }
.sector-item__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sector-item__name { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); }

/* ── LEGAL TABLE ─────────────────────────────────── */
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table tr { border-bottom: 1px solid var(--lgray); }
.legal-table tr:last-child { border-bottom: none; }
.legal-table td { padding: 0.85rem 1rem; font-size: 0.92rem; vertical-align: top; }
.legal-table td:first-child { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mgray); width: 200px; white-space: nowrap; }

/* ── KBLI TAGS ───────────────────────────────────── */
.kbli-grid { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.kbli-tag { background: #eef3fa; color: var(--accent); font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.65rem; border-radius: 2px; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-item { display: flex; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.25rem; margin-bottom: 1.25rem; }
.contact-item:last-child { border-bottom: none; margin-bottom: 0; }
.contact-item__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); min-width: 110px; padding-top: 3px; }
.contact-item__value { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.95rem; border-radius: var(--radius); transition: var(--transition); width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.09); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: #070F1E; color: rgba(255,255,255,0.45); }
.footer__main { padding: 4rem 0 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer__brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 1rem; }
.footer__brand span { color: var(--gold); }
.footer__tagline { font-size: 0.88rem; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 1.25rem; max-width: 280px; }
.footer__col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer__legal { color: rgba(255,255,255,0.3); }
.footer__legal strong { color: rgba(255,255,255,0.5); }

/* ── PROGRAM DETAIL ──────────────────────────────── */
.prog-detail { background: var(--white); border: 1px solid var(--lgray); overflow: hidden; border-radius: var(--radius); margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.prog-detail__header { padding: 2.5rem; border-top: 4px solid var(--accent); display: flex; gap: 1.5rem; align-items: flex-start; }
.prog-detail__num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--lgray); line-height: 1; flex-shrink: 0; }
.prog-detail__title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.prog-detail__subtitle { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.prog-detail__body { padding: 0 2.5rem 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.prog-detail__desc { font-size: 0.95rem; color: var(--dgray); line-height: 1.75; }

/* ── CHECKLIST ───────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 0.6rem; }
.checklist li { font-size: 0.9rem; color: var(--dgray); padding: 0.5rem 0 0.5rem 1.5rem; border-bottom: 1px solid var(--lgray); position: relative; line-height: 1.5; }
.checklist li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── FOUNDER ─────────────────────────────────────── */
.founder-box { display: flex; gap: 2.5rem; background: var(--offwhite); padding: 2.5rem; align-items: flex-start; border-radius: var(--radius); }
.founder-avatar { width: 120px; height: 120px; background: var(--mid); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--gold); flex-shrink: 0; }
.founder-info__name { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--dark); margin-bottom: 0.35rem; }
.founder-info__title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1rem; }
.founder-info__bio { font-size: 0.95rem; color: var(--dgray); line-height: 1.75; }

/* ── SKILL TAGS ──────────────────────────────────── */
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0; }
.skill-tag { background: var(--dark); color: rgba(255,255,255,0.8); font-size: 0.78rem; padding: 0.3rem 0.75rem; font-weight: 600; letter-spacing: 0.04em; }

/* ── ANIMATIONS ──────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── UTILITIES ───────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-accent { color: var(--accent) !important; }
.text-mgray { color: var(--mgray) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 2rem; gap: 1.5rem; align-items: flex-start; box-shadow: var(--shadow-lg); }
  .nav__menu.open { display: flex; }
  .nav__link { color: rgba(255,255,255,0.85) !important; }
  .nav__hamburger { display: flex; }
  .hero__lead { max-width: 100%; }
  .testi-grid { grid-template-columns: 1fr; }
  .case-card__body { grid-template-columns: 1fr; }
  .case-card__col { border-right: none; border-bottom: 1px solid var(--lgray); }
  .case-card__col:last-child { border-bottom: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .sector-row { grid-template-columns: repeat(3, 1fr); }
  .founder-box { flex-direction: column; }
  .founder-avatar { width: 80px; height: 80px; font-size: 1.75rem; }
  .prog-detail__body { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .sector-row { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .core-item__letter { width: 60px; font-size: 2.2rem; }
}
