*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F5F2EC;
  --cream2:   #EDE9E0;
  --cream3:   #E4DFD4;
  --gold:     #B8952A;
  --gold-d:   #9A7B20;
  --gold-l:   #D4AE50;
  --gold-pale:#F0E8CC;
  --charcoal: #2C2C2C;
  --dark:     #1A1A1A;
  --gray:     #6B6573;
  --gray-l:   #9B96A3;
  --white:    #FFFFFF;
  --shadow:   0 2px 24px rgba(44,44,44,0.08);
  --shadow-lg:0 8px 48px rgba(44,44,44,0.12);
  --radius:   6px;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--charcoal); background: var(--cream); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── PAGES ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,242,236,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream3);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 5%;
  box-shadow: 0 1px 16px rgba(44,44,44,0.06);
  transition: box-shadow 0.3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.logo-mark {
  width: 48px; height: 48px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 32px; height: 32px; }
.logo-text { line-height: 1.25; }
.logo-text strong { display: block; font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.3px; }
.logo-text span { font-size: 10px; font-weight: 500; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-size: 13px; font-weight: 500; color: var(--gray);
  text-decoration: none; letter-spacing: 0.3px;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
  cursor: pointer;
}
nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }
nav a:hover, nav a.active { color: var(--charcoal); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: 9px 22px; border-radius: 3px;
  font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-d) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }

.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 199;
  background: var(--cream);
  border-bottom: 1px solid var(--cream3);
  padding: 20px 5% 28px;
  flex-direction: column; gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--charcoal); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--cream3); cursor: pointer; }
.mobile-nav a:last-child { border-bottom: none; background: var(--gold); color: var(--white); padding: 12px 20px; border-radius: 3px; text-align: center; margin-top: 8px; }

/* ── COMMON ── */
.pt { padding-top: 72px; }
.section { padding: 88px 5%; }
.section-alt { background: var(--cream2); }
.section-dark { background: var(--charcoal); }
.section-white { background: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

h2.sec-title {
  font-family: var(--fd);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 18px;
}
h2.sec-title.light { color: var(--white); }
h2.sec-title em { color: var(--gold); font-style: normal; }

.sec-lead { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 560px; margin-bottom: 56px; }
.sec-lead.light { color: rgba(255,255,255,0.6); }
.sec-lead.wide { max-width: 760px; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; border-radius: 3px; padding: 13px 28px; cursor: pointer; text-decoration: none; border: none; transition: all 0.2s; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,149,42,0.3); }
.btn-outline-dark { border: 1.5px solid var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold-l); color: var(--gold-l); }

