/* ═══════════════════════════════════════════════
   Innovation Star - Design System Stylesheet
   ═══════════════════════════════════════════════ */

@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&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Tokens ──────────────────────────────────────── */
:root {
  --navy:       #0B1D4A;
  --navy-mid:   #1B3070;
  --gold:       #C8922A;
  --gold-lt:    #D9A84C;
  --gold-pale:  #F7EDD6;
  --gold-muted: #EDD8AA;
  --white:      #FFFFFF;
  --off-white:  #FAF9F7;
  --warm-grey:  #F0EDE5;
  --border:     #E5DFD0;
  --border-mid: #C9BFA8;
  --text:       #0B1D4A;
  --text-mid:   #374266;
  --text-muted: #6B7794;
  --text-light: #9EA8C0;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, -apple-system, sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --sh-xs: 0 1px 4px rgba(11,29,74,.05);
  --sh-sm: 0 2px 12px rgba(11,29,74,.08);
  --sh-md: 0 4px 24px rgba(11,29,74,.12);
  --sh-lg: 0 8px 48px rgba(11,29,74,.16);
  --sh-gold: 0 4px 20px rgba(200,146,42,.18);
  --max-w: 1240px;
  --nav-h: 72px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }
input, select, textarea { font-family: var(--fb); }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fd); font-weight: 600; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(42px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(24px, 2.8vw, 36px); }
h4 { font-size: 22px; }

.eyebrow {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-muted);
}

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── Layout ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img { height: 40px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: .2px;
}
.nav-brand-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .5px;
}
.nav-brand-ai {
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: .25s var(--ease);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}
.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-muted);
}
.btn-ghost-gold:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-full { width: 100%; }

/* ── Image Placeholders ──────────────────────────── */
.ph {
  position: relative;
  overflow: hidden;
  background: #F0EBE0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 18px,
    rgba(200,146,42,.07) 18px, rgba(200,146,42,.07) 36px
  );
  border-radius: var(--r-md);
  border: 1px solid #D4C9AD;
}
.ph pre {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 14px 16px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  line-height: 1.6;
  color: #3D3830;
  background: rgba(255,252,248,.9);
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background-color: #0B1D4A;           /* navy fallback so the left side blends with the image */
  background-image: url("../uploads/hero_image_isc_ai_v2.jpg");
  background-repeat: no-repeat;
  background-position: right center;   /* right edge of image always visible */
  background-size: auto 100%;          /* fill hero height, keep aspect, overflow spills left */
  overflow: hidden;
}

/* Hero sits on a navy background now — recolour the left-hand text/boxes/buttons so they
   stay visible and look classy. Scoped under .hero so no other section is affected. */
