/* ============================================
   SKILLTRAIN — Brand Design System
   Tagline: Purpose. People. Process. Performance.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;700&display=swap');

:root {
  --teal-deep:    #1A6B6B;
  --teal-mid:     #2A9090;
  --teal-light:   #E6F4F4;
  --amber:        #E8872A;
  --amber-light:  #FDF3E8;
  --earth-dark:   #3D2E1E;
  --earth-mid:    #6B5240;
  --earth-light:  #F5EFE8;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --text-dark:    #1C1C1C;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;
  --border:       #E0D8D0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Manrope', system-ui, sans-serif;
  --section-pad:  96px;
  --radius:       12px;
  --radius-sm:    6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .mark {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
}
.nav-logo .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .wordmark-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: -0.3px;
}
.nav-logo .wordmark-tag {
  font-family: var(--font-accent);
  font-size: 8.5px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--text-mid); padding: 8px 13px; border-radius: var(--radius-sm); transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--teal-deep); background: var(--teal-light); }
.nav-links a.active { color: var(--teal-deep); background: var(--teal-light); }
.nav-cta { background: var(--amber) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 50px !important; font-weight: 600 !important; margin-left: 4px; }
.nav-cta:hover { background: #d4771f !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,135,42,0.3); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #0D4A4A 0%, #1A6B6B 45%, #1E5C3A 100%);
  display: flex; align-items: center; padding-top: 76px; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,135,42,0.15) 0%, transparent 70%); top: -100px; right: -100px; border-radius: 50%; }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 70px 32px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,135,42,0.2); border: 1px solid rgba(232,135,42,0.4); color: var(--amber); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 4.6vw, 58px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--amber); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--amber); color: var(--white); padding: 16px 32px; border-radius: 50px; font-family: var(--font-accent); font-weight: 700; font-size: 15px; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #d4771f; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,135,42,0.4); }
.btn-outline { border: 2px solid rgba(255,255,255,0.5); color: var(--white); padding: 14px 30px; border-radius: 50px; font-family: var(--font-accent); font-weight: 600; font-size: 15px; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-stats { display: flex; gap: 32px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.stat-item { text-align: left; }
.stat-number { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Hero — 4P illustration panel (replaces founder photo) */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-panel-title {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  text-align: center;
}
.hero-panel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.hero-panel-item:last-child { margin-bottom: 0; }
.hero-panel-item.purpose { background: rgba(232,135,42,0.14); border: 1px solid rgba(232,135,42,0.3); }
.hero-panel-item:not(.purpose) { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.hero-panel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-panel-item.purpose .hero-panel-icon { background: rgba(232,135,42,0.25); }
.hero-panel-item:not(.purpose) .hero-panel-icon { background: rgba(255,255,255,0.1); }
.hero-panel-text .label { font-family: var(--font-accent); font-size: 15px; font-weight: 700; color: var(--white); }
.hero-panel-text .desc { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-panel-arrow {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  margin: 2px 0;
}

/* ============ SECTIONS COMMON ============ */
.section { padding: var(--section-pad) 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-family: var(--font-accent); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--earth-dark); line-height: 1.2; margin-bottom: 16px; }
.section-title em { font-style: normal; color: var(--teal-deep); }
.section-subtitle { font-size: 17px; color: var(--text-mid); line-height: 1.75; max-width: 600px; }

/* ============ CLIENTS STRIP ============ */
.clients-strip { background: var(--off-white); padding: 48px 32px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-strip-inner { max-width: 1200px; margin: 0 auto; }
.clients-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 32px; }
.clients-logos { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.client-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 22px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  color: var(--earth-mid);
  transition: all 0.2s;
  white-space: nowrap;
}
.client-badge:hover {
  border-color: var(--teal-mid);
  color: var(--teal-deep);
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

/* ============ SERVICES ============ */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal-deep), var(--teal-mid)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.09); border-color: transparent; }
.service-icon { width: 56px; height: 56px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 26px; }
.service-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 10px; }
.service-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--earth-dark); margin-bottom: 12px; line-height: 1.3; }
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--teal-deep); transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ============ ABOUT ============ */
.about-strip { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; max-height: 520px; }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-accent-block { position: absolute; bottom: -24px; right: -24px; background: var(--teal-deep); color: var(--white); border-radius: 16px; padding: 24px 28px; width: 180px; }
.about-accent-block .num { font-family: var(--font-display); font-size: 42px; font-weight: 700; line-height: 1; color: var(--amber); }
.about-accent-block .lbl { font-size: 13px; margin-top: 4px; opacity: 0.85; line-height: 1.4; }
.about-credentials { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.credential-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: var(--off-white); border-radius: 12px; border: 1px solid var(--border); }
.credential-icon { width: 40px; height: 40px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.credential-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--earth-dark); }
.credential-text span { font-size: 13px; color: var(--text-light); }