.gold-line { width: 48px; height: 2px; background: var(--gold); margin: 0 0 28px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 56px 5% 28px;
  border-top: 2px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand {}
.footer-logo-text { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-logo-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; }
.footer-iso { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; border: 1px solid rgba(184,149,42,0.3); padding: 5px 12px; border-radius: 2px; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 1px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact p span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-tagline { font-family: var(--fd); font-size: 14px; font-style: italic; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%;
  background: linear-gradient(135deg, var(--cream2) 0%, var(--cream3) 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(184,149,42,0.3);
  border-radius: 2px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 600; line-height: 1.05;
  color: var(--charcoal); margin-bottom: 8px;
}
.hero h1 em { color: var(--gold); font-style: normal; display: block; }

.hero-tagline {
  font-family: var(--fd);
  font-size: 20px; font-weight: 400; font-style: italic;
  color: var(--gold); margin-bottom: 24px;
}

.hero-desc { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 40px; max-width: 480px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-size: 11px; font-weight: 500; color: var(--gray); background: var(--white); border: 1px solid var(--cream3); padding: 5px 14px; border-radius: 20px; }

/* Hero right card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}
.hero-card-title { font-family: var(--fd); font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 24px; }
.hc-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--cream3); }
.hc-row:last-child { border-bottom: none; }
.hc-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hc-text h4 { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.hc-text p { font-size: 12px; color: var(--gray-l); }

/* Clients / stats strip */
.stats-strip {
  background: var(--charcoal);
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-box {
  text-align: center; padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-box:last-child { border-right: none; }
.stat-num { font-family: var(--fd); font-size: 44px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Services teaser */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--cream3);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,149,42,0.1); transform: translateY(-3px); }
.svc-ico { font-size: 28px; margin-bottom: 16px; display: block; }
.svc-card h3 { font-family: var(--fd); font-size: 19px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.svc-card p { font-size: 13px; color: var(--gray); line-height: 1.75; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; text-decoration: none; cursor: pointer; }
.svc-link:hover { color: var(--gold-d); }

/* Why us strip */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 28px 24px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.why-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.why-card h3 { font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* CTA strip */
.cta-strip {
  background: var(--gold);
  padding: 64px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-family: var(--fd); font-size: clamp(28px,4vw,44px); font-weight: 600; color: var(--white); max-width: 580px; }
.cta-strip h2 span { color: var(--charcoal); }
.btn-white { background: var(--white); color: var(--gold); }
.btn-white:hover { background: var(--cream2); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero {
  padding: 120px 5% 80px;
  background: var(--cream2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-quote {
  font-family: var(--fd);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500; font-style: italic;
  color: var(--charcoal); line-height: 1.45;
  border-left: 3px solid var(--gold);
  padding-left: 24px; margin: 28px 0;
}
.about-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.accard-head { font-family: var(--fd); font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.accard-sub { font-size: 12px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.accard-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.accard-icon { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.accard-row p { font-size: 14px; color: var(--gray); }
.accard-row a { color: var(--charcoal); text-decoration: none; font-weight: 500; }
.accard-row a:hover { color: var(--gold); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.val-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.val-icon { font-size: 28px; margin-bottom: 14px; }
.val-card h3 { font-family: var(--fd); font-size: 19px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.val-card p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* Mission/Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { padding: 36px; border-radius: var(--radius); }
.mv-card.mission { background: var(--charcoal); }
.mv-card.vision { background: var(--gold); }
.mv-card h3 { font-family: var(--fd); font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.mv-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.mv-list { list-style: none; }
.mv-list li { font-size: 14px; color: rgba(255,255,255,0.75); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; }
.mv-list li::before { content: '→'; color: var(--gold-l); flex-shrink: 0; }
.mv-card.vision .mv-list li::before { color: var(--charcoal); }
.mv-card.vision .mv-list li { border-color: rgba(0,0,0,0.1); }
.mv-card.vision p, .mv-card.vision .mv-list li { color: rgba(26,26,26,0.85); }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.services-hero { padding: 120px 5% 72px; background: var(--cream2); }
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-full-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream3);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.sfc-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--cream3);
  display: flex; gap: 16px; align-items: flex-start;
}
.sfc-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.sfc-head-text h3 { font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.sfc-head-text p { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; }
.sfc-body { padding: 24px 28px; }
.sfc-body p { font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.sfc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sfc-tag { font-size: 11px; font-weight: 500; color: var(--charcoal); background: var(--cream2); padding: 4px 10px; border-radius: 2px; border: 1px solid var(--cream3); }

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: var(--gold); opacity: 0.3; z-index: 0; }
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.ps-num { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--fd); font-size: 26px; font-weight: 700; color: var(--gold); box-shadow: var(--shadow); }
.process-step h4 { font-family: var(--fd); font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════
   SOLUTIONS PAGE
═══════════════════════════════════════ */
.solutions-hero { padding: 120px 5% 72px; background: var(--cream2); }
.sol-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
  border: 1px solid var(--cream3);
}
.sol-card:last-child { margin-bottom: 0; }
.sol-card.reverse { direction: rtl; }
.sol-card.reverse > * { direction: ltr; }
.sol-content { padding: 48px 44px; }
.sol-num { font-family: var(--fd); font-size: 72px; font-weight: 700; color: var(--gold-pale); line-height: 1; margin-bottom: -8px; }
.sol-content h3 { font-family: var(--fd); font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.sol-content .sol-cat { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.sol-content p { font-size: 14px; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }
.sol-features { list-style: none; margin-bottom: 28px; }
.sol-features li { font-size: 13px; color: var(--charcoal); padding: 7px 0; border-bottom: 1px solid var(--cream3); display: flex; gap: 10px; align-items: flex-start; }
.sol-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.sol-visual {
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  min-height: 320px;
}
.sol-icon-large { font-size: 100px; opacity: 0.15; }
.sol-badge {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(184,149,42,0.3);
  color: var(--gold-d);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px; margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-hero { padding: 120px 5% 72px; background: var(--cream2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info h3 { font-family: var(--fd); font-size: 24px; font-weight: 600; color: var(--charcoal); margin-bottom: 24px; }
.ci-item { display: flex; gap: 16px; margin-bottom: 24px; }
.ci-icon { width: 44px; height: 44px; background: var(--gold-pale); border: 1px solid rgba(184,149,42,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-text h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 14px; color: var(--charcoal); text-decoration: none; line-height: 1.6; }
.ci-text a:hover { color: var(--gold); }

.contact-form-box { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.form-title { font-family: var(--fd); font-size: 24px; font-weight: 600; color: var(--charcoal); margin-bottom: 28px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--cream3);
  color: var(--charcoal);
  padding: 11px 15px;
  font-size: 14px; font-family: var(--fb);
  border-radius: 3px; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); background: var(--white); }
.fg textarea { min-height: 110px; resize: vertical; }
.fg select option { background: var(--white); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Map placeholder */
.map-placeholder {
  background: var(--cream3);
  border-radius: var(--radius);
  height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-top: 32px;
  border: 1px solid var(--cream3);
}
.map-placeholder p { font-size: 13px; color: var(--gray); margin-top: 8px; }

/* ═════════════════
   RESPONSIVE
═════════════════ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 5% 60px; }
  .hero::before { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .sol-card { grid-template-columns: 1fr; }
  .sol-card.reverse { direction: ltr; }
  .sol-visual { min-height: 180px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}

/* Smooth page transitions */
.page { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════
   HERO SLIDER — desktop only
═══════════════════════════════ */
.slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}
/* Full screen on home */
.slider-wrap.slider-full {
  height: 100vh;
  min-height: 560px;
}
/* Banner height on inner pages */
.slider-wrap.slider-banner {
  height: 30vh;
  min-height: 220px;
  max-height: 340px;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

/* Dark overlay on every slide */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.72) 0%, rgba(28,28,28,0.35) 100%);
}

/* Slide content — only shown on full hero */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 5%;
  padding-top: 72px;
}
.slide-text { max-width: 640px; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,149,42,0.18);
  border: 1px solid rgba(184,149,42,0.45);
  color: var(--gold-l);
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 24px;
}
.slide-h1 {
  font-family: var(--fd);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 600; line-height: 1.06;
  color: var(--white);
  margin-bottom: 18px;
}
.slide-h1 em { color: var(--gold-l); font-style: normal; }
.slide-p {
  font-size: 16px; color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 520px;
  margin-bottom: 36px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Banner caption — shown on inner page banners */
.banner-caption {
  position: absolute;
  inset: 0; z-index: 2;
  display: flex; align-items: flex-end;
  padding: 0 5% 28px;
  padding-top: 72px;
}
.banner-caption h2 {
  font-family: var(--fd);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600; color: var(--white);
  margin: 0 0 4px;
}
.banner-caption p {
  font-size: 13px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px; margin: 0;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Prev / Next arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: white; font-size: 18px;
}
.slider-arrow:hover { background: rgba(184,149,42,0.5); border-color: var(--gold); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Scroll hint on full hero */
.scroll-hint {
  position: absolute;
  bottom: 24px; right: 5%;
  z-index: 10;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.3);
}

/* Hide sliders on mobile — show static cream bg instead */
@media (max-width: 900px) {
  .slider-wrap { display: none !important; }
  .mobile-page-header {
    display: block !important;
    padding: 100px 5% 48px;
    background: var(--cream2);
  }
}
@media (min-width: 901px) {
  .mobile-page-header { display: none; }
}

/* reCAPTCHA badge styling */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-note {
  font-size: 11px; color: var(--gray-l);
  text-align: center; margin-top: 10px; line-height: 1.6;
}
.recaptcha-note a { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════
   LEGAL PAGES (Privacy, Disclaimer, Terms)
═══════════════════════════════ */
.legal-h2 { font-family:var(--fd); font-size:22px; font-weight:600; color:var(--charcoal); margin:36px 0 12px; padding-bottom:8px; border-bottom:1px solid var(--cream3); }
.legal-h3 { font-size:15px; font-weight:600; color:var(--charcoal); margin:20px 0 8px; }
.legal-p  { font-size:14px; color:var(--gray); line-height:1.85; margin-bottom:14px; }
.legal-ul { list-style:none; padding:0; margin:0 0 14px; }
.legal-ul li { font-size:14px; color:var(--gray); line-height:1.8; padding:5px 0 5px 22px; position:relative; }
.legal-ul li::before { content:'→'; position:absolute; left:0; color:var(--gold); font-weight:600; }
.legal-table { width:100%; border-collapse:collapse; margin-bottom:20px; font-size:13px; }
.legal-table th { background:var(--charcoal); color:var(--white); padding:10px 14px; text-align:left; font-weight:600; }
.legal-table td { padding:10px 14px; border-bottom:1px solid var(--cream3); color:var(--gray); vertical-align:top; }
.legal-table tr:nth-child(even) td { background:var(--cream2); }

/* ═══════════════════════════════
   INDUSTRIES — clickable cards + detail panel
═══════════════════════════════ */
.industry-card-click {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.industry-card-click:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.industry-card-click.active {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184,149,42,0.18);
}
.industry-card-click .ind-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.industry-card-click p { font-size: 14px; font-weight: 600; color: var(--charcoal); margin: 0; }
.industry-card-click .ind-hint {
  font-size: 11px; color: var(--gray-l); margin-top: 6px;
  opacity: 0; transition: opacity 0.2s;
}
.industry-card-click:hover .ind-hint,
.industry-card-click.active .ind-hint { opacity: 1; }

/* Detail panel — full width, expands below the grid */
.industry-detail-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  margin-top: 0;
}
.industry-detail-wrap.open {
  max-height: 900px; /* large enough for content; actual height auto via content */
  margin-top: 28px;
}
.industry-detail {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.industry-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.industry-detail-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.industry-detail-head h3 {
  font-family: var(--fd); font-size: 26px; font-weight: 600;
  color: var(--white); margin: 0;
}
.industry-detail-head p {
  font-size: 12px; color: var(--gold-l); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600; margin: 4px 0 0;
}
.industry-detail-close {
  margin-left: auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 16px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.industry-detail-close:hover { background: var(--gold); color: var(--dark); }

.industry-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.industry-detail-col {
  padding: 32px 36px;
}
.industry-detail-col.challenge { border-right: 1px solid rgba(255,255,255,0.08); }
.industry-detail-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.industry-detail-label.challenge-label { color: #E08585; }
.industry-detail-label.offering-label { color: var(--gold-l); }
.industry-detail-list { list-style: none; padding: 0; margin: 0; }
.industry-detail-list li {
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 10px; align-items: flex-start;
}
.industry-detail-list li:last-child { border-bottom: none; }
.industry-detail-list.challenge-list li::before { content: '!'; color: #E08585; font-weight: 700; flex-shrink: 0; width: 16px; }
.industry-detail-list.offering-list li::before { content: '✓'; color: var(--gold-l); font-weight: 700; flex-shrink: 0; width: 16px; }

@media (max-width: 768px) {
  .industry-detail-body { grid-template-columns: 1fr; }
  .industry-detail-col.challenge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .industry-detail-head { padding: 22px 24px; flex-wrap: wrap; }
  .industry-detail-col { padding: 26px 24px; }
}

/* ═══════════════════════════════
   NAV DROPDOWN (Services submenu)
═══════════════════════════════ */
.service-full-card { scroll-margin-top: 90px; }

.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 1px;
  transition: transform 0.2s;
}
.nav-item-dropdown:hover > a::after { transform: rotate(225deg); margin-bottom: -2px; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 150;
}
.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--charcoal) !important;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--cream2); color: var(--gold) !important; }
.nav-dropdown-icon {
  width: 28px; height: 28px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-dropdown-menu { display: none !important; }
}

/* ═══════════════════════════════
   FOUR PILLAR ARCHITECTURE — services-intro
═══════════════════════════════ */
.four-pillar-wrap {
  background: var(--cream2);
  padding: 80px 5% 72px;
}
.four-pillar-intro {
  max-width: 820px;
  margin: 0 0 56px;
}
.four-pillar-intro p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  margin-top: 16px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--cream3);
  border-top: 3px solid transparent;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184,149,42,0.12);
  transform: translateY(-4px);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-number {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.pillar-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-d);
  transition: background 0.2s;
}
.pillar-card:hover .pillar-icon-wrap {
  background: var(--gold);
  color: var(--white);
}
.pillar-icon-wrap svg {
  width: 26px; height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-name {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}
.pillar-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-l);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* Divider between intro and pillar grid */
.pillar-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.pillar-divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream3);
}
.pillar-divider-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   RESILIENT ENTERPRISE LOOP — services-intro.php
   (narrative sidebox + connected pillar loop, two-column split)
═══════════════════════════════ */
.lifecycle-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.narrative-aside { width: 100%; }
.pillar-loop { width: 100%; }
@media (min-width: 860px) {
  .lifecycle-section {
    flex-direction: row;
  }
  .narrative-aside {
    width: 42%;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
  }
  .pillar-loop {
    width: 58%;
  }
}

.narrative-aside {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.narrative-title {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.25;
}
.narrative-lead {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 15px;
  margin-bottom: 16px;
}
.narrative-aside p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.narrative-aside p strong {
  color: var(--gold-d);
  font-weight: 600;
}
.narrative-quote {
  margin-top: 22px;
  font-family: var(--fd);
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  line-height: 1.6;
}

/* Connected Pillar Loop (right column) */
.pillar-loop {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.loop-node {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--cream3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.loop-node:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold-d);
}
.node-icon-bg {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-d);
  transition: background 0.2s, color 0.2s;
}
.loop-node:hover .node-icon-bg {
  background: var(--gold);
  color: var(--white);
}
.node-icon-bg svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.node-text { flex: 1; }
.node-step {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.node-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 4px;
}
.node-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-l);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* Connector arrow between stacked nodes */
.connector-arrow {
  position: absolute;
  left: 46px;
  bottom: -22px;
  font-size: 16px;
  color: var(--gray-l);
  z-index: 2;
  line-height: 1;
}

/* Feedback loop line — visually closes the cycle from pillar 04 back to 01 */
.loop-node-last .feedback-loop-line {
  position: absolute;
  top: -104%;
  bottom: 26px;
  right: -16px;
  width: 26px;
  border: 2px dashed var(--cream3);
  border-left: none;
  border-radius: 0 12px 12px 0;
  z-index: 1;
}
.loop-node-last .feedback-loop-line::after {
  content: '▲';
  position: absolute;
  top: -6px;
  left: -5px;
  font-size: 9px;
  color: var(--gray-l);
}

@media (max-width: 640px) {
  .loop-node-last .feedback-loop-line { display: none; }
  .loop-node { padding: 18px 18px; gap: 16px; }
  .node-icon-bg { width: 44px; height: 44px; }
  .node-icon-bg svg { width: 22px; height: 22px; }
  .node-title { font-size: 19px; }
}

/* ═══════════════════════════════
   PILLAR DETAIL CARDS — services-list.php
═══════════════════════════════ */
.pillar-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream3);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 32px;
}
.pillar-detail-card:last-child { margin-bottom: 0; }

/* Line 1: Icon + Title */
.pdc-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--cream3);
  background: var(--cream2);
}
.pdc-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-d);
}
.pdc-icon svg {
  width: 28px; height: 28px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pdc-head-text {}
.pdc-pillar-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.pdc-title {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600; color: var(--charcoal);
  margin: 0;
}

/* Line 2: Tagline */
.pdc-tagline {
  font-family: var(--fd);
  font-size: 16px; font-style: italic;
  color: var(--gold-d);
  padding: 16px 36px;
  border-bottom: 1px solid var(--cream3);
  margin: 0;
}

/* Line 3: Overview */
.pdc-overview {
  padding: 20px 36px 24px;
  font-size: 14px; color: var(--gray);
  line-height: 1.85;
  border-bottom: 1px solid var(--cream3);
}

/* Sub-service boxes grid */
.pdc-subservices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--cream3);
}
.pdc-subservices.single { grid-template-columns: 1fr; }
.pdc-sub {
  padding: 24px 28px;
  border-right: 1px solid var(--cream3);
}
.pdc-sub:last-child { border-right: none; }
.pdc-sub-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.pdc-sub-icon {
  width: 34px; height: 34px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-d);
}
.pdc-sub-icon svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pdc-sub h4 {
  font-family: var(--fd);
  font-size: 17px; font-weight: 600;
  color: var(--charcoal); margin: 0;
}
.pdc-sub p {
  font-size: 13px; color: var(--gray);
  line-height: 1.75; margin-bottom: 14px;
}

