/*
 * ================================================================
 *  ICE&SDGs Website — Shared Stylesheet
 *  assets/css/style.css
 *  Covers all 10 service pages:
 *  Academy · ESG Advisory · Research · AI · Certifications ·
 *  Sports for Life · Social Impact Audits · CSR ·
 *  Afforestation & Organic Farming · GHG & Carbon Credits
 * ================================================================
 */

/* ================================================================
   1. CSS VARIABLES
   ================================================================ */
:root {
  /* ── Core Brand Colors ── */
  --navy:      #0b1f3a;
  --deep:      #0e2848;
  --blue:      #1a4a8a;
  --mid:       #2563b0;
  --sky:       #dbeafe;

  /* ── Gold / Accent ── */
  --gold:      #c8973a;
  --gilt:      #e2b96a;       /* alias: --gold-lt on CSR page */

  /* ── Green family ── */
  --green:     #1a5c40;
  --fern:      #2e8b57;
  --leaf:      #6db56d;
  --sage:      #2e8b57;       /* GHG page alias */
  --forest:    #0d3b2e;       /* GHG nav */
  --moss:      #1a5c40;

  /* ── Teal ── */
  --teal:      #0d7377;
  --cyan:      #14a085;

  /* ── Red/Fire (Sports) ── */
  --fire:      #c0392b;
  --ember:     #e74c3c;

  /* ── Purple (Research/AI) ── */
  --purple:    #5b21b6;
  --violet:    #7c3aed;

  /* ── Earth tones (Afforestation) ── */
  --earth:     #3b2a1a;
  --bark:      #5c3d1e;
  --soil:      #7a5230;
  --amber:     #e67e22;
  --sprout:    #74c69d;
  --parchment: #fdf8f0;

  /* ── Neutrals ── */
  --cream:     #faf8f4;
  --mist:      #f0f5fb;
  --white:     #ffffff;
  --ink:       #111827;
  --slate:     #4b5563;
  --charcoal:  #1c1c1c;

  /* ── Borders & Radii ── */
  --bdr:       rgba(11,31,58,0.09);
  --border:    rgba(11,31,58,0.10);
  --r:         10px;
  --r-lg:      16px;

  /* ── Typography ── */
 /* --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-alt:   'Inter', system-ui, sans-serif;   /* CSR page */
  /* ── Typography ── */

--font-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji";

--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif;

--font-alt: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif; /* CSR page */

  /* ── Spacing scale ── */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  52px;
  --space-xl:  88px;
  --space-2xl: 120px;

  /* ── Shadows ── */
  --shadow-sm: 0 4px 12px rgba(11,31,58,0.07);
  --shadow-md: 0 12px 32px rgba(11,31,58,0.10);
  --shadow-lg: 0 20px 48px rgba(11,31,58,0.12);
  --shadow-xl: 0 28px 64px rgba(11,31,58,0.16);

  /* ── Transitions ── */
  --trans-fast: all 0.2s ease;
  --trans-base: all 0.25s ease;
  --trans-slow: all 0.35s ease;
}


/* ================================================================
   2. CSS RESET & BASE
   ================================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }


/* ================================================================
   3. TYPOGRAPHY UTILITIES
   ================================================================ */

/* Section Eyebrow Label — used across all pages */
/* .ey (service pages) and .eyebrow (CSR page) — identical pattern */
.ey,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ey::before,
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--mid);
  flex-shrink: 0;
}

/* Section Title — h2.st (service pages) and h2.stitle (CSR page) */
h2.st,
h2.stitle {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  max-width: 700px;
}
h2.st em,
h2.stitle em {
  color: var(--mid);
  font-style: normal;
}

/* Section Lead Paragraph — .sl (service pages) and .slead (CSR page) */
.sl,
.slead {
  font-size: 16.5px;
  color: var(--slate);
  line-height: 1.78;
  max-width: 660px;
  margin-top: 16px;
}

/* Body text helpers */
.body-text p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Playfair headings inside sections */
.card-title,
.panel-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}