/* ============ APPROACH ============ */
.approach { background: var(--earth-dark); }
.approach .section-title { color: var(--white); }
.approach .section-subtitle { color: rgba(255,255,255,0.65); }
.approach .section-eyebrow { color: var(--amber); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; background: rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; }
.approach-item { background: rgba(255,255,255,0.04); padding: 40px 32px; transition: background 0.3s; }
.approach-item:hover { background: rgba(255,255,255,0.08); }
.approach-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 16px; }
.approach-title { font-family: var(--font-accent); font-size: 16px; font-weight: 700; color: var(--amber); margin-bottom: 12px; }
.approach-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ============ TEAM ============ */
.team { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.team-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.09); }
.team-card-image { height: 280px; overflow: hidden; background: var(--teal-light); display: flex; align-items: center; justify-content: center; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card-avatar { width: 100px; height: 100px; background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); }
.team-card-body { padding: 28px; }
.team-card-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--earth-dark); margin-bottom: 4px; }
.team-card-role { font-size: 13px; color: var(--teal-mid); font-weight: 600; margin-bottom: 14px; }
.team-card-bio { font-size: 13px; color: var(--text-mid); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.team-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 11px; font-weight: 600; background: var(--teal-light); color: var(--teal-deep); padding: 4px 10px; border-radius: 50px; }

/* ============ IMPACT ============ */
.impact { background: linear-gradient(135deg, var(--teal-deep) 0%, #0D4A4A 100%); position: relative; overflow: hidden; }
.impact::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 32px 32px; }
.impact .section-title { color: var(--white); }
.impact .section-subtitle { color: rgba(255,255,255,0.7); }
.impact .section-eyebrow { color: var(--amber); }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.impact-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 24px; }
.impact-stat .num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--amber); line-height: 1; }
.impact-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; line-height: 1.4; }
.yt-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 36px; backdrop-filter: blur(10px); }
.yt-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.yt-icon { width: 44px; height: 44px; background: #FF0000; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; }
.yt-title { font-family: var(--font-accent); font-size: 16px; font-weight: 700; color: var(--white); }
.yt-sub { font-size: 12px; color: rgba(255,255,255,0.6); }
.yt-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; }
.yt-cta { display: inline-flex; align-items: center; gap: 8px; background: #FF0000; color: var(--white); padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.yt-cta:hover { background: #cc0000; transform: translateY(-2px); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: var(--font-display); font-size: 80px; color: var(--teal-light); line-height: 1; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-accent); font-weight: 700; font-size: 16px; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--earth-dark); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ============ CONTACT ============ */
.contact { background: var(--earth-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--earth-dark); margin-bottom: 16px; }
.contact-info-text { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-mid); }
.contact-detail-icon { width: 42px; height: 42px; background: var(--teal-deep); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; color: white; }
.contact-form { background: var(--white); border-radius: 24px; padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--earth-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--text-dark); background: var(--off-white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal-mid); box-shadow: 0 0 0 3px rgba(42,144,144,0.1); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--teal-deep); color: var(--white); border: none; border-radius: 50px; font-family: var(--font-accent); font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.25s; }
.form-submit:hover { background: #145858; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,107,107,0.35); }

/* ============ FOOTER ============ */
.footer { background: var(--earth-dark); color: var(--white); padding: 72px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-wrap .mark {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.footer-logo-wrap .wordmark-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.footer-logo-wrap .wordmark-tag {
  font-family: var(--font-accent);
  font-size: 8.5px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 280px; }
.footer-col-title { font-family: var(--font-accent); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.social-icon:hover { background: var(--teal-mid); color: var(--white); }

/* ============ PAGE HERO ============ */
.page-hero { background: linear-gradient(135deg, var(--teal-deep), #0D4A4A); padding: 130px 32px 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 36px 36px; }
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 16px; margin-top: 12px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ============ INSIGHTS ============ */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.insight-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.insight-card-thumb { height: 180px; background: linear-gradient(135deg, var(--teal-light), var(--amber-light)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.insight-card-body { padding: 24px; }
.insight-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 10px; }
.insight-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--earth-dark); line-height: 1.4; margin-bottom: 10px; }
.insight-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.insight-meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 12px; color: var(--text-light); }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.btn-teal { background: var(--teal-deep); color: var(--white); padding: 14px 32px; border-radius: 50px; font-family: var(--font-accent); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; }
.btn-teal:hover { background: #145858; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,107,107,0.3); }
.mt-48 { margin-top: 48px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links a { padding: 8px 9px; font-size: 13px; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid, .team-grid, .testimonials-grid, .insights-grid { grid-template-columns: 1fr; }
  .about-grid, .impact-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .clients-logos { gap: 12px; }
  .section { padding: 64px 20px; }
  .nav-inner { padding: 0 20px; }
  .footer { padding: 56px 20px 28px; }
  .nav-logo .wordmark-tag { display: none; }
}
@media (max-width: 480px) {
  .approach-grid { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .nav-logo .wordmark-name { font-size: 18px; }
}
.nav-links.open { display: flex; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 32px; gap: 4px; z-index: 999; border-top: 1px solid var(--border); overflow-y: auto; }
.nav-links.open a { font-size: 18px; padding: 14px 16px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ CLIENT LOGO CARDS ============ */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.client-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  min-height: 88px;
}
.client-badge:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.client-badge img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-badge.dark-bg {
  background: #0D3B45;
  border-color: #0D3B45;
}
@media (max-width: 1024px) {
  .clients-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .clients-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-badge { padding: 14px 16px; min-height: 76px; }
  .client-badge img { max-height: 36px; }
}
@media (max-width: 480px) {
  .clients-logos { grid-template-columns: 1fr 1fr; }
}
