/* ============================================
   NTM Cyber Solutions — Main Stylesheet
   Design: Deep Navy + Teal + Gold Premium Consulting
   ============================================ */

/* --- Variables --- */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2244;
  --navy-light:  #162d54;
  --teal:        #00c8b4;
  --teal-dark:   #009e8e;
  --teal-light:  #b2f0ea;
  --gold:        #e8a020;
  --gold-light:  #ffd480;
  --white:       #ffffff;
  --off-white:   #f4f7fb;
  --text-body:   #cdd8ea;
  --text-muted:  #7a90aa;
  --text-dark:   #1a2840;
  --border:      rgba(0,200,180,0.18);
  --border-subtle: rgba(255,255,255,0.08);
  --card-bg:     rgba(22, 45, 84, 0.6);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.4);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.25);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--navy);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; color: var(--white); }
p { color: var(--text-body); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,200,180,0.10);
  border: 1px solid rgba(0,200,180,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 14px;
}
.section-title span { color: var(--teal); }
.section-subtitle {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li.current > a {
  color: var(--white);
  background: rgba(0,200,180,0.12);
}
.main-nav > li > a.has-dropdown::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}
/* Dropdown */
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: #0d1e3a;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  color: var(--text-body);
  font-size: 0.88rem;
  transition: var(--transition);
}
.dropdown li a:hover {
  color: var(--teal);
  background: rgba(0,200,180,0.08);
  padding-left: 26px;
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0d1e3a;
  border-top: 1px solid var(--border-subtle);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  color: var(--text-body);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav .mobile-sub { padding-left: 16px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background: 
    linear-gradient(135deg, rgba(0,200,180,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(0,200,180,0.08) 0%, transparent 60%),
    var(--navy);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0,200,180,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(232,160,32,0.04) 0%, transparent 40%);
  pointer-events: none;
}
/* Grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,200,180,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,180,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,180,0.1);
  border: 1px solid rgba(0,200,180,0.3);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 14px;
  max-width: 600px;
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.cred-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.cred-pill.highlight {
  border-color: rgba(232,160,32,0.4);
  color: var(--gold);
  background: rgba(232,160,32,0.08);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,200,180,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #d4911a;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}

/* Hero Stats Float */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid var(--border-subtle);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(0,200,180,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-text { font-size: 0.82rem; line-height: 1.3; }
.trust-text strong { display: block; color: var(--white); font-size: 0.88rem; }
.trust-text span { color: var(--text-muted); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--navy);
}
.section-header { text-align: center; margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: rgba(22, 45, 84, 0.9);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(0,200,180,0.1);
  border: 1px solid rgba(0,200,180,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal);
  color: var(--navy);
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--gold); }

/* ============================================
   WHY NTM
   ============================================ */
