/* ============================================================
   insead.css — INSEAD-inspired theme layer (Step 1: tokens + base)
   Loaded LAST. Centrally controls colour, typography and base
   styling. Visual reskin only — no markup or behaviour changes.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap');

:root {
  /* ── INSEAD palette ── */
  --ins-navy:      #0A5640;   /* primary — structure, emphasis */
  --ins-navy-2:    #0E6B4E;
  --ins-blue:      #1C8A5E;   /* links, hovers, highlights */
  --ins-blue-2:    #35A972;
  --ins-ink:       #1A1A1A;   /* near-black text */
  --ins-body:      #4A4A4A;   /* body grey */
  --ins-bg:        #F5F6F8;   /* light background */
  --ins-line:      #E1E4E8;   /* hairline */
  --ins-white:     #FFFFFF;
  --ins-accent:    #C8A45D;   /* single warm accent — used sparingly */

  --ins-serif:     'Source Serif 4', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ins-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* 8px spacing scale */
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-6: 48px; --sp-8: 64px; --sp-12: 96px; --sp-16: 128px;

  /* re-point shared semantic tokens to the INSEAD palette */
  --text:        #1A1A1A;
  --text-muted:  #4A4A4A;
  --text-light:  #8A8F99;
  --gray-50:     #F5F6F8;
  --gray-100:    #F0F2F5;
  --gray-200:    #E1E4E8;
  --font-body:   var(--ins-sans);
}

/* ── Base typography ── */
body {
  font-family: var(--ins-sans);
  color: var(--ins-ink);
  background: var(--ins-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.head__title, .hero__title, .section-header h2, .page-hero h1,
.sd-title, .sd-h2, .auth-title {
  font-family: var(--ins-serif);
  color: var(--ins-navy);
  line-height: 1.14;
  letter-spacing: -0.012em;
  font-weight: 600;
}
h1, .hero__title, .page-hero h1 { font-size: clamp(2rem, 5vw, 4rem); }

p { color: var(--ins-body); }

/* ── Eyebrow labels (INSEAD signature) ── */
.eyebrow, .sd-eyebrow, .page-hero__eyebrow, [class*="eyebrow"] {
  font-family: var(--ins-sans) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--ins-navy);
}
/* on dark backgrounds, keep the eyebrow legible */
.page-hero .eyebrow, .page-hero__eyebrow,
.sd-hero .sd-eyebrow, .cta-banner .eyebrow,
.eyebrow--white, .eyebrow--light { color: #A8D8C2; }

/* ── Links ── */
a { color: var(--ins-blue); transition: color .2s ease; }
a:hover { color: var(--ins-navy); }
/* but never override buttons / cards whose colour is intentional */
.btn, .btn:hover, [class*="card"] a, .nav a, nav a { color: inherit; }

/* ── Accessible focus ── */
:focus-visible { outline: 2px solid var(--ins-navy); outline-offset: 2px; }
::selection { background: var(--ins-navy); color: #fff; }

/* ── Restrained warm accent: a thin gold rule under centred section eyebrows ── */
.section-header .eyebrow::after,
.head .eyebrow::after {
  content: "";
  display: block;
  width: 34px; height: 2px;
  margin: 9px auto 0;
  background: var(--ins-accent);
}

/* ============================================================
   INSEAD-style content cards (Step: card grids)
   Signature: clean white card, bold dark sans title over grey
   body, navy media tile with a notched corner, square accent
   arrow button bottom-right, subtle lift + zoom on hover.
   ============================================================ */
.feature-card, .resource-card, .card, .industry-card {
  background: #fff;
  border: 1px solid var(--ins-line);
  border-radius: 4px 4px 4px 22px;          /* one signature larger corner */
  box-shadow: 0 1px 3px rgba(10,86,64,.06);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease-out,cubic-bezier(.22,1,.36,1)),
              box-shadow .28s, border-color .28s;
}
.feature-card::before, .card::before, .resource-card::before { display: none; } /* drop old top accent bars */
.feature-card:hover, .resource-card:hover, .card:hover, .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(10,86,64,.16);
  border-color: transparent;
}

/* media / icon tile — navy, notched corner, zooms on hover */
.feature-card__icon, .resource-card__icon, .card__ic, .card__ic--g, .industry-card__icon {
  background: linear-gradient(150deg, var(--ins-navy), var(--ins-navy-2)) !important;
  color: #fff !important;
  border-radius: 12px 12px 12px 22px !important;
  transition: transform .35s var(--ease-out,cubic-bezier(.22,1,.36,1));
}
.feature-card:hover .feature-card__icon,
.resource-card:hover .resource-card__icon,
.card:hover .card__ic, .card:hover .card__ic--g { transform: scale(1.06) rotate(-2deg); }

/* titles: bold dark sans (INSEAD card headlines are strong sans, not serif) */
.feature-card__title, .resource-card__title, .card h3, .industry-card__name {
  font-family: var(--ins-sans) !important;
  font-weight: 700;
  color: var(--ins-ink);
  letter-spacing: -.005em;
  line-height: 1.25;
}
.resource-card__type { color: var(--ins-blue); letter-spacing:.1em; }

/* body grey */
.feature-card__desc, .resource-card__desc, .card p, .industry-card__tag { color: var(--ins-body); }

/* square accent arrow button bottom-right (services "read more" links) */
.card { padding-bottom: 30px; }
.card__go {
  position: absolute; right: 0; bottom: 0;
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0;
  background: var(--ins-navy); color: #fff;
  border-radius: 16px 0 4px 0;
  font-size: 0;                                /* hide the text label visually (stays for SR) */
  transition: background .25s ease, transform .25s ease;
}
.card__go i { font-size: 1rem; }
.card:hover .card__go { background: var(--ins-blue); }

/* resource-card CTA → clean navy outline pill */
.resource-card .btn, .resource-card .btn-outline-navy {
  border: 1.5px solid var(--ins-navy); color: var(--ins-navy); background: #fff;
}
.resource-card:hover .btn { background: var(--ins-navy); color: #fff; }

/* keep grids tidy on the notched corner */
.industry-card { border-radius: 4px 4px 4px 18px; text-align: center; }

/* ── Pillar / service boxes → INSEAD card feel ── */
.pcard {
  border: 1px solid var(--ins-line);
  border-radius: 4px 4px 4px 24px;
  box-shadow: 0 1px 3px rgba(10,86,64,.06);
  overflow: hidden;
  transition: transform .28s var(--ease-out,cubic-bezier(.22,1,.36,1)), box-shadow .28s, border-color .28s;
}
.pcard__bar { display: none; }                 /* drop the gradient top bar */
.pcard:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(10,86,64,.16); border-color: transparent; }
.pcard__icon {
  background: linear-gradient(150deg, var(--ins-navy), var(--ins-navy-2)) !important;
  border-radius: 12px 12px 12px 22px;
  transition: transform .35s var(--ease-out,cubic-bezier(.22,1,.36,1));
}
.pcard:hover .pcard__icon { transform: scale(1.06) rotate(-2deg); }
.pcard__num { color: var(--ins-blue) !important; background: var(--ins-bg) !important; border-color: var(--ins-line) !important; }
.pcard__title { font-family: var(--ins-sans) !important; font-weight: 700; color: var(--ins-ink); }
.pcard__desc { color: var(--ins-body); }
.pcard__cta {
  background: var(--ins-navy) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}
.pcard:hover .pcard__cta, .pcard__cta:hover { background: var(--ins-blue) !important; }

/* feature-card title strictly near-black ink (match INSEAD card headlines) */
.feature-card__title, .resource-card__title, .pcard__title, .industry-card__name { color: var(--ins-ink) !important; }

/* ============================================================
   INSEAD line texture + corner colour accents
   ============================================================ */
/* faint diagonal hairline texture behind the card sections */
#pillars, #why-choose, #industries, #case-studies-home { position: relative; isolation: isolate; }
#pillars::before, #why-choose::before, #industries::before, #case-studies-home::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(10,86,64,.045) 0 1px, transparent 1px 18px),
    repeating-linear-gradient( 45deg, rgba(10,86,64,.028) 0 1px, transparent 1px 24px);
  -webkit-mask: radial-gradient(135% 95% at 50% -8%, #000 28%, transparent 82%);
          mask: radial-gradient(135% 95% at 50% -8%, #000 28%, transparent 82%);
}
#pillars > .container, #why-choose > .container,
#industries > .container, #case-studies-home > .container { position: relative; z-index: 1; }

/* coloured bottom edge + accent on the boxes (the "corner colour") */
.feature-card, .resource-card, .pcard, .industry-card { position: relative; }
.feature-card::after, .resource-card::after, .pcard::after, .industry-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--ins-navy) 0%, var(--ins-blue) 60%, var(--ins-accent) 100%);
  opacity: .9;
  transition: height .28s var(--ease-out, cubic-bezier(.22,1,.36,1));
}
.feature-card:hover::after, .resource-card:hover::after,
.pcard:hover::after, .industry-card:hover::after { height: 6px; }