/* ================================================================
   4. NAVIGATION
   ================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  border-bottom: 1px solid rgba(200,151,58,0.2);
}

/* Logo group */
.nav-logo,
.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 11px;
}

/* Logo mark / avatar */
.nav-mark,
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--navy);
  font-size: 12px;
  flex-shrink: 0;
}

/* Brand name text */
.nav-name,
.nav-brand {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.nav-name em,
.nav-brand em,
.nav-brand strong {
  color: var(--gilt);
  font-style: normal;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gilt);
}

/* Nav CTA button */
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: var(--trans-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--gilt);
  transform: translateY(-1px);
}


/* ================================================================
   5. HERO — SHARED ELEMENTS
   ================================================================ */

/* Base hero layout (all pages override background) */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 110px 52px 72px;
  position: relative;
  overflow: hidden;
}

/* Grid overlay pattern (most pages) */
.hero-grid,
.hero-mesh,
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 63px, rgba(255,255,255,0.7) 63px, rgba(255,255,255,0.7) 64px),
    repeating-linear-gradient(90deg, transparent, transparent 63px, rgba(255,255,255,0.7) 63px, rgba(255,255,255,0.7) 64px);
  pointer-events: none;
}

/* Dot pattern variant */
.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Glow orbs */
.hero-glow,
.hero-orb,
.hero-orb1,
.hero-orb2,
.hero-glow1,
.hero-glow2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Hero content container */
.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

/* Hero pill / eyebrow badge */
.hero-pill,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(200,151,58,0.14);
  border: 1px solid rgba(200,151,58,0.4);
  color: var(--gilt);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 26px;
  width: fit-content;
  animation: up 0.8s ease both;
}

/* Hero H1 */
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  animation: up 0.8s 0.1s ease both;
}
.hero h1 em { color: var(--gilt); font-style: normal; }

/* Hero subtitle */
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 22px;
  animation: up 0.8s 0.2s ease both;
}

/* Hero buttons row */
.hero-btns,
.hero-cta-group,
.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: up 0.8s 0.4s ease both;
}

/* Hero stat items (left-bordered) */
.hero-stats,
.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: up 0.8s 0.3s ease both;
}
.hs-item,
.hero-meta-item,
.hero-stat {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.hs-num,
.hero-meta-num,
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 800;
  color: var(--gilt);
  line-height: 1;
}
.hs-label,
.hero-meta-label,
.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  max-width: 110px;
  line-height: 1.4;
}

/* Hero chips strip */
.hero-chips,
.hero-pills,
.hero-trust,
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  animation: up 0.8s 0.3s ease both;
}
.hero-chip,
.chip,
.pill,
.trust-pill,
.trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* ================================================================
   6. SECTIONS
   ================================================================ */
section {
  padding: var(--space-xl) var(--space-lg);
}

/* Light backgrounds */
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-mist   { background: var(--mist); }
.bg-parchment { background: var(--parchment); }

/* Dark band — used for policy, proprietary, process sections */
.bg-dark,
.dark-band,
.pol-band,
.policy-band,
.policy,
.proprietary,
.events,
.serve,
.schedule,
.audit,
.csr-partner {
  padding: 72px 52px;
}


/* ================================================================
   7. BUTTON SYSTEM
   ================================================================ */

/* ── Primary: Gold ── */
.btn-gold,
.btn-primary,
.prop-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  white-space: nowrap;
}
.btn-gold:hover,
.btn-primary:hover,
.prop-btn:hover {
  background: var(--gilt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,151,58,0.35);
}

/* ── Ghost / Outline ── */
.btn-ghost,
.btn-secondary,
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 30px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--trans-base);
  white-space: nowrap;
}
.btn-ghost:hover,
.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--gilt);
  color: var(--gilt);
}