.hero .hero-title { color: #ffffff; }
.hero .hero-sub { color: rgba(255,255,255,.85); }
.hero .hero-body { color: rgba(255,255,255,.65); }
.hero .hero-pill {
  background: rgba(255,255,255,.06);
  border-color: rgba(216,168,76,.45);
  color: rgba(255,255,255,.85);
}
.hero .hero-pill:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.hero .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #0B1D4A;
}
.hero .btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.hero .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #ffffff;
}
.hero .btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
/* White-to-transparent wash keeps the left text legible while letting the
   handshake/shield on the right of the image show through. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,29,74,.92) 0%, rgba(11,29,74,.6) 32%, rgba(11,29,74,0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-title {
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hero-body {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-muted);
}

/* ── Products ────────────────────────────────────── */
.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-lead { margin: 16px auto 0; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.product-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.product-card:hover::after { transform: scaleX(1); }

.product-card-thumb { overflow: hidden; }
.product-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-card-name { margin-bottom: 12px; font-size: 26px; }
.product-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
  flex: 1;
}
.product-bullets { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.product-bullets li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.product-bullets li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Why Section ─────────────────────────────────── */
.why-section { background: var(--warm-grey); }
.why-stats { display: flex; flex-direction: column; gap: 32px; }
.why-stat { border-left: 2px solid var(--gold-muted); padding-left: 20px; }
.why-stat-num {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.why-stat-label { font-size: 13px; color: var(--text-muted); letter-spacing: .3px; }
.why-awards { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.why-award {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
}
.award-year {
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Security Section ────────────────────────────── */
.security { background: var(--navy); }
.security .eyebrow { color: var(--gold-lt); }
.security .eyebrow::after { background: rgba(200,146,42,.4); }
.security h2 { color: var(--white); }
.security .section-lead { color: rgba(255,255,255,.65); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.security-item {
  padding: 36px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .25s var(--ease);
}
.security-item:hover { background: rgba(255,255,255,.07); }
.security-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,146,42,.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.security-icon svg { color: var(--gold-lt); }
.security-item h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.security-item p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── Insights ────────────────────────────────────── */
.insights { background: var(--off-white); }
.insights-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.insight-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.insight-thumb { overflow: hidden; }
.insight-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.insight-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.insight-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}
.insight-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.insight-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.insight-link:hover { color: var(--gold); gap: 12px; }

/* ── Testimonials ────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-lead { margin: 16px auto 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--sh-sm); }
.quote-mark {
  font-family: var(--fd);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold-muted);
  line-height: .6;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author { border-top: 1px solid var(--border); padding-top: 20px; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Final CTA ───────────────────────────────────── */
.cta-final { background: var(--gold-pale); }
.cta-final-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-final .eyebrow { justify-content: center; }
.cta-final .eyebrow::after { display: none; }
.cta-final h2 { color: var(--navy); margin-bottom: 16px; }
.cta-final p { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--navy); padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 36px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img { opacity: .9; }
.footer-logo-name {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.footer-logo-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--gold-lt); }

.footer-links-col h4 {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-links-col a { transition: color .2s; }
.footer-links-col a:hover { color: var(--gold-lt); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── Modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,14,38,.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: scale(.96) translateY(8px);
  transition: transform .35s var(--ease);
  box-shadow: var(--sh-lg);
}
.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}
.modal-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--warm-grey); color: var(--navy); }
.modal-title { font-size: 32px; margin-bottom: 8px; color: var(--navy); }
.modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
  box-shadow: 0 0 0 3px rgba(200,146,42,.1);
}
.optional { font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: 0; }
.form-trust {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.modal-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.modal-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px;
  background: #EAF7F0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #2D9E6B;
  margin: 0 auto 20px;
}
.modal-success h3 { font-size: 28px; margin-bottom: 8px; color: var(--navy); }
.modal-success p { font-size: 15px; color: var(--text-muted); }

/* ── Product Pages ───────────────────────────────── */
.product-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: var(--off-white);
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-hero-label a { color: var(--gold); transition: opacity .2s; }
.product-hero-label a:hover { opacity: .75; }
.product-hero-label span { color: var(--border-mid); }
.product-hero-title { color: var(--navy); margin-bottom: 8px; }
.product-hero-subtitle {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.product-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
}
.who-card-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.who-card h4 { font-size: 16px; margin-bottom: 6px; }
.who-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.workflow-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.workflow-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.workflow-num {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold-muted);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.workflow-item h4 { font-size: 18px; margin-bottom: 6px; }
.workflow-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; padding-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-body { }
.feature-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-body h3 { margin-bottom: 16px; }
.feature-body p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.feature-bullets-list { display: flex; flex-direction: column; gap: 10px; }
.feature-bullets-list li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.feature-bullets-list li::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid .testimonial-card:last-child { grid-column: 1 / -1; }
  .product-who-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero-inner,
  .product-hero-inner,
  .grid-2,
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  /* On narrow screens the image's light area is off-screen, so use a vertical
     white wash to keep text readable while the golden glow shows below. */
  .hero::before {
    background: linear-gradient(to bottom, rgba(11,29,74,.55) 0%, rgba(11,29,74,.78) 55%, rgba(11,29,74,.92) 100%);
  }
  .feature-block.reverse { direction: ltr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 8px; }
  .trust-item { padding: 8px 16px; font-size: 10px; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 24px; border-bottom: 1px solid var(--border); gap: 24px; }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; gap: 16px; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .product-who-grid { grid-template-columns: 1fr; }
  .why-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .modal-card { padding: 32px 24px; }
}

