/*
Theme Name: InsightCrest Foundation
Theme URI: https://insightcrest.org
Author: InsightCrest Foundation
Description: Systems improvement organisation WordPress theme.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: insightcrest
*/

/* ============================================================
   INSIGHTCREST FOUNDATION — SHARED STYLESHEET
   Brand: Teal #00C2CC | Blue #3B82F6 | Violet #7C3AED
   ============================================================ */

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

:root {
  --teal:   #00C2CC;
  --blue:   #3B82F6;
  --violet: #7C3AED;
  --dark:   #1E1E2E;
  --light:  #F0FAFA;
  --mid:    #E8F0FE;
  --white:  #FFFFFF;
  --gray:   #6B7280;
  --dgray:  #374151;
  --border: #E5E7EB;
  --lgray:  #F3F4F6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--dgray);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: var(--teal); }
a:hover { opacity: 0.85; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.section-alt { padding: 72px 0; background: var(--light); }

.section-label {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px;
}
.section-title {
  font-size: 32px; font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--gray); line-height: 1.7;
  max-width: 580px; margin-bottom: 44px;
}
.section-sub.center { text-align: center; margin: 0 auto 44px; }
.section-title.center { text-align: center; }
.section-label.center { text-align: center; display: block; }

/* ── GRADIENT ── */
.grad-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet));
}
.grad-text {
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px; font-size: 15px;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: #00a8b0; color: white; opacity: 1; }
.btn-secondary {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: white; opacity: 1; }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; opacity: 1; }
.btn-dark { background: var(--dark); color: white; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 68px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--dark);
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 6px; font-size: 14px;
  color: var(--dgray); font-weight: 500; transition: all 0.15s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--teal); background: #00C2CC0D; }
.nav-links > li > a svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 16px;
  min-width: 320px; z-index: 100;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown-title {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.dropdown-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px; border-radius: 8px; transition: background 0.15s;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--light); }
.dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.di-teal { background: #00C2CC15; }
.di-teal svg { color: var(--teal); }
.di-blue { background: #3B82F615; }
.di-blue svg { color: var(--blue); }
.di-violet { background: #7C3AED15; }
.di-violet svg { color: var(--violet); }
.dropdown-item-text h4 { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.dropdown-item-text p { font-size: 12px; color: var(--gray); line-height: 1.4; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-donate { font-size: 14px; color: var(--violet); font-weight: 600; }
.nav-donate:hover { color: var(--violet); opacity: 0.8; }
.nav-cta {
  background: var(--teal); color: white; padding: 9px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 600; border: none; cursor: pointer;
}
.nav-cta:hover { background: #00a8b0; }

.page-content { padding-top: 68px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark); padding: 64px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet));
}
.page-hero-label { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
.page-hero h1 { font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
.page-hero p { font-size: 17px; color: #9CA3AF; line-height: 1.7; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6B7280; margin-bottom: 20px; }
.breadcrumb a { color: #6B7280; }
.breadcrumb span { color: #9CA3AF; }

/* ── CARDS ── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.card-body { padding: 22px; }

/* ── TAG ── */
.tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.tag-teal { background: #00C2CC15; color: #007A80; }
.tag-blue { background: #3B82F615; color: #1D5FA8; }
.tag-violet { background: #7C3AED15; color: #5B20C0; }
.tag-green { background: #10B98115; color: #065F46; }
.tag-amber { background: #F59E0B15; color: #78350F; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label span { color: var(--teal); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 15px; color: var(--dark);
  background: white; outline: none; transition: border-color 0.2s;
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dgray); cursor: pointer; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--teal); }

/* ── FOOTER ── */
.footer { background: var(--dark); color: white; padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo span { font-size: 16px; font-weight: 700; color: var(--teal); }
.footer-desc { font-size: 14px; color: #6B7280; line-height: 1.7; margin-bottom: 20px; max-width: 240px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: #ffffff10;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 18px; height: 18px; color: #9CA3AF; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #6B7280; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid #ffffff10; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: #4B5563; }
.footer-strip { height: 4px; width: 64px; border-radius: 2px; background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet)); }

/* ── UTILITIES ── */
.text-teal { color: var(--teal); }
.text-blue { color: var(--blue); }
.text-violet { color: var(--violet); }
.text-gray { color: var(--gray); }
.text-white { color: white; }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light); }
.bg-mid { background: var(--mid); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section, .section-alt { padding: 48px 0; }
}

/*
Theme Name: InsightCrest Foundation
Theme URI: https://insightcrest.org
Author: InsightCrest Foundation
Description: Systems improvement organisation WordPress theme — InsightCrest Foundation.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: insightcrest
*/

/* ══════════════════════════════════════════════════
   MOBILE HAMBURGER BUTTON
══════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.15s;
  z-index: 1100;
}
.nav-toggle:hover { background: var(--light); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════════ */
.mob-drawer {
  display: none; /* only shown on mobile */
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: white;
  overflow-y: auto;
  z-index: 999;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--teal), var(--blue), var(--violet)) 1;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  pointer-events: none;
}
.mob-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
body.nav-open { overflow: hidden; }

.mob-drawer-body { padding: 12px 24px 48px; }

/* Mob menu list */
.mob-menu { list-style: none; margin: 0; padding: 0; }
.mob-item { border-bottom: 1px solid var(--border); }
.mob-item:last-child { border-bottom: none; }

.mob-link {
  display: block;
  padding: 15px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.15s;
}
.mob-link:hover { color: var(--teal); }
.mob-link.mob-active { color: var(--teal); }

/* Accordion parent button */
.mob-parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.15s;
}
.mob-parent:hover { color: var(--teal); }
.mob-parent svg { transition: transform 0.22s ease; flex-shrink: 0; }
.mob-parent[aria-expanded="true"] { color: var(--teal); }
.mob-parent[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Accordion submenu */
.mob-sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 14px 12px;
  border-left: 3px solid #00C2CC30;
}
.mob-sub li { list-style: none; }
.mob-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dgray);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mob-sub-link:hover { background: var(--light); color: var(--teal); }
.mob-sub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA buttons in drawer */
.mob-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════
   DROPDOWN — touch device click toggle
══════════════════════════════════════════════════ */
.nav-links > li.dd-open .dropdown { display: block; }

/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links  { display: none !important; }
  .nav-right  { display: none !important; }
  .nav-toggle { display: flex !important; }
  .mob-drawer { display: block; } /* visibility toggled via .open */
}

@media (min-width: 901px) {
  .mob-drawer  { display: none !important; }
  .nav-toggle  { display: none !important; }
}

/* ══════════════════════════════════════════════════
   HERO (homepage)
══════════════════════════════════════════════════ */
.hero {
  background: var(--dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet));
}
.hero-bg-circle1 { position: absolute; right: -60px; top: -60px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(0,194,204,0.1); pointer-events: none; }
.hero-bg-circle2 { position: absolute; right: 60px; top: 40px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(59,130,246,0.08); pointer-events: none; }
.hero-bg-circle3 { position: absolute; right: 130px; top: 100px; width: 160px; height: 160px; border-radius: 50%; background: rgba(0,194,204,0.04); pointer-events: none; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,194,204,0.12); border: 1px solid rgba(0,194,204,0.25);
  border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 600;
  color: var(--teal); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.8px;
}
.hero h1 { font-size: 52px; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; max-width: 600px; }
.hero h1 span { color: var(--teal); }
.hero p { font-size: 18px; color: #9CA3AF; line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px; font-size: 15px;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: #00a8b0; color: white; }
.btn-secondary { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: white; }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-teal { background: var(--teal); color: white; padding: 12px 26px; border-radius: 8px; font-size: 15px; font-weight: 600; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); padding: 12px 26px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-white { background: white; color: var(--teal); padding: 12px 26px; border-radius: 8px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-white-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); padding: 12px 26px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }

/* ══════════════════════════════════════════════════
   WHO STRIP
══════════════════════════════════════════════════ */
.who-strip { background: var(--light); padding: 44px 0; border-top: 1px solid var(--border); }
.who-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.who-item { font-size: 15px; font-weight: 600; color: var(--dark); padding: 0 28px; border-right: 1px solid var(--border); line-height: 1.5; text-align: center; }
.who-item:last-child { border-right: none; }
.who-item strong { color: var(--teal); }

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
.stats { background: var(--dark); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 20px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 40px; font-weight: 800; color: var(--teal); display: block; margin-bottom: 4px; line-height: 1; }
.stat-label { font-size: 13px; color: #6B7280; }

/* ══════════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════════ */
.section { padding: 72px 0; }
.section-alt { padding: 72px 0; background: var(--light); }
.section-label { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; }
.section-title { font-size: 32px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 580px; margin-bottom: 44px; }
.section-sub.center { text-align: center; margin: 0 auto 44px; }
.section-title.center { text-align: center; }
.section-label.center { text-align: center; display: block; }

/* ══════════════════════════════════════════════════
   SOLUTION CARDS
══════════════════════════════════════════════════ */
.sol-card { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.2s; }
.sol-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.sol-top { height: 5px; }
.sol-header { padding: 20px 22px 0; display: flex; align-items: center; gap: 10px; }
.sol-badge { padding: 5px 14px; border-radius: 8px; font-size: 13px; font-weight: 700; color: white; }
.sol-level { font-size: 12px; color: var(--gray); }
.sol-body { padding: 12px 22px 22px; }
.sol-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.sol-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.sol-features { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.sol-feature { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--dgray); }
.sol-feature::before { content: '•'; color: var(--teal); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.sol-link { font-size: 13px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 5px; text-decoration: none; }

/* ══════════════════════════════════════════════════
   PILLAR CARDS
══════════════════════════════════════════════════ */
.pillar-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: all 0.2s; }
.pillar-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.pillar-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-icon svg { width: 24px; height: 24px; }
.pi-teal { background: #00C2CC15; } .pi-teal svg { color: var(--teal); }
.pi-blue { background: #3B82F615; } .pi-blue svg { color: var(--blue); }
.pi-violet { background: #7C3AED15; } .pi-violet svg { color: var(--violet); }
.pi-dark { background: #1E1E2E15; } .pi-dark svg { color: var(--dark); }
.pillar-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   INSIGHTS CARDS
══════════════════════════════════════════════════ */
.ins-card { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.2s; }
.ins-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ins-thumb { height: 96px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ins-thumb img { width: 100%; height: 100%; object-fit: cover; }
.it-teal { background: linear-gradient(135deg,#00C2CC15,#3B82F615); }
.it-blue { background: linear-gradient(135deg,#3B82F615,#7C3AED15); }
.it-violet { background: linear-gradient(135deg,#7C3AED15,#00C2CC15); }
.ins-thumb svg { width: 36px; height: 36px; }
.ins-body { padding: 16px; }
.ins-body h4 { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.ins-body h4 a { color: inherit; text-decoration: none; }
.ins-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); }

/* ══════════════════════════════════════════════════
   TAG
══════════════════════════════════════════════════ */
.tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.tag-teal { background: #00C2CC15; color: #007A80; }
.tag-blue { background: #3B82F615; color: #1D5FA8; }
.tag-violet { background: #7C3AED15; color: #5B20C0; }
.tag-green { background: #10B98115; color: #065F46; }
.tag-amber { background: #F59E0B15; color: #78350F; }

/* ══════════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════════ */
.partners { padding: 44px 0; border-top: 1px solid var(--border); }
.partner-logos { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.partner-logo { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 14px 28px; font-size: 13px; color: var(--gray); font-weight: 500; display: flex; align-items: center; justify-content: center; }
.partner-logo img { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.2s; }
.partner-logo img:hover { filter: grayscale(0); opacity: 1; }

/* ══════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════ */
.newsletter { background: linear-gradient(135deg, var(--dark), #0D1B2A); padding: 56px 0; }
.nl-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nl-text h3 { font-size: 24px; font-weight: 700; color: white; margin-bottom: 6px; }
.nl-text p { font-size: 15px; color: #9CA3AF; }
.nl-form { display: flex; gap: 10px; flex-shrink: 0; }
.nl-form input { padding: 12px 18px; border: none; border-radius: 8px; font-size: 15px; background: rgba(255,255,255,0.1); color: white; outline: none; width: 240px; }
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form button { background: var(--teal); color: white; border: none; padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap; }

/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.cta-band { background: var(--teal); padding: 60px 0; }
.cta-band.dark { background: var(--dark); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { font-size: 28px; font-weight: 700; color: white; margin-bottom: 8px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 480px; }
.cta-band.dark p { color: #9CA3AF; }
.cta-band-btns, .cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════ */
.page-hero { background: var(--dark); padding: 64px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet)); }
.page-hero-label { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
.page-hero h1 { font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
.page-hero p { font-size: 17px; color: #9CA3AF; line-height: 1.7; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6B7280; margin-bottom: 20px; }
.breadcrumb a { color: #6B7280; text-decoration: none; }
.breadcrumb span { color: #9CA3AF; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 40px; }
.sg-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.sg-item:last-child { border-bottom: none; }
.sg-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sgi-t { background: #00C2CC15; } .sgi-t svg { color: var(--teal); }
.sgi-b { background: #3B82F615; } .sgi-b svg { color: var(--blue); }
.sgi-v { background: #7C3AED15; } .sgi-v svg { color: var(--violet); }
.sg-text h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.sg-text p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.mv-card { border-radius: 14px; padding: 24px; border: 1px solid var(--border); }
.mv-teal { background: #00C2CC08; border-color: #00C2CC30; }
.mv-blue { background: #3B82F608; border-color: #3B82F630; }
.mv-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.mv-label-t { color: var(--teal); } .mv-label-b { color: var(--blue); }
.mv-accent { height: 3px; width: 40px; border-radius: 2px; margin-bottom: 12px; }
.ma-t { background: var(--teal); } .ma-b { background: var(--blue); }
.mv-card p { font-size: 15px; color: var(--dark); line-height: 1.65; font-weight: 500; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.val-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.val-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.val-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }
.toc-flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; margin-top: 32px; }
.toc-flow::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--teal),var(--blue),var(--violet)); z-index: 0; }
.toc-step { text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.toc-num { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; margin: 0 auto 14px; }
.tn1,.tn2 { background: var(--teal); } .tn3 { background: var(--blue); } .tn4,.tn5 { background: var(--violet); }
.toc-step h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.toc-step p { font-size: 12px; color: var(--gray); line-height: 1.45; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: white; margin: 0 auto 14px; }
.ta1 { background: linear-gradient(135deg,var(--teal),var(--blue)); }
.ta2 { background: linear-gradient(135deg,var(--blue),var(--violet)); }
.ta3 { background: linear-gradient(135deg,var(--violet),var(--teal)); }
.ta4 { background: linear-gradient(135deg,var(--dark),#374151); }
.team-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--gray); }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.form-section { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.form-section h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-section > p { font-size: 15px; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label span { color: var(--teal); }
.form-input,.form-select,.form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 15px; color: var(--dark); background: white; outline: none; transition: border-color 0.2s; font-family: inherit; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dgray); cursor: pointer; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--teal); }
.contact-info-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--light); border-radius: 10px; margin-bottom: 12px; }
.contact-info-card h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-card a,.contact-info-card p { font-size: 14px; color: var(--gray); margin: 0; text-decoration: none; }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-teal { background: #00C2CC15; } .ci-teal svg { color: var(--teal); }
.ci-blue { background: #3B82F615; } .ci-blue svg { color: var(--blue); }
.ci-violet { background: #7C3AED15; } .ci-violet svg { color: var(--violet); }
.faq-item.open .faq-body { display:block !important; }
.faq-item.open .faq-q svg { transform:rotate(180deg); }

/* ══════════════════════════════════════════════════
   GRIDS
══════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ══════════════════════════════════════════════════
   WORDPRESS ALIGNMENT
══════════════════════════════════════════════════ */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { text-align: center; margin: 0 auto; }

/* ══════════════════════════════════════════════════
   FULL RESPONSIVE OVERRIDES
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 24px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section,.section-alt { padding: 48px 0; }
  .nl-inner { flex-direction: column; }
  .nl-form { flex-direction: column; width: 100%; }
  .nl-form input { width: 100%; }
  .cta-band-inner,.cta-btns,.cta-band-btns { flex-direction: column; }
  .who-inner { flex-direction: column; gap: 0; }
  .who-item { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 0; width: 100%; }
  .who-item:last-child { border-bottom: none; }
  .hero h1 { font-size: 36px; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .story-grid,.mv-grid,.values-grid { grid-template-columns: 1fr; }
  .toc-flow { grid-template-columns: 1fr 1fr; gap: 24px; }
  .toc-flow::before { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  .team-grid { grid-template-columns: 1fr; }
}
