/* gcc-styles.css
   Shared stylesheet for all GCC pillar pages.
   Loaded via <link rel="stylesheet" href="/gcc-styles.css"> on every gcc-*.html pillar page.
   Page-specific overrides (sector number colour accents etc.) go inline on the page if needed.
   Do not add footer styles here: footer is managed by gcc-footer.js.
*/
:root {
  --ink:    #0C0C0B;
  --white:  #FAFAF8;
  --accent: #FF2400;
  --stone:  #8C8C84;
  --bg:     #F2F1EE;
  --mid:    #E0DED9;
  --pad:    80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.72; }

.label { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--pad); }
.section-divider { border: none; border-top: 1px solid var(--mid); margin: 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; height: 64px; background: transparent; z-index: 100; transition: background .3s, border-bottom .3s; }
nav.scrolled { background: var(--white); border-bottom: 1px solid var(--mid); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 var(--pad); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: rgba(250,250,248,.8); transition: color .2s; }
nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent); }
.wordmark { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: .04em; color: var(--white); transition: color .3s; }
nav.scrolled .wordmark { color: var(--ink); }
.wordmark .consulting { color: var(--accent); }
.btn-accent { display: inline-block; background: var(--accent); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 10px 22px; transition: opacity .2s; }
.btn-accent:hover { opacity: .88; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s, background .2s; }
nav.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: var(--ink); z-index: 99; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px var(--pad) 48px; gap: 24px; }
.nav-overlay.open { display: flex; }
.nav-overlay-header { position: absolute; top: 0; left: 0; right: 0; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-overlay-wordmark { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: .04em; color: var(--white); }
.nav-overlay-wordmark span { color: var(--accent); }
.nav-overlay-close { background: none; border: none; color: rgba(255,255,255,.5); font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 4px 8px; transition: color .2s; }
.nav-overlay-close:hover { color: var(--white); }
.nav-overlay a { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 700; color: var(--white); transition: color .2s; line-height: 1.1; }
.nav-overlay a:hover { color: var(--accent); }

/* BREADCRUMB */
.breadcrumb-bar { position: absolute; top: 80px; left: 0; right: 0; padding: 0 var(--pad); z-index: 3; display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 500; color: rgba(250,250,248,.45); }
.breadcrumb-bar a { color: rgba(250,250,248,.45); transition: color .2s; }
.breadcrumb-bar a:hover { color: rgba(250,250,248,.8); }
.bc-sep { color: rgba(250,250,248,.2); }

/* HERO */
.pillar-hero { background: var(--ink); position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.pillar-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0C0C0B 0%, #0f0e0c 60%, #0C0C0B 100%); }
.pillar-hero-accent { position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--accent); }
.pillar-hero-num { position: absolute; right: -0.04em; bottom: -0.12em; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(16rem, 30vw, 30rem); line-height: 1; color: rgba(255,255,255,.025); pointer-events: none; user-select: none; letter-spacing: -.04em; }
.entity-badge { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.15); padding: 12px 20px; }
.badge-dot { width: 8px; height: 8px; background: var(--accent); flex-shrink: 0; }
.entity-badge span { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(250,250,248,.7); }
.pillar-hero-inner { max-width: 800px; padding: 160px 0 80px; position: relative; z-index: 2; }
.pillar-hero .label { display: block; margin-bottom: 32px; color: rgba(250,250,248,.35); }
.pillar-hero h1 { font-size: clamp(2.2rem, 4.5vw, 4.2rem); font-weight: 800; line-height: 1.06; letter-spacing: -.01em; color: var(--white); margin-bottom: 28px; }
.pillar-hero h1 em { font-style: normal; color: var(--accent); }
.pillar-hero-sub { font-size: 1.05rem; color: rgba(250,250,248,.55); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }

/* DEFINITION */
.pillar-definition { padding: 64px 0; background: var(--white); }
.pillar-definition-inner { max-width: 780px; }
.def-serif { font-family: 'DM Serif Display', serif; font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.55; color: var(--ink); margin-bottom: 28px; font-style: italic; }
.def-body { font-size: .975rem; color: var(--stone); margin-bottom: 20px; line-height: 1.75; }
.def-body:last-child { margin-bottom: 0; }