/* ── Teal (AI / Social Audit pages) ── */
.btn-teal {
  background: var(--teal);
  color: #fff;
  padding: 14px 30px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-teal:hover {
  background: #14a085;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,115,119,0.4);
}

/* ── Fire/Red (Sports page) ── */
.btn-fire,
.btn-red {
  background: var(--fire);
  color: #fff;
  padding: 14px 30px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-fire:hover,
.btn-red:hover {
  background: var(--ember);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192,57,43,0.45);
}

/* ── Green/Leaf (Afforestation page) ── */
.btn-leaf {
  background: var(--leaf);
  color: #fff;
  padding: 14px 30px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-leaf:hover {
  background: var(--fern);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45,106,79,0.4);
}

/* ── CTA submit / Form submit ── */
.form-submit,
.cta-submit,
.enroll-submit,
.web-btn {
  background: var(--mid);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--trans-base);
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-submit:hover,
.cta-submit:hover,
.enroll-submit:hover { background: var(--blue); transform: translateY(-1px); }
.web-btn { padding: 9px 20px; font-size: 13px; }
.web-btn:hover { background: var(--blue); }

/* Full-width submit */
.form-submit-full,
.cta-submit-full,
.enroll-submit { width: 100%; }


/* ================================================================
   8. CARD PATTERNS
   ================================================================ */

/* ── Standard light card (top-border accent) ── */
.card,
.prog-card,
.pil-card,
.cert-card,
.why-card,
.why-now .wn-card,
.adv-card,
.ben-card,
.aip-card,
.pol-card-light {
  background: var(--cream);
  border-radius: var(--r);
  padding: 30px;
  border: 1px solid var(--bdr);
  transition: var(--trans-base);
}
.card:hover,
.prog-card:hover,
.pil-card:hover,
.cert-card:hover,
.why-card:hover,
.wn-card:hover,
.adv-card:hover,
.ben-card:hover,
.aip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Top-border rainbow helpers */
.card-top-blue   { border-top: 4px solid var(--mid); }
.card-top-gold   { border-top: 4px solid var(--gold); }
.card-top-green  { border-top: 4px solid var(--fern); }
.card-top-purple { border-top: 4px solid var(--violet); }
.card-top-pink   { border-top: 4px solid #db2777; }
.card-top-orange { border-top: 4px solid #ea580c; }
.card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mid), var(--gold));
}

/* Common card icon */
.card-icon,
.prog-icon,
.pil-icon,
.why-icon,
.adv-icon,
.ben-icon,
.srv-icon,
.cp-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

/* Common card heading */
.card-heading,
.prog-title,
.pil-title,
.why-title,
.adv-title,
.wn-title,
.ben-title,
.srv-title,
.cp-title,
.cert-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Common card body text */
.card-body,
.prog-body,
.pil-body,
.adv-body,
.wn-body,
.ben-body,
.srv-body,
.cp-body,
.cert-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
}

/* ── Dark glass card (on navy backgrounds) ── */
.dark-card,
.pol-card,
.pi-card,
.s7-card,
.serve-card,
.evt-card-glass,
.cp-card,
.collab-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--trans-base);
}
.dark-card:hover,
.pol-card:hover,
.pi-card:hover,
.s7-card:hover,
.serve-card:hover,
.cp-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

/* ── Dark card text colors ── */
.dark-card-title,
.pol-title,
.pi-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.dark-card-body,
.pol-body,
.pi-body { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── Badge on dark cards ── */
.pol-badge,
.pi-tag,
.dark-badge {
  display: inline-block;
  background: rgba(200,151,58,0.14);
  border: 1px solid rgba(200,151,58,0.3);
  color: var(--gilt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 40px;
  margin-bottom: 14px;
}

/* ── Feature list inside cards ── */
.feature-list,
.cap-features,
.svc-features,
.pil-list,
.vm-list,
.brsr-card-features,
.csr-features {
  list-style: none;
}
.feature-list li,
.cap-features li,
.svc-features li,
.pil-list li,
.brsr-card-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--mist);
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}
.feature-list li:last-child,
.cap-features li:last-child,
.svc-features li:last-child,
.pil-list li:last-child { border-bottom: none; }