/* ── Awards & Accomplishment section (replaces testimonials) ───────────── */
.awards-text { max-width: 860px; margin: 0 auto 48px; }
.awards-text p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.awards-text strong { color: var(--text); font-weight: 600; }
/* Certificate image grid — replicates the main homepage layout EXACTLY (Bootstrap grid
   + theme certificate classes), scoped under .awards-section so nothing else is affected. */
.awards-section .auto-container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.awards-section .row {
  display: flex; flex-wrap: wrap;
  margin-right: -15px; margin-left: -15px;
  box-sizing: border-box;
}
.awards-section [class*="col-"] {
  position: relative; width: 100%;
  padding-right: 15px; padding-left: 15px;
  box-sizing: border-box;
}
.awards-section .col-12 { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 576px) { .awards-section .col-sm-12 { flex: 0 0 100%; max-width: 100%; } }
@media (min-width: 768px) {
  .awards-section .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .awards-section .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 992px) { .awards-section .col-lg-6 { flex: 0 0 50%; max-width: 50%; } }
.awards-section .certificate .row { align-items: center; justify-content: center; }
.awards-section .row.certificate_2026 { align-items: baseline; }
.awards-section .cpd_image { text-align: center; }
.awards-section .cpd_image img { width: 48%; }
@media (max-width: 991px) { .awards-section .cpd_image img { width: 68%; margin-top: 16px; } }
.awards-section .text-right { text-align: right; }
.awards-section .text-left { text-align: left; }
.awards-section .certificate img { max-width: 100%; height: auto; display: inline-block; }

/* ── Footer additions: extra link columns wrap, certificate strip ─────── */
.footer-grid { row-gap: 44px; }
.footer-cert-strip {
  text-align: center;
  margin: 8px 0 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-cert-strip img { max-width: 100%; height: auto; display: inline-block; }

/* Floating WhatsApp button — same look/behaviour as the main site (bottom-left).
   Icon is an inline SVG (no Font Awesome dependency on this page). */
.bar_wpp {
  position: fixed;
  bottom: 10px;
  left: 30px;
  z-index: 120;
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}
.bar_wpp a { display: flex; align-items: stretch; justify-content: space-between; text-decoration: none; }
.bar_wpp .icon_wpp {
  display: flex; align-items: center; justify-content: center;
  background-color: #0c7619; text-align: center;
  transition: 0.3s; border-radius: 100%;
  width: 40px; height: 40px; float: left; z-index: 2;
}
.bar_wpp .icon_wpp svg { width: 22px; height: 22px; display: block; }
.bar_wpp .txt_wpp {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-color: #0e3f14; color: #ffffff;
  padding: 0px 5px; font-size: 14px; font-weight: 300; transition: 0.3s;
  padding-right: 11px; padding-left: 45px !important; margin-left: -35px;
  z-index: 1; border-radius: 50px;
}
.bar_wpp a:hover { text-decoration: none !important; }
.bar_wpp a:hover .icon_wpp { background-color: #0e3f14; }
.bar_wpp a:hover .txt_wpp { background-color: #0c7619; }
@media (max-width: 475px) {
  .bar_wpp { right: auto; left: 5px; bottom: 15px; }
  .bar_wpp .txt_wpp { display: none; }
}

/* ICA award certificates — compact single row of 5, small, with a slight gap. */
.ica-cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
}
.ica-cert-row a { flex: 0 0 calc(20% - 14.4px); max-width: calc(20% - 14.4px); display: block; }
.ica-cert-row img { width: 100%; height: auto; display: block; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
@media (max-width: 768px) { .ica-cert-row a { flex: 0 0 46%; max-width: 46%; } }
@media (max-width: 480px) { .ica-cert-row a { flex: 0 0 100%; max-width: 100%; } }