.why-section {
  padding: 100px 0;
  background: 
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-left { }
.why-left .section-label { margin-bottom: 16px; }
.why-left h2 { margin-bottom: 20px; }
.why-left p { margin-bottom: 32px; color: var(--text-body); }
.why-bullets { display: flex; flex-direction: column; gap: 16px; }
.why-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-bullet-icon {
  width: 28px; height: 28px;
  background: rgba(0,200,180,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-bullet-text strong { color: var(--white); display: block; font-size: 0.95rem; margin-bottom: 3px; }
.why-bullet-text span { color: var(--text-muted); font-size: 0.85rem; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border);
  background: rgba(22, 45, 84, 0.85);
}
.why-card-num {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.why-card.accent-gold .why-card-num { color: var(--gold); }

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section {
  padding: 100px 0;
  background: var(--navy-mid);
  overflow: hidden;
}
.approach-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 60px;
  flex-wrap: wrap;
}
.approach-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 32px 16px 28px;
  position: relative;
}
.approach-step::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.2rem;
  opacity: 0.5;
  z-index: 2;
}
.approach-step:last-child::after { display: none; }
.step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-icon {
  width: 64px; height: 64px;
  background: rgba(0,200,180,0.08);
  border: 1.5px solid rgba(0,200,180,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.approach-step:hover .step-icon {
  background: rgba(0,200,180,0.18);
  border-color: var(--teal);
}
.step-title {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section {
  padding: 100px 0;
  background: var(--navy);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.industry-card h3 { font-size: 1rem; margin-bottom: 10px; }
.industry-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================
   ENGAGEMENT MODELS
   ============================================ */
.engagement-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.engagement-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
  position: relative;
}
.engagement-card.featured {
  border-color: rgba(0,200,180,0.4);
  background: rgba(0,200,180,0.06);
}
.engagement-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.engagement-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.engagement-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.engagement-card h3 { font-size: 1rem; margin-bottom: 10px; }
.engagement-card p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }
.engagement-features { display: flex; flex-direction: column; gap: 7px; }
.engagement-features li {
  font-size: 0.8rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.engagement-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: 
    linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(0,200,180,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.cta-section p { color: var(--text-body); max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #060e1c;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,200,180,0.08);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 32px; height: 32px;
  background: rgba(0,200,180,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.cert-badge {
  background: rgba(0,200,180,0.08);
  border: 1px solid rgba(0,200,180,0.2);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--teal); }
.footer-services-bar {
  text-align: center;
  padding: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-services-bar span { color: var(--teal); margin: 0 6px; }

/* ============================================
   INNER PAGE HERO (service pages)
   ============================================ */
.inner-hero {
  padding: 140px 0 70px;
  background:
    linear-gradient(135deg, rgba(0,200,180,0.06) 0%, transparent 50%),
    var(--navy);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,200,180,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,180,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 2; max-width: 700px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--teal); }
.inner-hero h1 { margin-bottom: 16px; }
.inner-hero .subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 28px;
}

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.inner-section {
  padding: 80px 0;
  background: var(--navy);
}
.inner-section.alt { background: var(--navy-mid); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-block h2 { margin-bottom: 18px; }
.content-block p { margin-bottom: 16px; color: var(--text-body); font-size: 0.95rem; }
.content-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.content-block ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-body);
}
.content-block ul li::before {
  content: '▹';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process/Phase cards for inner pages */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.phase-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
}
.phase-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.phase-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase-card h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 10px; }
.phase-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* Highlight box */
.highlight-box {
  background: rgba(0,200,180,0.06);
  border: 1px solid rgba(0,200,180,0.2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box p { color: var(--text-body); font-size: 0.9rem; margin: 0; }

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 16px;
}
.info-table th {
  background: rgba(0,200,180,0.08);
  padding: 12px 16px;
  text-align: left;
  color: var(--teal);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-body);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(0,200,180,0.03); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.founder-section {
  padding: 80px 0;
  background: var(--navy);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.founder-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.founder-avatar {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--teal);
  color: var(--white);
}
.founder-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.founder-role { font-size: 0.82rem; color: var(--teal); margin-bottom: 16px; }
.founder-certs { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.cert-item {
  background: rgba(0,200,180,0.06);
  border: 1px solid rgba(0,200,180,0.15);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-item::before { content: '🎖'; font-size: 0.85rem; }
.founder-bio h2 { margin-bottom: 18px; }
.founder-bio p { margin-bottom: 14px; font-size: 0.95rem; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-body); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(0,200,180,0.1);
  border: 1px solid rgba(0,200,180,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 2px; }
.ci-text span { color: var(--text-muted); font-size: 0.85rem; }
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(0,200,180,0.04);
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================
   TRAINING PAGE
   ============================================ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.training-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
}
.training-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.training-card .category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.training-card h3 { font-size: 1rem; margin-bottom: 10px; }
.training-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 14px; }
.training-detail {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.t-detail {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.t-detail::before { content: '📌'; font-size: 0.7rem; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-right { grid-template-columns: repeat(2, 1fr); }
  .phase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-subtle); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .approach-steps { flex-direction: column; }
  .approach-step::after { content: '↓'; right: auto; top: auto; bottom: -12px; left: 50%; transform: translateX(-50%); }
  .hero-stats { gap: 20px; }
  .phase-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
}

/* ============================================
   PRINT / UTILITY
   ============================================ */
.text-teal  { color: var(--teal); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.mt-0 { margin-top: 0 !important; }

/* Active nav highlight */
.main-nav > li.current > a,
.main-nav a.active {
  color: var(--teal) !important;
  background: rgba(0,200,180,0.10) !important;
}

/* Smooth page-load fade-in */
body { animation: pageFade .4s ease; }
@keyframes pageFade { from { opacity:0; } to { opacity:1; } }

/* Section top/bottom spacing utility */
.pt-0 { padding-top: 0 !important; }
.section-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MISSING / SUPPLEMENTARY CLASSES
   ============================================ */

/* Footer brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 300px;
}

/* Footer columns */
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--teal);
  padding-left: 4px;
}

/* Contact info text block */
.contact-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-info span {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Contact ci-text (inside contact-item) */
.ci-text strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.ci-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Content block (inner pages) */
.content-block {
  display: flex;
  flex-direction: column;
}
.content-block h2 {
  margin-bottom: 18px;
}
.content-block p {
  margin-bottom: 14px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.72;
}
.content-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.content-block ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}
.content-block ul li::before {
  content: '▹';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Founder bio section */
.founder-bio {
  display: flex;
  flex-direction: column;
}
.founder-bio h2 {
  margin-bottom: 18px;
}
.founder-bio p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.72;
}