/* warm-accent tick in the notched corner of the icon tile */
.feature-card__icon::after, .pcard__icon::after, .resource-card__icon::after {
  content: ""; position: absolute; right: 7px; bottom: 7px; width: 10px; height: 10px;
  border-right: 2px solid var(--ins-accent); border-bottom: 2px solid var(--ins-accent);
  border-bottom-right-radius: 4px; opacity: .9;
}
.feature-card__icon, .pcard__icon, .resource-card__icon { position: relative; }

/* ============================================================
   INSEAD stat block — oversized thin numbers on a dark panel
   ============================================================ */
.stats-strip {
  position: relative; overflow: hidden;
  padding: clamp(24px,3vw,38px) 0;
  border-radius: 0 !important; max-width: none !important; margin: 0 !important;
  background:
    radial-gradient(48% 90% at 78% 34%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(135deg, #0A5640 0%, #0E6B4E 58%, #084A36 100%) !important;
}
.stats-strip::before {                       /* diagonal hairline texture (right) */
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 40%; pointer-events: none;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 13px);
  -webkit-mask: linear-gradient(90deg, transparent, #000 65%);
          mask: linear-gradient(90deg, transparent, #000 65%);
}
.stats-strip::after {                        /* big soft circle */
  content: ""; position: absolute; top: -34%; right: 6%; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 68%); pointer-events: none;
}
.stats-strip .stats-grid { position: relative; z-index: 1; }
.stats-strip .stat-item {
  background: none !important; box-shadow: none !important; backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important; border-radius: 0 !important;
  display: block !important; text-align: left;
  border: 0 !important;
  border-left: 1px solid rgba(255,255,255,.18) !important;
  padding: 4px 30px; transform: none !important;
}
.stats-strip .stats-grid > .stat-item:first-child { border-left: 0 !important; padding-left: 0; }
.stats-strip .stat-item__icon { display: none !important; }
.stats-strip .stat-number {
  font-family: var(--ins-sans) !important; font-weight: 200 !important;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem) !important; color: #fff !important;
  line-height: 1; letter-spacing: -.02em; display: block; margin: 0 0 12px;
  white-space: nowrap;            /* keep 10,000+ on one line */
}
.stats-strip .stat-label {
  color: rgba(255,255,255,.74); font-size: .95rem; font-weight: 400; letter-spacing: .005em; max-width: 220px;
}
@media (max-width:880px){ .stats-strip .stat-item{ padding:4px 18px } }
@media (max-width:560px){ .stats-strip .stat-item{ border-left:none; padding-left:0 } }

/* ============================================================
   Service-showcase hero slider
   ============================================================ */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.svcshow { padding: clamp(16px,2vw,28px) 0 clamp(34px,5vw,56px); background: var(--ins-bg); position: relative; }
.svcshow__wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.svcshow__head { max-width: 760px; margin-bottom: 26px; }
.svcshow__title { font-family: var(--ins-serif); font-weight: 600; color: var(--ins-navy);
  font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.018em; line-height: 1.08; margin: 12px 0 14px; }
.svcshow__title em { font-style: italic; color: var(--ins-blue); }
.svcshow__sub { color: var(--ins-body); font-size: clamp(1rem,1.4vw,1.12rem); max-width: 660px; }

.svcshow__stage { position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--ins-line); box-shadow: 0 28px 64px rgba(10,86,64,.16); background: #06231A; }
.svcshow__slide { display: block; position: relative; aspect-ratio: 1672 / 941; }
.svcshow__img { width: 100%; height: 100%; object-fit: cover; display: block; animation: svcFade .6s ease both; transition: transform .6s ease; }
@keyframes svcFade { from { opacity: 0; transform: scale(1.015); } to { opacity: 1; transform: none; } }
.svcshow__slide:hover .svcshow__img { transform: scale(1.02); }
.svcshow__cta { position: absolute; left: 22px; bottom: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: #fff;
  background: linear-gradient(120deg, var(--ins-navy), var(--ins-navy-2)); padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(10,86,64,.45); transition: transform .25s ease, box-shadow .25s ease; }
.svcshow__slide:hover .svcshow__cta { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(10,86,64,.55); }
.svcshow__cta i { transition: transform .25s ease; }
.svcshow__slide:hover .svcshow__cta i { transform: translateX(4px); }

.svcshow__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--ins-navy); font-size: 1rem;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(6,35,26,.3); opacity: 0; transition: .2s; }
.svcshow__stage:hover .svcshow__arrow { opacity: 1; }
.svcshow__arrow:hover { background: var(--ins-navy); color: #fff; }
.svcshow__arrow--prev { left: 16px; }
.svcshow__arrow--next { right: 16px; }

.svcshow__tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; justify-content: center; }
.svcshow__tab { font-family: var(--ins-sans); font-size: .85rem; font-weight: 600; color: var(--ins-body);
  background: #fff; border: 1px solid var(--ins-line); padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s; }
.svcshow__tab:hover { border-color: var(--ins-navy); color: var(--ins-navy); }
.svcshow__tab.is-active { background: var(--ins-navy); color: #fff; border-color: transparent; }
@media (max-width:640px){ .svcshow__cta{ left:14px; bottom:14px; font-size:.82rem; padding:10px 16px } }

/* service-showcase autoplay progress bar */
.svcshow__progress { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; z-index: 4;
  background: linear-gradient(90deg, var(--ins-blue), var(--ins-accent)); animation: svcProg linear forwards; }
@keyframes svcProg { from { width: 0; } to { width: 100%; } }
@media (prefers-reduced-motion: reduce){ .svcshow__progress{ display: none; } }

/* ============================================================
   Elegant card typography — section headers stay serif, but
   CARD titles & prices use the clean sans (less "overloaded").
   ============================================================ */
.lvl-card__title, .uc-name, .uc-price, .cs-card__headline,
.tool-card__title, .exam-card__title, .exam-card__acronym,
.program-card h3, .crs-detail__title {
  font-family: var(--ins-sans) !important;
}
.lvl-card__title, .uc-name, .cs-card__headline, .tool-card__title, .exam-card__title {
  font-weight: 600 !important; color: var(--ins-ink) !important; letter-spacing: -.01em; line-height: 1.28;
}
.uc-price { font-weight: 700 !important; color: var(--ins-navy) !important; letter-spacing: 0; }
.lvl-card__blurb, .uc-facts span, .uc-facts { color: var(--ins-body); }

/* soften the course / level cards (lighter, smoother) */
.uc-card, .lvl-card {
  box-shadow: 0 1px 3px rgba(10,86,64,.06) !important;
  border: 1px solid var(--ins-line) !important;
  border-radius: 14px !important;
}
.uc-card:hover, .lvl-card:hover { box-shadow: 0 18px 42px rgba(10,86,64,.13) !important; transform: translateY(-5px); }
.lvl-card__ic { background: linear-gradient(150deg, var(--ins-navy), var(--ins-navy-2)) !important; color:#fff !important; }
.lvl-card__tag, .uc-level, .uc-accr { font-family: var(--ins-sans); }
.uc-btn--enrol { background: var(--ins-navy) !important; box-shadow: 0 8px 18px rgba(10,86,64,.26) !important; }
.uc-btn--enrol:hover { background: var(--ins-navy-2) !important; }
.uc-datechip { background: linear-gradient(160deg, var(--ins-navy), var(--ins-navy-2)) !important; }

/* ============================================================
   Logo-as-icon touches
   ============================================================ */
.brand-pulse { animation: brandPulse 1.1s ease-in-out infinite; }
@keyframes brandPulse { 0%,100%{ opacity:.55; transform:scale(.94); } 50%{ opacity:1; transform:scale(1.02); } }
.footer__logo { display: inline-flex; align-items: center; gap: 11px; }
.footer__logo-img { width: 38px; height: 38px; object-fit: contain; }

/* ============================================================
   Course detail page
   ============================================================ */
.crs-detail__hero { position: relative; overflow: hidden; color: #fff;
  padding: clamp(120px,14vw,168px) 0 clamp(40px,5vw,60px);
  background: radial-gradient(60% 100% at 82% 0%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(135deg, var(--ins-navy) 0%, var(--ins-navy-2) 55%, #084A36 100%); }
.crs-detail__hero .breadcrumb, .crs-detail__hero .breadcrumb a { color: rgba(255,255,255,.7); }
.crs-detail__hero .breadcrumb__current { color: #fff; }
.crs-detail__badges { display: flex; gap: 10px; margin-bottom: 14px; }
.crs-badge { font-family: var(--ins-sans); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; }
.crs-badge--accr { background: var(--ins-accent); color: #2a2310; }
.crs-detail__title { font-family: var(--ins-sans); font-weight: 700; color: #fff; font-size: clamp(1.8rem,3.6vw,2.8rem);
  line-height: 1.14; letter-spacing: -.015em; margin: 0 0 12px; max-width: 880px; }
.crs-detail__price { font-family: var(--ins-sans); font-weight: 700; font-size: 1.5rem; color: #fff; margin: 0 0 24px; }
.crs-detail__price span { font-weight: 400; font-size: .9rem; color: rgba(255,255,255,.7); }
.crs-detail__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.crs-detail__grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(30px,4vw,56px); align-items: start; }
@media (max-width: 880px){ .crs-detail__grid { grid-template-columns: 1fr; } }
.crs-detail__h2 { font-family: var(--ins-serif); font-weight: 600; color: var(--ins-navy); font-size: 1.5rem; margin: 28px 0 12px; }
.crs-detail__main > .crs-detail__h2:first-child { margin-top: 0; }
.crs-detail__lead { color: var(--ins-body); font-size: 1.05rem; line-height: 1.7; }
.crs-detail__list { list-style: none; margin: 0 0 8px; padding: 0; }
.crs-detail__list li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--ins-body); }
.crs-detail__list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--ins-blue); font-size: .82rem; }
.crs-detail__card { background: #fff; border: 1px solid var(--ins-line); border-radius: 14px; padding: 26px; box-shadow: 0 10px 30px rgba(10,86,64,.07); position: sticky; top: 100px; }
.crs-detail__card h3 { font-family: var(--ins-sans); font-weight: 700; color: var(--ins-ink); font-size: 1.15rem; margin: 0 0 16px; }
.crs-facts { list-style: none; margin: 0 0 18px; padding: 0; }
.crs-facts li { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--ins-line); font-size: .9rem; }
.crs-facts li:last-child { border-bottom: none; }
.crs-facts li i { color: var(--ins-blue); }
.crs-facts__l { color: var(--ins-body); }
.crs-facts__v { color: var(--ins-ink); font-weight: 600; text-align: right; }
.crs-detail__alt { display: block; text-align: center; margin-top: 14px; color: var(--ins-blue); font-weight: 600; font-size: .9rem; }

/* ============================================================
   Generic detail pages (industry / case study) — branded hero
   ============================================================ */
.detail-hero { position: relative; overflow: hidden; color: #fff;
  padding: clamp(120px,14vw,172px) 0 clamp(42px,5vw,64px);
  background: radial-gradient(60% 100% at 84% 0%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(135deg, var(--ins-navy) 0%, var(--ins-navy-2) 55%, #084A36 100%); }
.detail-hero__icon { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); font-size: clamp(8rem,18vw,15rem); color: rgba(255,255,255,.05); z-index: 0; pointer-events: none; }
.detail-hero .container { position: relative; z-index: 1; }
.detail-hero .breadcrumb, .detail-hero .breadcrumb a { color: rgba(255,255,255,.72); }
.detail-hero .breadcrumb__current { color: #fff; }
.detail-hero__eyebrow { display:inline-block; font-family: var(--ins-sans); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-size: .76rem; color: var(--ins-accent); margin-bottom: 12px; }
.detail-hero__title { font-family: var(--ins-sans); font-weight: 700; color: #fff; font-size: clamp(1.9rem,4vw,3rem); line-height: 1.12; letter-spacing: -.015em; margin: 0 0 12px; max-width: 880px; }
.detail-hero--case .detail-hero__title { font-family: var(--ins-serif); font-weight: 600; }
.detail-hero__sub { font-size: clamp(1rem,1.5vw,1.18rem); color: rgba(255,255,255,.82); max-width: 660px; margin: 0 0 24px; }
.detail-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.detail-metrics { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.detail-metric { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 14px 22px; min-width: 130px; }
.detail-metric b { display: block; font-family: var(--ins-sans); font-weight: 200; font-size: 2rem; color: #fff; line-height: 1; }
.detail-metric span { font-size: .76rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .06em; }

.detail-grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(30px,4vw,56px); align-items: start; }
@media (max-width: 880px){ .detail-grid { grid-template-columns: 1fr; } }
.detail-h2 { font-family: var(--ins-serif); font-weight: 600; color: var(--ins-navy); font-size: 1.5rem; margin: 30px 0 12px; }
.detail-main > .detail-h2:first-child { margin-top: 0; }
.detail-lead { color: var(--ins-body); font-size: 1.05rem; line-height: 1.7; }
.detail-list { list-style: none; margin: 0 0 8px; padding: 0; }
.detail-list li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--ins-body); }
.detail-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--ins-blue); font-size: .82rem; }

.detail-feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 600px){ .detail-feat-grid { grid-template-columns: 1fr; } }
.detail-feat { background: #fff; border: 1px solid var(--ins-line); border-radius: 4px 4px 4px 18px; padding: 22px; transition: transform .25s, box-shadow .25s; }
.detail-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10,86,64,.12); }
.detail-feat__ic { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color:#fff; font-size: 1.05rem; background: linear-gradient(150deg, var(--ins-navy), var(--ins-navy-2)); margin-bottom: 13px; }
.detail-feat h3 { font-family: var(--ins-sans); font-weight: 600; font-size: 1.08rem; color: var(--ins-ink); margin: 0 0 6px; }
.detail-feat p { color: var(--ins-body); font-size: .92rem; margin: 0; }

.detail-card { background: #fff; border: 1px solid var(--ins-line); border-radius: 14px; padding: 26px; box-shadow: 0 10px 30px rgba(10,86,64,.07); position: sticky; top: 100px; }
.detail-card h3 { font-family: var(--ins-sans); font-weight: 700; color: var(--ins-ink); font-size: 1.12rem; margin: 0 0 16px; }
.detail-facts { list-style: none; margin: 0; padding: 0; }
.detail-facts li { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-bottom: 1px solid var(--ins-line); font-size: .92rem; color: var(--ins-body); }
.detail-facts li:last-child { border-bottom: none; }
.detail-facts li i { color: var(--ins-blue); width: 18px; text-align: center; }
.detail-facts__l { color: var(--ins-body); }
.detail-facts__v { margin-left: auto; color: var(--ins-ink); font-weight: 600; text-align: right; }

.detail-cta { text-align: center; background: var(--gray-50); }
.detail-cta h2 { font-family: var(--ins-serif); font-weight: 600; color: var(--ins-navy); font-size: clamp(1.6rem,3vw,2.2rem); margin: 0 0 12px; }
.detail-cta p { color: var(--ins-body); max-width: 560px; margin: 0 auto 24px; }

/* force header CTA buttons to the solid green pill (beats any base gradient) */
.header .nav-actions .btn-gold,
.header .mobile-nav__cta .btn-gold,
.header .mega-cta-card .btn-gold,
.header .btn-gold {
  background: var(--ins-navy) !important;
  background-image: none !important;
  color: #fff !important;
  border: none !important;
}
.header .nav-actions .btn-gold:hover,
.header .btn-gold:hover { background: var(--ins-navy-2) !important; }

/* ── Mobile: hide the desktop nav + mega-menus, show the hamburger ── */
@media (max-width: 980px) {
  .header .nav,
  .header .nav-actions,
  .header .dropdown,
  .header .dropdown--mega { display: none !important; }
  .header .menu-toggle { display: inline-flex !important; }
}
html, body { overflow-x: hidden; }

/* ============================================================
   Price tags + currency switch (multi-currency)
   ============================================================ */
.price-tag { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--ins-sans); line-height: 1; }
.price-tag__prefix, .price-tag__suffix { font-size: .72em; font-weight: 500; color: var(--ins-body); text-transform: none; letter-spacing: .01em; }
.price-tag__amount { font-weight: 800; color: var(--ins-navy); letter-spacing: -.02em; }

/* a standalone price line you can drop on any card/section */
.price-line { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 2px; }
.price-line .price-tag__amount { font-size: clamp(1.5rem, 2.4vw, 2rem); }

.cur-switch { display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--ins-line); border-radius: 999px; padding: 5px 8px; }
.cur-switch__ic { color: var(--ins-accent); font-size: .9rem; margin: 0 3px 0 2px; }
.cur-switch__btn { font-family: var(--ins-sans); font-size: .76rem; font-weight: 700; letter-spacing: .02em;
  color: var(--ins-body); background: transparent; border: 0; border-radius: 999px; padding: 6px 11px; cursor: pointer;
  transition: background .18s ease, color .18s ease; }
.cur-switch__btn:hover { color: var(--ins-navy); }
.cur-switch__btn.is-active { background: var(--ins-navy); color: #fff; }

/* pricing-card price placeholder reads cleanly even at "00" */
.pricing-card__price .price-tag__amount { font-size: clamp(1.9rem, 3vw, 2.4rem); }
.pricing-toolbar { display: flex; justify-content: center; margin: 0 auto clamp(20px,3vw,30px); }

/* service-page investment strip */
.svc-price { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px;
  background: #fff; border: 1px solid var(--ins-line); border-left: 4px solid var(--ins-accent);
  border-radius: 12px; padding: 18px 22px; margin: clamp(20px,3vw,28px) 0; }
.svc-price__label { font-family: var(--ins-sans); font-weight: 700; color: var(--ins-navy); }
.svc-price__note { font-size: .82rem; color: var(--ins-body); }
.svc-price .price-tag__amount { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.svc-price .cur-switch { margin-left: auto; }

/* investment-card CMS price + currency switch */
.investment-card__range .price-tag__amount { font-size: clamp(2rem, 4vw, 3rem); }
.investment-card__cur { margin-top: 12px; }

/* ============================================================
   Upcoming courses — table-style layout (replaces card boxes)
   ============================================================ */
.uc-table-wrap { margin-top: clamp(18px,2.4vw,28px); }
.uc-table { background: #fff; border: 1px solid var(--ins-line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(10,86,64,.06); }
.uc-trow { display: grid; align-items: center;
  grid-template-columns: 78px minmax(0,2.3fr) 1.15fr .85fr 1.15fr auto;
  gap: 18px; padding: 16px 22px; border-top: 1px solid var(--ins-line); }
.uc-trow:first-child { border-top: 0; }
.uc-trow--head { background: var(--ins-navy); padding-top: 13px; padding-bottom: 13px; }
.uc-trow--head [role="columnheader"] { font-family: var(--ins-sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.uc-trow--head .uc-th--act { text-align: right; }
.uc-trow:not(.uc-trow--head):hover { background: #F7FAF8; }
.uc-trow--featured { background: linear-gradient(90deg, rgba(30,138,60,.07), transparent 60%); }
.uc-trow--featured::before { content: ""; position: absolute; }

.uc-tc { font-family: var(--ins-sans); color: var(--ins-body); min-width: 0; }
.uc-tc__label { display: none; }

/* date pill */
.uc-dpill { display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 12px; color: #fff; line-height: 1;
  background: linear-gradient(160deg, var(--ins-navy), var(--ins-navy-2)); box-shadow: 0 8px 18px rgba(10,86,64,.22); }
.uc-dpill b { font-size: 1.32rem; font-weight: 800; }
.uc-dpill i { font-style: normal; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; opacity: .9; }

/* course cell */
.uc-cname { display: block; font-size: 1.02rem; font-weight: 700; color: var(--ins-ink); line-height: 1.32; letter-spacing: -.01em; }
.uc-pop { display: inline-flex; align-items: center; gap: 5px; margin-left: 8px; vertical-align: middle;
  font-style: normal; font-size: .64rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; background: var(--ins-blue); padding: 3px 9px; border-radius: 999px; }
.uc-cmeta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; margin-top: 7px; font-size: .8rem; }
.uc-cmeta .uc-accr { color: var(--ins-body); }

/* format cell */
.uc-tc--format { display: flex; flex-direction: column; gap: 5px; font-size: .86rem; }
.uc-fact { display: inline-flex; align-items: center; gap: 7px; }
.uc-fact i { color: var(--ins-blue); width: 14px; }

/* price cell */
.uc-tc--price .price-tag__amount { font-size: 1.18rem; font-weight: 800; color: var(--ins-navy); }

/* seats */
.uc-seats { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; }
.uc-seats i { font-size: .8rem; }
.uc-seats--open { color: #1E8A3C; }
.uc-seats--filling { color: #B8860B; }
.uc-seats--limited { color: #C0392B; }

/* actions */
.uc-tc--act { display: inline-flex; flex-direction: column; gap: 8px; align-items: stretch; justify-self: end; min-width: 124px; }
.uc-tc--act .uc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--ins-sans); font-size: .82rem; font-weight: 700; border-radius: 9px; padding: 9px 14px;
  text-decoration: none; white-space: nowrap; transition: transform .15s ease, background .18s ease, box-shadow .18s ease; }
.uc-tc--act .uc-btn--enrol { background: var(--ins-navy); color: #fff; box-shadow: 0 8px 16px rgba(10,86,64,.24); }
.uc-tc--act .uc-btn--enrol:hover { background: var(--ins-navy-2); transform: translateY(-1px); }
.uc-tc--act .uc-btn--ghost { background: #fff; color: var(--ins-navy); border: 1px solid var(--ins-line); }
.uc-tc--act .uc-btn--ghost:hover { border-color: var(--ins-navy); }

/* tablet */
@media (max-width: 1024px) {
  .uc-trow { grid-template-columns: 64px minmax(0,2fr) 1fr auto; gap: 14px; }
  .uc-trow--head [role="columnheader"]:nth-child(3),
  .uc-trow--head [role="columnheader"]:nth-child(5) { display: none; }
  .uc-tc--format, .uc-tc--seats { display: none; }
}

/* mobile: each row becomes a stacked card with labels */
@media (max-width: 680px) {
  .uc-table { border: 0; background: transparent; box-shadow: none; }
  .uc-trow, .uc-trow--head { display: none; }
  .uc-trow:not(.uc-trow--head) {
    display: grid; grid-template-columns: 58px 1fr; gap: 12px 14px; padding: 16px;
    background: #fff; border: 1px solid var(--ins-line); border-radius: 14px; margin-bottom: 12px; box-shadow: 0 1px 3px rgba(10,86,64,.06); }
  .uc-tc--course { grid-column: 2; }
  .uc-tc--date { grid-row: 1; }
  .uc-tc--format, .uc-tc--price, .uc-tc--seats { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .uc-tc__label { display: inline-block; min-width: 88px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ins-navy); }
  .uc-tc--act { grid-column: 1 / -1; flex-direction: row; }
  .uc-tc--act .uc-btn { flex: 1; }
}

/* upcoming-courses "see all" link under the table */
.uc-seeall { display: flex; justify-content: center; margin-top: clamp(22px,3vw,32px); }

/* ============================================================
   Quick Contact — redesigned (split card, higher contrast)
   ============================================================ */
.qc-section { background: var(--ins-bg) !important; color: var(--ins-ink) !important; padding: clamp(48px,6vw,84px) 0 !important; }
.qc-section::before, .qc-section::after { display: none !important; }   /* drop dark glow + dot grid */

.qc-wrap {
  grid-template-columns: 1.05fr .95fr !important;
  gap: 0 !important; align-items: stretch !important;
  background: #fff; border: 1px solid var(--ins-line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(10,86,64,.16);
}

/* left — green info panel */
.qc-info {
  position: relative; padding: clamp(34px,4vw,52px) clamp(28px,3.4vw,46px); color: #fff;
  background:
    radial-gradient(72% 90% at 92% 6%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(150deg, #0A5640 0%, #0E6B4E 56%, #084A36 122%);
}
.qc-info::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: repeating-linear-gradient(125deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px);
}
.qc-info > * { position: relative; z-index: 1; }
.qc-info h2 { color: #fff !important; }
.qc-info h2 .em, .qc-info h2 em { color: var(--ins-accent) !important; font-style: italic; }
.qc-info > p { color: rgba(255,255,255,.82) !important; }

/* channel cards */
.qc-methods { margin-top: clamp(22px,3vw,30px) !important; gap: 12px !important; }
.qc-method {
  background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 14px !important; padding: 13px 15px !important;
}
.qc-method:hover { background: rgba(255,255,255,.14) !important; border-color: var(--ins-accent) !important; transform: translateX(4px); }
.qc-method__ic { width: 46px !important; height: 46px !important; border-radius: 12px !important; color: #fff !important; background: rgba(255,255,255,.14) !important; }
.qc-method strong { color: #fff !important; }
/* distinct brand colour per channel (1=WhatsApp keeps its inline green) */
.qc-methods .qc-method:nth-child(2) .qc-method__ic { background: linear-gradient(150deg, var(--ins-navy), var(--ins-navy-2)) !important; }   /* email */
.qc-methods .qc-method:nth-child(3) .qc-method__ic { background: #0A66C2 !important; }                                                       /* linkedin */
.qc-methods .qc-method:nth-child(4) .qc-method__ic { background: linear-gradient(150deg, #DDBD6E, #C8A45D) !important; color: #3a2c08 !important; } /* location — gold */

/* right — form panel (sits flush inside the card) */
.qc-card { background: #fff !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
  padding: clamp(34px,4vw,52px) clamp(28px,3.4vw,46px) !important; }
.qc-card__title { color: var(--ins-navy) !important; }
.qc-card__title::after { background: var(--ins-accent) !important; }
.qc-field label { color: var(--ins-navy) !important; }
.qc-field .adm-input { border-radius: 10px; }
.qc-field .adm-input:focus { border-color: var(--ins-navy) !important; box-shadow: 0 0 0 3px rgba(10,86,64,.12) !important; }

@media (max-width: 880px) { .qc-wrap { grid-template-columns: 1fr !important; } }

/* ============================================================
   Artistic touches — subtle brand-coloured patterns
   (all sit behind content, very low opacity, no a11y impact)
   ============================================================ */

/* 1. Cards get a small gold "folded corner" wedge top-right */
.feature-card, .resource-card, .card, .industry-card, .pcard, .uc-table, .investment-card, .qc-card, .detail-card {
  background-color: #fff;
  background-image: linear-gradient(225deg, rgba(200,164,93,.22) 0 18px, transparent 18px);
  background-repeat: no-repeat;
  background-position: top right;
}
/* keep the price/quote glass cards readable — slightly stronger wedge only */
.pcard { background-image: linear-gradient(225deg, rgba(200,164,93,.26) 0 20px, transparent 20px); }

/* 2. Light tinted sections get a faint diagonal hairline weave */
.section-gray, .uc-section, .qc-section, .pricing-section, .svcshow {
  background-image:
    repeating-linear-gradient(135deg, rgba(10,86,64,.035) 0 1px, transparent 1px 26px);
}
/* preserve the upcoming-courses gradient underneath the weave */
.uc-section {
  background-image:
    repeating-linear-gradient(135deg, rgba(10,86,64,.04) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, #F7F9FC, #EBF5EF);
}
.section-gray { background-color: #F5F6F8; }

/* 3. Dark bands get a soft gold dot-grid + keep their gradient */
.cta-banner {
  background-image:
    radial-gradient(rgba(200,164,93,.10) 1px, transparent 1.4px),
    linear-gradient(135deg, #0A5640 0%, #0E6B4E 55%, #084A36 120%);
  background-size: 22px 22px, auto;
}
.crs-detail__hero {
  background-image:
    radial-gradient(rgba(200,164,93,.09) 1px, transparent 1.4px),
    radial-gradient(60% 100% at 82% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(135deg, #0A5640 0%, #0E6B4E 55%, #084A36 100%);
  background-size: 24px 24px, auto, auto;
}

/* 4. Section eyebrows get a tiny gold diamond flourish */
.section-header .eyebrow::before {
  content: "\25C6"; color: var(--ins-accent); font-size: .7em;
  margin-right: 8px; vertical-align: middle; opacity: .9;
}

/* 5. Service-showcase stage: faint gold ring motif in the corner */
.svcshow__stage::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
  border: 1px solid rgba(200,164,93,.18); border-radius: 50%; pointer-events: none; z-index: 1;
}

/* ============================================================
   Detail hero — richer designed treatment (industries / case studies)
   ============================================================ */
.detail-hero {
  padding: clamp(116px,13vw,164px) 0 clamp(52px,6vw,76px) !important;
  background:
    radial-gradient(52% 120% at 88% -10%, rgba(200,164,93,.18), transparent 55%),
    radial-gradient(55% 100% at 6% 115%, rgba(62,99,200,.16), transparent 55%),
    linear-gradient(135deg, #0A5640 0%, #0E6B4E 55%, #084A36 120%) !important;
}
/* faint tech-grid, fading out to the left so text stays clean */
.detail-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 34px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60%);
          mask-image: linear-gradient(90deg, transparent 0, #000 60%);
}
/* large gold ring motif on the right */
.detail-hero::after {
  content: ""; position: absolute; right: -70px; top: 50%; transform: translateY(-50%);
  width: 430px; height: 430px; border-radius: 50%;
  border: 1px solid rgba(200,164,93,.22); pointer-events: none; z-index: 0;
}
/* the watermark icon becomes a glass medallion */
.detail-hero__icon {
  right: 7% !important; top: 50% !important; transform: translateY(-50%) !important;
  width: clamp(160px,19vw,248px); height: clamp(160px,19vw,248px);
  display: grid; place-items: center; border-radius: 50%;
  font-size: clamp(3.4rem,6.4vw,5.4rem) !important;
  color: rgba(255,255,255,.92) !important;
  background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.15), rgba(255,255,255,.04) 62%, transparent 75%) !important;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 30px 70px rgba(0,0,0,.28), 0 0 0 10px rgba(255,255,255,.03);
  z-index: 0;
}
/* gold tick before the eyebrow */
.detail-hero__eyebrow { position: relative; padding-left: 32px; }
.detail-hero__eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 2px; background: var(--ins-accent);
}
/* hide the medallion + ring on narrower screens so they never crowd the text */
@media (max-width: 980px) {
  .detail-hero__icon, .detail-hero::after { display: none !important; }
  .detail-hero::before { -webkit-mask-image: none; mask-image: none; opacity: .4; }
}

/* ============================================================
   Page-hero (service / banner pages) — match the detail-hero design
   ============================================================ */
/* warm gold + cool blue glows layered over the existing mesh */
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 115% at 90% -12%, rgba(200,164,93,.18), transparent 55%),
    radial-gradient(55% 100% at 4% 118%, rgba(62,99,200,.16), transparent 55%);
}
.page-hero > .container, .page-hero__content, .page-hero__stats { position: relative; z-index: 1; }

/* the watermark icon becomes the same glass medallion (with gold ring) */
.page-hero__icon-bg {
  left: auto !important; right: 6% !important; top: 50% !important; bottom: auto !important;
  transform: translateY(-50%) !important;
  width: clamp(160px,18vw,238px) !important; height: clamp(160px,18vw,238px) !important;
  display: grid !important; place-items: center !important; border-radius: 50% !important;
  font-size: clamp(3.2rem,6vw,5rem) !important;
  color: rgba(255,255,255,.92) !important; opacity: 1 !important;
  background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.15), rgba(255,255,255,.04) 62%, transparent 75%) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,.28), 0 0 0 13px rgba(200,164,93,.16) !important;
  z-index: 0 !important;
}
/* gold tick before the hero eyebrow */
.page-hero .eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 2px; background: var(--ins-accent);
  vertical-align: middle; margin-right: 10px;
}
@media (max-width: 980px) {
  .page-hero__icon-bg { display: none !important; }
  .page-hero::after { opacity: .6; }
}

/* ============================================================
   Free Resources hub (.res-*)
   ============================================================ */
.res-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 clamp(28px,4vw,40px); }
.res-tab { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ins-sans); font-size: .82rem; font-weight: 600;
  color: var(--ins-body); background: #fff; border: 1px solid var(--ins-line); border-radius: 999px; padding: 8px 15px; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s; }
.res-tab i { color: var(--ins-accent); font-size: .85rem; }
.res-tab:hover { border-color: var(--ins-navy); color: var(--ins-navy); }
.res-tab.is-active { background: var(--ins-navy); color: #fff; border-color: transparent; }
.res-tab.is-active i { color: #fff; }

.res-cat { margin-bottom: clamp(38px,5vw,56px); }
.res-cat__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.res-cat__ic { flex: none; width: 52px; height: 52px; border-radius: 14px 14px 14px 22px; display: grid; place-items: center;
  color: #fff; font-size: 1.25rem; background: linear-gradient(150deg, var(--ins-navy), var(--ins-navy-2)); box-shadow: 0 10px 22px rgba(10,86,64,.22); }
.res-cat__title { font-family: var(--ins-sans); font-weight: 700; color: var(--ins-ink); font-size: clamp(1.15rem,2vw,1.4rem); margin: 0; }
.res-cat__count { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--ins-navy); background: var(--ins-bg); border: 1px solid var(--ins-line); border-radius: 999px; padding: 2px 9px; margin-left: 6px; vertical-align: middle; }
.res-cat__blurb { color: var(--ins-body); margin: 4px 0 0; font-size: .92rem; }

.res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.res-item { display: flex; align-items: center; gap: 14px; padding: 15px 16px; background: #fff; border: 1px solid var(--ins-line);
  border-radius: 4px 4px 4px 16px; text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.res-item:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10,86,64,.13); border-color: transparent; }
.res-item__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: var(--ins-navy);
  background: var(--ins-bg); border: 1px solid var(--ins-line); font-size: 1rem; }
.res-item__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.res-item__title { font-family: var(--ins-sans); font-weight: 600; color: var(--ins-ink); font-size: .96rem; line-height: 1.3; }
.res-item__meta { font-size: .78rem; color: var(--ins-body); margin-top: 3px; }
.res-item__go { flex: none; color: var(--ins-accent); transition: transform .2s; }
.res-item:hover .res-item__go { transform: translateX(4px); color: var(--ins-navy); }

.res-cta { text-align: center; max-width: 640px; margin: clamp(20px,3vw,30px) auto 0; background: var(--ins-bg);
  border: 1px solid var(--ins-line); border-radius: 18px; padding: clamp(30px,4vw,46px); }
.res-cta__ic { font-size: 2.2rem; color: var(--ins-navy); margin-bottom: 12px; display: block; }
.res-cta h3 { font-family: var(--ins-serif); color: var(--ins-navy); margin: 0 0 8px; }
.res-cta p { color: var(--ins-body); margin: 0 auto 20px; max-width: 460px; }
.res-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Dynamic showcase slides (.dslide) — HTML/CSS, no poster images
   ============================================================ */
.svcshow__stage { background: #fff; }
.dslide { position: relative; display: block; overflow: hidden; color: var(--ins-ink);
  --accent: var(--ins-navy); --accent2: var(--ins-navy-2);
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 55%, #eef3f8 100%);
  padding: clamp(20px,2.6vw,34px) clamp(20px,3vw,42px) clamp(18px,2.4vw,28px);
  animation: svcFade .5s ease both; }
.dslide--green { --accent: var(--ins-blue); --accent2: var(--ins-blue-2); }
.dslide__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(38% 60% at 96% 4%, rgba(200,164,93,.10), transparent 60%),
    repeating-linear-gradient(125deg, rgba(21,38,94,.035) 0 1px, transparent 1px 30px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 45%);
          mask-image: linear-gradient(90deg, transparent 0, #000 45%); }
.dslide > * { position: relative; z-index: 1; }

/* header: brand | lead | badge */
.dslide__head { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(18px,2.4vw,38px); align-items: center; }
.dslide__brand { display: flex; align-items: center; gap: 12px; padding-right: clamp(14px,2vw,26px); border-right: 1px solid var(--ins-line); }
.dslide__logo { width: clamp(80px,8vw,120px); height: auto; flex: none; }
.dslide__brandtext strong { display: block; font-family: var(--ins-sans); font-weight: 800; color: var(--ins-navy); font-size: clamp(.92rem,1.2vw,1.08rem); line-height: 1.05; letter-spacing: .02em; }
.dslide__brandtext span { display: block; margin-top: 6px; font-size: .66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ins-blue); line-height: 1.3; }

.dslide__lead { min-width: 0; }
.dslide__title { font-family: var(--ins-serif); font-weight: 800; color: var(--accent); line-height: 1.02;
  font-size: clamp(1.8rem,3.6vw,3.1rem); letter-spacing: -.02em; margin: 0; }
.dslide__title em { font-style: normal; color: var(--ins-blue); }
.dslide--green .dslide__title em { color: var(--ins-navy); }
.dslide__eyebrow { display: inline-block; margin: 8px 0 6px; font-family: var(--ins-sans); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; color: var(--ins-accent); }
.dslide__eyebrow::before { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--ins-accent); vertical-align: middle; margin-right: 9px; }
.dslide__desc { color: var(--ins-body); font-size: clamp(.86rem,1vw,.98rem); line-height: 1.55; max-width: 640px; margin: 0; }

/* credential shield badge — gold 3D shield + stars + ribbon band */
.dslide__badge { flex: none; display: flex; flex-direction: column; align-items: center; width: clamp(128px,13vw,168px); }
.dslide__shield { position: relative; display: grid; place-items: center; gap: 2px;
  width: clamp(104px,11vw,140px); height: clamp(116px,12vw,156px);
  clip-path: polygon(0 0, 100% 0, 100% 64%, 50% 100%, 0 64%);
  background: linear-gradient(160deg, #F1D789 0%, #C8A45D 52%, #9c7a30 100%);   /* gold frame */
  box-shadow: 0 22px 46px rgba(21,38,94,.32); }
.dslide__shield::before { content: ""; position: absolute; inset: 4px; z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 64%, 50% 100%, 0 64%);
  background: linear-gradient(160deg, var(--ins-navy), var(--ins-navy-2) 65%, #081530); }
.dslide__shield > * { position: relative; z-index: 2; }
.dslide__stars { display: flex; gap: 3px; color: #F4D77F; font-size: .5rem; margin-bottom: 1px; text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.dslide__shield-txt { font-family: var(--ins-serif); font-weight: 800; letter-spacing: .03em;
  font-size: clamp(1.4rem,2.2vw,2.05rem);
  background: linear-gradient(180deg, #F8E9B6, #D9B768 60%, #C29A45);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.dslide__shield-ic { font-size: clamp(1.6rem,2.4vw,2.15rem); color: #F4D77F; }
.dslide__shield-gloss { position: absolute; top: 5px; left: 9%; right: 40%; height: 30%; z-index: 1; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent); pointer-events: none; }
.dslide__band { position: relative; z-index: 3; margin-top: -15px; padding: 6px 16px; line-height: 1.2;
  font-family: var(--ins-sans); font-size: .6rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--ins-blue), var(--ins-blue-2)); box-shadow: 0 9px 18px rgba(30,138,60,.34);
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 9px 100%, 0 50%); }
.dslide--green .dslide__band { background: linear-gradient(135deg, var(--ins-navy), var(--ins-navy-2)); box-shadow: 0 9px 18px rgba(21,38,94,.34); }

/* ribbon */
.dslide__ribbon { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  margin: clamp(16px,2vw,22px) auto; max-width: 760px; padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--ins-navy), var(--ins-navy-2)); color: #fff;
  font-family: var(--ins-sans); font-weight: 700; font-size: clamp(.74rem,1vw,.9rem); letter-spacing: .04em;
  border: 1px solid rgba(200,164,93,.5); box-shadow: 0 10px 26px rgba(21,38,94,.22); }
.dslide__ribbon i { color: var(--ins-accent); }

/* feature grid */
.dslide__features { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: clamp(16px,2vw,22px); }
.dslide__feat { background: #fff; border: 1px solid var(--ins-line); border-radius: 12px; padding: 14px 12px; text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s; }
.dslide__feat:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(21,38,94,.12); border-color: transparent; }
.dslide__feat-ic { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 9px; border-radius: 50%;
  color: #fff; font-size: 1.15rem; background: linear-gradient(150deg, var(--accent), var(--accent2)); box-shadow: 0 8px 16px rgba(21,38,94,.2); }
.dslide__feat h3 { font-family: var(--ins-sans); font-weight: 700; font-size: .82rem; color: var(--ins-navy); margin: 0 0 4px; letter-spacing: -.005em; }
.dslide__feat p { font-size: .74rem; color: var(--ins-body); line-height: 1.4; margin: 0; }

/* footer */
.dslide__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--ins-line); padding-top: clamp(14px,1.8vw,18px); }
.dslide__tagline { font-family: var(--ins-serif); font-weight: 700; font-style: italic; color: var(--ins-navy); font-size: clamp(.9rem,1.2vw,1.1rem); }
.dslide__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.dslide__btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ins-sans); font-weight: 700; font-size: .82rem;
  padding: 11px 20px; border-radius: 999px; text-decoration: none; transition: transform .18s, box-shadow .18s, background .18s; }
.dslide__btn--primary { background: linear-gradient(135deg, var(--ins-blue), var(--ins-blue-2)); color: #fff; box-shadow: 0 10px 22px rgba(30,138,60,.3); }
.dslide--navy .dslide__btn--primary { background: linear-gradient(135deg, var(--ins-navy), var(--ins-navy-2)); box-shadow: 0 10px 22px rgba(21,38,94,.3); }
.dslide__btn--primary:hover { transform: translateY(-2px); }
.dslide__btn--ghost { background: #fff; color: var(--ins-navy); border: 1.5px solid var(--ins-line); }
.dslide__btn--ghost:hover { border-color: var(--ins-navy); }

/* responsive */
@media (max-width: 1024px) {
  .dslide__features { grid-template-columns: repeat(3, 1fr); }
  .dslide__head { grid-template-columns: auto 1fr; }
  .dslide__badge { display: none; }
}
@media (max-width: 680px) {
  .dslide__head { grid-template-columns: 1fr; gap: 14px; }
  .dslide__brand { border-right: 0; border-bottom: 1px solid var(--ins-line); padding: 0 0 12px; }
  .dslide__features { grid-template-columns: repeat(2, 1fr); }
  .dslide__foot { flex-direction: column; align-items: flex-start; }
  .dslide__bg { -webkit-mask-image: none; mask-image: none; opacity: .35; }
}

/* footer removed from slides — tighten the bottom of the dynamic slide */
.dslide__features { margin-bottom: 0 !important; }
.dslide { padding-bottom: clamp(16px,2vw,24px) !important; }