/* Service tags / pills */
.pdc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 10px;
}
.pdc-tag {
  font-size: 11px; font-weight: 500;
  color: var(--charcoal);
  background: var(--cream2);
  border: 1px solid var(--cream3);
  padding: 3px 10px; border-radius: 20px;
}

/* Sub-service link hook */
.pdc-sub-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--gold); text-decoration: none;
  margin-top: 14px;
  transition: color 0.2s;
}
.pdc-sub-link:hover { color: var(--gold-d); }

/* Impact box */
.pdc-impact {
  padding: 24px 36px;
  background: var(--charcoal);
}
.pdc-impact-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.pdc-impact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pdc-impact-list li {
  font-size: 12px; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
.pdc-impact-list li::before {
  content: '✓'; color: var(--gold-l);
  font-weight: 700; font-size: 11px;
}

/* Modular engagement footer strip */
.modular-strip {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 40px 44px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-top: 48px;
}
.modular-strip h3 {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600; color: var(--white);
  margin-bottom: 8px;
}
.modular-strip p {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.8; max-width: 640px;
}

/* ═══════════════════════════════
   TRAINING PAGE — training.php
═══════════════════════════════ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.training-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.training-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(184,149,42,0.1);
  transform: translateY(-2px);
}
.training-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-d); margin-bottom: 14px;
}
.training-card-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.training-card h3 {
  font-family: var(--fd);
  font-size: 18px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 8px;
}
.training-card p {
  font-size: 13px; color: var(--gray);
  line-height: 1.7; margin-bottom: 12px;
}
.training-keywords {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.training-kw {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gold-d);
  background: var(--gold-pale);
  border: 1px solid rgba(184,149,42,0.2);
  padding: 2px 8px; border-radius: 2px;
}

/* ═══════════════════════════════
   CERTIFICATION PAGE — certification.php
═══════════════════════════════ */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cert-detail-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cert-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.cert-detail-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--cream3);
  display: flex; gap: 14px; align-items: center;
  background: var(--cream2);
}
.cert-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-d); flex-shrink: 0;
}
.cert-detail-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.cert-detail-head h3 {
  font-family: var(--fd);
  font-size: 20px; font-weight: 600;
  color: var(--charcoal); margin: 0 0 2px;
}
.cert-detail-head p {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin: 0;
}
.cert-detail-body { padding: 20px 24px; }
.cert-detail-body p {
  font-size: 13px; color: var(--gray);
  line-height: 1.8; margin-bottom: 16px;
}
.cert-steps {
  list-style: none; padding: 0; margin: 0;
}
.cert-steps li {
  font-size: 13px; color: var(--charcoal);
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--cream3);
  position: relative;
}
.cert-steps li:last-child { border-bottom: none; }
.cert-steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute; left: 0;
  font-size: 10px; font-weight: 700;
  color: var(--gold); margin-top: 2px;
}
.cert-steps { counter-reset: step; }

@media (max-width: 768px) {
  .pdc-subservices { grid-template-columns: 1fr; }
  .pdc-sub { border-right: none; border-bottom: 1px solid var(--cream3); }
  .pdc-sub:last-child { border-bottom: none; }
  .pdc-head { flex-wrap: wrap; }
  .modular-strip { flex-direction: column; text-align: center; }
  .cert-grid { grid-template-columns: 1fr; }
}