/* Arrow prefix for light-bg lists */
.feature-list li::before,
.svc-features li::before,
.pil-list li::before,
.cta-features li::before,
.partner-features li::before,
.eoi-features li::before {
  content: '→';
  color: var(--mid);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* Check prefix for dark-bg feature lists */
.brsr-card-features li::before,
.audit-list li::before {
  content: '✓';
  color: var(--gilt);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

/* Arrow prefix variant (dark bg) */
.cta-features li::before,
.partner-features li::before { content: '✓'; color: #5eead4; font-weight: 800; font-size: 15px; }

/* Tag pills (inside cards) */
.tag,
.ptag,
.stag,
.prop-sector {
  background: var(--mist);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 40px;
  display: inline-block;
}
.tags-row,
.prog-tags,
.srv-tags,
.area-tags,
.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}


/* ================================================================
   9. GRID LAYOUTS
   ================================================================ */

/* Two-column */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

/* Two-column equal gap, center-align */
.grid-2-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}

/* Three-column */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 52px;
}

/* Four-column */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 52px;
}


/* ================================================================
   10. DARK-BAND SECTIONS (Shared structure)
   ================================================================ */

/* Dark band eyebrow override (gilt on navy) */
.on-dark .ey,
.on-dark .eyebrow,
.pol-band .ey,
.policy-band .ey,
.policy .ey,
.proprietary .ey,
.serve .ey,
.events .ey,
.csr-partner .ey,
.schedule .eyebrow,
.audit-text .ey {
  color: var(--gilt);
}
.on-dark .ey::before,
.on-dark .eyebrow::before,
.pol-band .ey::before,
.policy-band .ey::before,
.policy .ey::before,
.proprietary .ey::before,
.serve .ey::before,
.events .ey::before,
.csr-partner .ey::before,
.schedule .eyebrow::before { background: var(--gilt); }

/* Dark band h2 overrides */
.on-dark h2.st,
.on-dark h2.stitle,
.pol-band h2.st,
.policy-band h2.st,
.serve h2.st,
.events h2.st,
.proprietary h2.st,
.csr-partner h2.st,
.schedule h2.stitle { color: #fff; }

.on-dark h2.st em,
.on-dark h2.stitle em,
.pol-band h2.st em,
.policy-band h2.st em,
.serve h2.st em,
.events h2.st em,
.proprietary h2.st em,
.csr-partner h2.st em,
.schedule h2.stitle em { color: var(--gilt); }

/* Dark band .sl override */
.on-dark .sl,
.on-dark .slead,
.pol-band .sl,
.policy-band .sl,
.serve .sl,
.events .sl,
.proprietary .sl,
.csr-partner .sl { color: rgba(255,255,255,0.62); }


/* ================================================================
   11. CALLOUT BOXES
   ================================================================ */

/* Light callout — gold left border */
.callout,
.about-callout,
.why-callout,
.ab-callout-light {
  background: var(--mist);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin-top: 14px;
}
.callout p,
.about-callout p,
.why-callout p { font-size: 14px; line-height: 1.7; color: #444; }
.callout strong,
.about-callout strong,
.why-callout strong { color: var(--navy); }


/* ================================================================
   12. DARK PANEL / VISUAL BOX (inside sections)
   ================================================================ */
.dark-visual,
.about-visual,
.why-visual,
.overview-visual {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  border-radius: var(--r-lg);
  padding: 40px;
  overflow: hidden;
  position: relative;
}
.dark-visual::after,
.about-visual::after,
.why-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(200,151,58,0.1);
}

/* Items inside dark panels */
.av-item,
.wv-item,
.ov-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.av-icon,
.wv-icon,
.ov-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(200,151,58,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.av-title,
.wv-title { color: var(--gilt); font-weight: 700; font-size: 13.5px; margin-bottom: 3px; }
.av-desc,
.wv-desc { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.62; }


/* ================================================================
   13. STEP / PROCESS FLOWS
   ================================================================ */
.steps-row,
.method-steps,
.method-flow,
.proc-steps,
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 52px;
  position: relative;
}

/* Connecting line */
.steps-row::before,
.method-steps::before,
.method-flow::before,
.proc-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--mid), rgba(37,99,176,0.15));
}