/* 7R FRAMING */
.pillar-7r { padding: 64px 0; background: var(--bg); }
.pillar-7r-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pillar-7r h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 20px; }
.pillar-7r p { color: var(--stone); margin-bottom: 16px; font-size: .975rem; }
.pillar-7r p:last-child { margin-bottom: 0; }
.pillar-7r-link { display: inline-block; margin-top: 24px; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color .2s; }
.pillar-7r-link:hover { border-color: var(--accent); }
.discipline-list { display: flex; flex-direction: column; }
.discipline-item { padding: 22px 0; border-bottom: 1px solid var(--mid); }
.discipline-item:first-child { border-top: 1px solid var(--mid); }
.discipline-item .di-tag { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.discipline-item h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.discipline-item p { font-size: .85rem; color: var(--stone); margin-bottom: 0; line-height: 1.6; }

/* PROCESS */
.pillar-process { padding: 64px 0; background: var(--white); }
.pillar-process h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 48px; }
.process-list { display: flex; flex-direction: column; max-width: 960px; border-top: 1px solid var(--mid); }
.process-stage { display: grid; grid-template-columns: 72px 220px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--mid); align-items: start; }
.stage-num { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); padding-top: 2px; }
.stage-title { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: var(--ink); padding-top: 2px; }
.stage-desc { font-size: .9rem; color: var(--stone); line-height: 1.65; }

/* EVALUATION */
.pillar-eval { padding: 64px 0; background: var(--bg); }
.pillar-eval h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 12px; }
.section-intro { color: var(--stone); font-size: .975rem; margin-bottom: 48px; max-width: 580px; line-height: 1.65; }
.eval-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--mid); border-left: 1px solid var(--mid); }
.eval-card { border-right: 1px solid var(--mid); border-bottom: 1px solid var(--mid); padding: 32px 28px; }
.eval-card .ec-num { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 14px; }
.eval-card h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; margin-bottom: 10px; }
.eval-card p { font-size: .85rem; color: var(--stone); line-height: 1.65; margin: 0; }

/* REGIONAL */
.pillar-regional { padding: 64px 0; background: var(--bg); }
.pillar-regional-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pillar-regional h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 20px; }
.pillar-regional p { color: var(--stone); font-size: .975rem; margin-bottom: 16px; }
.pillar-regional p:last-child { margin-bottom: 0; }
.reg-list { display: flex; flex-direction: column; }
.reg-item { padding: 24px 0; border-bottom: 1px solid var(--mid); }
.reg-item:first-child { border-top: 1px solid var(--mid); }
.ri-tag { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.reg-item h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.reg-item p { font-size: .85rem; color: var(--stone); margin-bottom: 0; line-height: 1.6; }

/* NRI CONTEXT */
.pillar-nri { padding: 64px 0; background: var(--white); }
.pillar-nri-inner { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: center; }
.nri-stat .big { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(3.5rem, 6vw, 6rem); color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.nri-stat .big span { color: var(--accent); }
.nri-stat p { font-size: .9rem; color: var(--stone); margin-top: 12px; max-width: 240px; line-height: 1.55; }
.pillar-nri h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 20px; }
.pillar-nri p { color: var(--stone); font-size: .975rem; margin-bottom: 16px; line-height: 1.7; }
.pillar-nri p:last-child { margin-bottom: 0; }



/* COMPARISON TABLE */
.pillar-compare { padding: 64px 0; background: var(--bg); }
.pillar-compare h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 12px; }
.section-intro { color: var(--stone); font-size: .975rem; margin-bottom: 40px; max-width: 600px; line-height: 1.65; }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); text-align: left; padding: 14px 20px 14px 0; border-bottom: 2px solid var(--mid); }
.compare-table th:last-child { color: var(--ink); }
.compare-table td { padding: 20px 20px 20px 0; border-bottom: 1px solid var(--mid); font-size: .875rem; line-height: 1.65; vertical-align: top; }
.compare-table td:first-child { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .85rem; width: 18%; color: var(--ink); }
.compare-table td:nth-child(2) { color: var(--stone); width: 40%; }
.compare-table td:last-child { color: var(--ink); width: 42%; }
.compare-pill { display: inline-block; background: var(--accent); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }

/* EVIDENCE */
/* EVIDENCE */
.pillar-evidence { padding: 64px 0; background: var(--white); }
.pillar-evidence-inner { max-width: 780px; }
.pillar-evidence h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 20px; }
.pillar-evidence p { color: var(--stone); font-size: .975rem; margin-bottom: 24px; }
.btn-outline { display: inline-block; border: 1.5px solid var(--ink); color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 13px 28px; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* FAQ */
.pillar-faq { padding: 64px 0; background: var(--white); }
.pillar-faq h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 48px; }
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--mid); }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--mid); }
.faq-item h3 { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: 10px; }
.faq-item p { font-size: .9rem; color: var(--stone); line-height: 1.7; margin: 0; }

/* CROSS-LINKS */
.pillar-links { padding: 64px 0; background: var(--white); }
.pillar-links h2 { font-size: clamp(1.4rem, 2vw, 1.75rem); margin-bottom: 40px; }
.pillar-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--mid); }
.plink { padding: 32px 32px 32px 0; border-right: 1px solid var(--mid); }
.plink:last-child { border-right: none; padding-right: 0; }
.plink-tag { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }
.plink h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
.plink p { font-size: .82rem; color: var(--stone); line-height: 1.6; margin-bottom: 16px; }
.plink-cta { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color .2s; }
.plink-cta:hover { border-color: var(--accent); }

/* ENQUIRY */
.pillar-enquiry { padding: 64px 0; background: var(--bg); border-top: 1px solid var(--mid); }
.pillar-enquiry-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pillar-enquiry h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.pillar-enquiry-info p { color: var(--stone); font-size: .975rem; margin-bottom: 32px; }
.gcc-contact-details { display: flex; flex-direction: column; gap: 0; }
.gcc-contact-item { padding: 18px 0; border-bottom: 1px solid var(--mid); }
.gcc-contact-item:first-child { border-top: 1px solid var(--mid); }
.ci-label { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 5px; }
.gcc-contact-item p, .gcc-contact-item a { font-size: .9rem; color: var(--ink); }
.gcc-contact-item a { border-bottom: 1px solid transparent; padding-bottom: 1px; transition: color .2s, border-color .2s; }
.gcc-contact-item a:hover { color: var(--accent); border-color: var(--accent); }
.gcc-form { display: flex; flex-direction: column; gap: 16px; }
.gcc-field { display: flex; flex-direction: column; gap: 6px; }
.gcc-field label { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }
.gcc-field input, .gcc-field textarea { background: var(--white); border: 1px solid var(--mid); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 12px 16px; outline: none; transition: border-color .2s; width: 100%; }
.gcc-field input:focus, .gcc-field textarea:focus { border-color: var(--ink); }
.gcc-field textarea { height: 120px; resize: vertical; }
.gcc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gcc-form-success { padding: 40px; background: var(--white); border-top: 3px solid var(--ink); }
.gcc-form-success p { font-size: 1rem; color: var(--stone); line-height: 1.7; }
.btn-submit { background: var(--ink); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 14px 28px; border: none; cursor: pointer; transition: background .2s; align-self: flex-start; }
.btn-submit:hover { background: var(--accent); }

/* CTA */
.cta-section { background: var(--accent); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-headline { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); max-width: 560px; line-height: 1.15; }
.btn-white { display: inline-block; background: var(--white); color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 14px 30px; transition: opacity .2s; white-space: nowrap; }
.btn-white:hover { opacity: .88; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.pillar-hero .label  { animation: fadeUp .5s ease both .1s; }
.pillar-hero h1      { animation: fadeUp .6s ease both .25s; }
.pillar-hero-sub     { animation: fadeUp .6s ease both .4s; }
.entity-badge        { animation: fadeUp .6s ease both .55s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  :root { --pad: 48px; }
  .pillar-7r-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillar-regional-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillar-nri-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .pillar-links-grid { grid-template-columns: 1fr 1fr; }
  .pillar-enquiry-inner { grid-template-columns: 1fr; gap: 48px; }
  .eval-grid { grid-template-columns: 1fr 1fr; }
  .process-stage { grid-template-columns: 40px 1fr; gap: 16px; }
  .stage-title { display: none; }
  .gcc-form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .pillar-links-grid { grid-template-columns: 1fr; }
  .eval-grid { grid-template-columns: 1fr; }
}
  