.step,
.mstep,
.mf-step,
.pstep {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

/* Step circle */
.step-circle,
.mstep-circle,
.mf-circle,
.pstep-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--mid);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 22px;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(37,99,176,0.1);
  transition: transform 0.25s;
}
.step:hover .step-circle,
.mf-step:hover .mf-circle { transform: scale(1.1); }

.step-title,
.mstep-title,
.mf-title,
.pstep-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-body,
.mstep-body,
.mf-body,
.pstep-body { font-size: 13px; color: var(--slate); line-height: 1.65; }


/* ================================================================
   14. CTA BAND
   ================================================================ */
.cta-band {
  padding: 80px 52px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px,4vw,48px);
  font-weight: 900;
  color: #fff;
 /* max-width: 680px;*/
  margin: 0 auto 16px;
  line-height: 1.1;
}
.cta-band h2 em { color: var(--gilt); font-style: normal; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.65); margin: 0 auto 36px; }
.cta-row,
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Inline CTA form (email + submit) */
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 7px;
  padding: 7px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.cta-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  background: transparent;
  color: var(--ink);
}
.cta-form input::placeholder { color: #aaa; }
.cta-note { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 14px; }


/* ================================================================
   15. FORMS (Shared)
   ================================================================ */
.form-field { margin-bottom: 13px; }

label,
.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Dark-bg form inputs (most pages) */
input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #fff;
  outline: none;
  background: rgba(255,255,255,0.07);
  transition: border-color 0.2s, background 0.2s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.3); }
select { cursor: pointer; }
select option { background: #0e2848; color: #fff; }
textarea { resize: vertical; min-height: 88px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 13px;
}


/* ================================================================
   16. FAQ ACCORDION
   ================================================================ */
.faq-list { max-width: 860px; margin: 52px auto 0; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(13,115,119,0.3); box-shadow: 0 8px 28px rgba(13,115,119,0.1); }

.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px; text-align: left;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.faq-trigger:hover { background: rgba(13,115,119,0.03); }
.faq-item.open .faq-trigger { background: rgba(13,115,119,0.04); }

.faq-trigger-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.faq-q-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(13,115,119,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  transition: background 0.25s, color 0.25s;
}
.faq-item.open .faq-q-num { background: var(--teal); color: #fff; }
.faq-q-text {
  font-family: var(--font-serif); font-size: 17px; font-weight: 700;
  color: var(--navy); line-height: 1.35;
}
.faq-item.open .faq-q-text { color: var(--teal); }

.faq-toggle {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--mist); border: 1.5px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.faq-toggle-icon { font-size: 20px; color: var(--slate); line-height: 1; transition: transform 0.35s, color 0.25s; display: block; margin-top: -1px; }
.faq-item.open .faq-toggle { background: var(--teal); border-color: var(--teal); }
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); color: #fff; }

.faq-answer { display: none; padding: 0 28px 24px 74px; }
.faq-item.open .faq-answer { display: block; animation: fadeDown 0.3s ease; }
.faq-answer-inner { font-size: 14.5px; color: #555; line-height: 1.82; border-top: 1px solid var(--mist); padding-top: 18px; }
.faq-answer-inner strong { color: var(--navy); }
.faq-answer-inner a { color: var(--mid); font-weight: 600; text-decoration: none; }
.faq-answer-inner a:hover { color: var(--teal); }


/* ================================================================
   17. TICKER STRIP
   ================================================================ */
.trust-ticker,
.policy-ticker {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 13px 52px;
}
.ticker-pill,
.ticker-label {
  background: var(--navy);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track,
.ticker-text {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 0 28px;
}
.ticker-track span::before { content: '◆'; margin-right: 12px; font-size: 7px; vertical-align: middle; }


/* ================================================================
   18. SCHEDULE TABLE
   ================================================================ */
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table thead tr { background: var(--navy); }
.schedule-table thead th { color: #fff; padding: 10px 14px; text-align: left; font-size: 13px; font-weight: 600; }
.schedule-table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--mist); font-size: 13.5px; color: #444; }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover td { background: #f8f9fa; }


/* ================================================================
   19. FOOTER
   ================================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 40px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ft-brand,
.footer-brand,
.footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}
.ft-brand em,
.footer-brand em,
.footer-logo em { color: var(--gilt); font-style: normal; }

.ft-links,
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.ft-links a,
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s;
}
.ft-links a:hover,
.footer-links a:hover { color: var(--gilt); }


/* ================================================================
   20. UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-gilt   { color: var(--gilt); }
.text-gold   { color: var(--gold); }
.text-mid    { color: var(--mid); }
.text-navy   { color: var(--navy); }
.text-muted  { color: rgba(255,255,255,0.62); }
.mt-0  { margin-top: 0; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 52px; }
.w-full { width: 100%; }
.max-w-full { max-width: 100%; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.z-1 { position: relative; z-index: 1; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 48px; }


/* ================================================================
   21. ANIMATIONS
   ================================================================ */
@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ================================================================
   22. RESPONSIVE — TABLET & MOBILE
   ================================================================ */
@media (max-width: 960px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  /* Sections */
  section,
  .pol-band, .policy-band, .policy, .proprietary,
  .serve, .events, .csr-partner,
  .cta-band, .trust-ticker, .policy-ticker,
  .mandate-band, .sdg-banner, .value-strip,
  .audit, .enroll { padding: 60px 20px; }

  /* Hero */
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(34px, 8vw, 54px); }
  .hero-inner,
  .hero-grid-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Buttons */
  .hero-btns,
  .hero-cta-group,
  .hero-cta-row,
  .cta-row,
  .cta-btns,
  .plat-ctas,
  .hero-btns-col { flex-direction: column; align-items: flex-start; }
  .cta-row { align-items: center; }

  /* Grids */
  .grid-2,
  .grid-2-lg,
  .about-grid,
  .why-grid,
  .ab-grid,
  .ov-grid,
  .tf-grid,
  .str-grid,
  .sports-grid,
  .enroll-inner,
  .cta-inner,
  .report-grid,
  .plat-grid,
  .brsr-cards,
  .eoi-inner,
  .prop-grid,
  .cp-grid,
  .audit-grid { grid-template-columns: 1fr; gap: 32px; }

  .grid-3,
  .prog-grid,
  .pil-grid,
  .pol-grid,
  .svc-grid,
  .pol-insights,
  .cert-grid,
  .why-grid,
  .adv-grid,
  .aip-grid,
  .wn-grid,
  .pub-grid,
  .evt-grid,
  .faq-grid { grid-template-columns: 1fr; }

  .grid-4,
  .serve-grid,
  .who-grid,
  .collab-cards,
  .sectors-grid { grid-template-columns: 1fr 1fr; }

  /* Step flows */
  .steps-row,
  .method-steps,
  .method-flow,
  .proc-steps { flex-direction: column; gap: 28px; }
  .steps-row::before,
  .method-steps::before,
  .method-flow::before,
  .proc-steps::before { display: none; }

  /* Hero stats */
  .hero-stats,
  .hero-meta { flex-wrap: wrap; gap: 20px; }

  /* Misc */
  .value-strip,
  .sdg-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .comp-list { columns: 1; }
  .faq-answer { padding-left: 28px; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
  .ft-links,
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .grid-4,
  .serve-grid,
  .who-grid,
  .collab-cards,
  .sectors-grid { grid-template-columns: 1fr; }

  .hero-pill,
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; }

  nav { height: 58px; }
  .hero { padding: 90px 16px 52px; }
  section { padding: 48px 16px; }
}
