/* ═══════════════════════════════════════════════════════════════
   BAZIVISTA FRONTEND CSS
   Design: Clean light professional, green accent, Syne + Outfit
════════════════════════════════════════════════════════════════ */

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

:root {
  --dark:       #ffffff;
  --dark2:      #f3f7f4;
  --dark3:      #e8f2ea;
  --mid:        #b8d8bb;
  --bright:     #15922f;
  --accent:     #0fa829;
  --dim:        #3d8a4e;
  --light:      #0d5c1f;
  --white:      #0c1e0e;
  --off:        #f0f7f1;
  --text-body:  #3a5040;
  --text-muted: #7a9580;
  --border:     rgba(21,146,47,0.15);
  --border-mid: rgba(21,146,47,0.32);
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { color: var(--text-body); font-weight: 300; }

/* ── UTILITIES ────────────────────────────────────────────── */
.container        { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 5%; }
.container--narrow{ max-width: 760px; }
.section-eyebrow  { display: inline-block; font-size: 11px; font-weight: 700;
                    letter-spacing: 2.5px; text-transform: uppercase; color: var(--bright);
                    margin-bottom: 14px; }
.section-title    { margin-bottom: 18px; }
.section-lead     { font-size: 17px; color: var(--text-body); max-width: 580px;
                    font-weight: 300; line-height: 1.7; margin-bottom: 36px; }
.section-intro    { margin-bottom: 8px; }
.section-cta      { text-align: center; margin-top: 36px; }

.tag {
  display: inline-block;
  background: rgba(21,146,47,0.08);
  border: 1px solid rgba(21,146,47,0.2);
  color: var(--light);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.3px;
}
.tag--lg { padding: 6px 16px; font-size: 13px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); border: 1px solid transparent;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--bright); color: #ffffff;
  border-color: var(--bright);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(21,146,47,0.25); }

.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(12,30,14,0.22);
}
.btn-outline:hover { border-color: var(--bright); color: var(--bright);
  background: rgba(21,146,47,0.06); }

.btn-ghost {
  background: transparent; color: var(--text-body);
  border-color: rgba(12,30,14,0.15);
}
.btn-ghost:hover { border-color: rgba(12,30,14,0.3); color: var(--white); }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── NAV ──────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 70px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(21,146,47,0.1);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled { background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.09); }

.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo-img { height: 44px; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-size: 14px; font-weight: 500; color: rgba(12,30,14,0.62);
  transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--bright);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--bright) !important; color: #ffffff !important;
  padding: 9px 20px !important; border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent) !important;
  box-shadow: 0 6px 18px rgba(21,146,47,0.28) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FLASH ────────────────────────────────────────────────── */
.flash {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; font-size: 14px; font-weight: 500;
  position: relative; z-index: 800;
}
.flash button { margin-left: auto; background: none; border: none;
  cursor: pointer; opacity: 0.6; font-size: 16px; }
.flash-success { background: rgba(21,146,47,0.07); color: var(--bright);
  border-bottom: 1px solid rgba(21,146,47,0.14); }
.flash-error   { background: rgba(220,61,61,0.06); color: #c0392b;
  border-bottom: 1px solid rgba(220,61,61,0.14); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 100px 5% 56px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(155deg, #eef8f0 0%, #ffffff 55%);
}

.hero-bg-grid {
  position: absolute; inset: 0; opacity: 0.045;
  background-image:
    linear-gradient(rgba(21,146,47,0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,146,47,0.7) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21,146,47,0.14) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,146,47,0.09) 0%, transparent 70%);
  bottom: -50px; right: 10%;
}

.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(21,146,47,0.08); border: 1px solid rgba(21,146,47,0.22);
  color: var(--bright); padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 7px; height: 7px; background: var(--bright); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.6); }
}

.hero-title {
  margin-bottom: 24px; letter-spacing: -1px;
  background: linear-gradient(135deg, #0a1a0c 0%, #1a5c24 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px; line-height: 1.72; font-weight: 300;
  color: var(--text-body); max-width: 520px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex; gap: 0; padding-top: 36px;
  border-top: 1px solid rgba(21,146,47,0.15);
}
.hero-stat {
  padding-right: 36px; margin-right: 36px;
  border-right: 1px solid rgba(21,146,47,0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--bright);
}
.hero-stat-label { font-size: 11px; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.5px; }

/* ── HERO VISUAL GRID ─────────────────────────────────────── */
.hero-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr); gap: 10px;
  max-width: 420px; margin: 0 auto;
}
.hero-card {
  background: #ffffff;
  border: 1px solid rgba(21,146,47,0.14);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; text-align: center;
  transition: all var(--transition);
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.hero-card:hover {
  border-color: rgba(21,146,47,0.3);
  background: rgba(21,146,47,0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.09);
}
.hero-card--accent {
  background: rgba(21,146,47,0.05);
  border-color: rgba(21,146,47,0.2);
}
.hero-card--center {
  background: rgba(21,146,47,0.09);
  border-color: rgba(21,146,47,0.3);
  grid-column: 2; grid-row: 2;
}
.hc-icon  { font-size: 32px; }
.hc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
            color: rgba(12,30,14,0.52); }
.hero-center-icon { width: 48px; height: 48px; object-fit: contain; margin: 0 auto; }

/* ── SERVICES ──────────────────────────────────────────────── */
.services-strip { padding: 28px 0; background: var(--dark); }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px; background: rgba(21,146,47,0.07);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-tile {
  background: #ffffff; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; position: relative;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}
.service-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--bright), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-tile:hover { background: rgba(21,146,47,0.04); }
.service-tile:hover::before { transform: scaleX(1); }

.st-icon  { font-size: 26px; }
.st-title { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700;
            color: var(--white); }
.st-desc  { font-size: 13.5px; color: var(--text-body); line-height: 1.65;
            font-weight: 300; flex: 1; }
.st-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.st-arrow { font-size: 18px; color: var(--bright); margin-top: 4px;
            transition: transform var(--transition); }
.service-tile:hover .st-arrow { transform: translateX(4px); }

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.industries-section { padding: 44px 0; overflow: hidden; background: #0c1e0e; }
.industries-section .section-eyebrow { color: #4ddc64; }
.industries-section .section-title   { color: #ffffff; }
.industries-section .section-lead    { color: rgba(255,255,255,0.62); }

.industries-ticker { overflow: hidden; mask-image: linear-gradient(90deg,transparent,black 15%,black 85%,transparent); }
.ticker-track {
  display: flex; gap: 12px; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 10px 20px;
  font-size: 13px; font-weight: 500; white-space: nowrap; color: rgba(255,255,255,0.85);
  transition: border-color var(--transition), background var(--transition);
}
.ticker-item:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.11); }
.ticker-icon { font-size: 18px; }

/* ── WHY SECTION ─────────────────────────────────────────────── */
.why-section { padding: 72px 0; background: var(--dark); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.pillars { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.pillar {
  display: flex; gap: 20px;
  padding: 24px; border-radius: var(--radius);
  border: 1px solid rgba(21,146,47,0.12);
  background: #ffffff;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pillar:hover { border-color: rgba(21,146,47,0.28); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.pillar-num {
  font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800;
  color: rgba(21,146,47,0.22); min-width: 44px; line-height: 1;
}
.pillar h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pillar p  { font-size: 13px; color: var(--text-body); font-weight: 300; line-height: 1.65; }

/* ── FOUNDER CARD ────────────────────────────────────────────── */
.founder-card {
  background: #ffffff; border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  overflow: hidden; margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.fc-quote-mark {
  position: absolute; top: -16px; left: 20px;
  font-family: 'Syne', sans-serif; font-size: 100px; font-weight: 800;
  color: rgba(21,146,47,0.1); line-height: 1; pointer-events: none;
}
.founder-card blockquote {
  font-size: 16px; font-style: italic; line-height: 1.7;
  color: rgba(12,30,14,0.72); font-weight: 300; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.fc-author { display: flex; align-items: center; gap: 14px; }
.fc-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bright); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800;
  flex-shrink: 0;
}
.fc-author strong { display: block; font-size: 14px; font-weight: 700; }
.fc-author span   { font-size: 12px; color: var(--text-muted); }

.aside-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.aside-stat {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 12px; text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.aside-stat-val {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--bright);
}
.aside-stat-lbl { font-size: 10px; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.3px; }

/* ── PROJECTS ────────────────────────────────────────────────── */
.projects-home { padding: 68px 0; background: var(--dark2); }

.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.project-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition); cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.project-card:hover {
  border-color: var(--border-mid); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.pc-sector {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bright); margin-bottom: 12px;
}
.pc-title  { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
             margin-bottom: 6px; }
.pc-client { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.pc-desc   { font-size: 13.5px; color: var(--text-body); line-height: 1.65;
             font-weight: 300; margin-bottom: 16px; }
.pc-outcome {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(21,146,47,0.06); border: 1px solid rgba(21,146,47,0.15);
  border-radius: var(--radius); padding: 12px 14px;
  font-size: 12.5px; color: var(--light); font-weight: 400;
  margin-bottom: 14px; line-height: 1.5;
}
.pc-outcome-icon { color: var(--bright); font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.pc-techs  { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 72px 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%,
    rgba(61,220,87,0.08) 0%, transparent 70%),
    #0c1e0e;
  border-top: none;
  text-align: center;
}
.cta-inner h2 { margin-bottom: 16px; color: #ffffff; }
.cta-inner p  { margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
                color: rgba(255,255,255,0.62); }
.cta-banner .section-eyebrow { color: #4ddc64; }
.cta-banner .btn-ghost { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.2); }
.cta-banner .btn-ghost:hover { color: #ffffff; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }
.cta-actions  { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  padding: 110px 5% 56px;
  background: linear-gradient(155deg, #eef8f0 0%, #ffffff 55%);
  position: relative; overflow: hidden;
}
.ph-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,146,47,0.09) 0%, transparent 70%);
  top: -100px; right: -100px; filter: blur(60px);
}
.page-hero-inner { max-width: 720px; }
.page-hero h1    { margin-bottom: 20px; }
.page-hero-lead  { font-size: 18px; font-weight: 300; line-height: 1.7;
                   color: var(--text-body); }
.breadcrumb      { display: inline-flex; align-items: center; gap: 6px;
                   font-size: 13px; color: var(--text-muted); margin-bottom: 16px;
                   transition: color var(--transition); }
.breadcrumb:hover { color: var(--bright); }
.ph-icon   { font-size: 40px; margin-bottom: 16px; }
.ph-tags   { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band { padding: 44px 0; background: #0c1e0e; border-top: none; }
.stats-row  { display: flex; gap: 0; flex-wrap: wrap; }
.stat-block {
  flex: 1; min-width: 140px; text-align: center;
  padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-val { display: block; font-family: 'Syne', sans-serif;
            font-size: 36px; font-weight: 800; color: var(--bright); }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5);
            font-weight: 500; letter-spacing: 0.5px; }

/* ── MISSION / VISION ────────────────────────────────────────── */
.mv-section { padding: 60px 0; background: var(--dark); }
.mv-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.mv-card--vision { border-color: rgba(21,146,47,0.28); }
.mv-icon { font-size: 32px; margin-bottom: 20px; }
.mv-card h3 { font-size: 22px; margin-bottom: 14px; }
.mv-card p  { font-size: 15px; color: var(--text-body); line-height: 1.75; font-weight: 300; }

/* ── FOUNDER SECTION ─────────────────────────────────────────── */
.founder-section { padding: 68px 0; background: var(--dark2); }
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.founder-bio h2   { margin-bottom: 6px; }
.founder-role     { color: var(--bright); font-size: 15px; font-weight: 500; margin-bottom: 24px; }
.founder-bio-text { font-size: 15px; color: var(--text-body); line-height: 1.8;
                    font-weight: 300; margin-bottom: 28px; }
.founder-bio-text p { margin-bottom: 14px; }

.skill-tags        { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.founder-contact-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.fc-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-body);
  transition: color var(--transition);
}
.fc-item:hover { color: var(--bright); }
.fc-item-icon  { font-size: 14px; width: 20px; text-align: center; }

.big-quote-card {
  background: #ffffff; border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl); padding: 48px; position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.bqc-mark {
  position: absolute; top: -20px; left: 24px;
  font-family: 'Syne', sans-serif; font-size: 120px; font-weight: 800;
  color: rgba(21,146,47,0.1); line-height: 1;
}
.big-quote-card blockquote {
  font-size: 18px; font-style: italic; line-height: 1.72;
  color: rgba(12,30,14,0.76); font-weight: 300;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.big-quote-card footer { display: flex; align-items: center; gap: 14px; }
.bqc-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--bright); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
}
.big-quote-card footer strong { display: block; font-size: 15px; }
.big-quote-card footer span   { font-size: 12px; color: var(--text-muted); }

/* ── TEAM SECTION ────────────────────────────────────────────── */
.team-section { padding: 60px 0; background: var(--dark); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.team-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.team-card:hover { border-color: var(--border-mid); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.team-photo      { width: 80px; height: 80px; border-radius: 50%;
                   object-fit: cover; margin: 0 auto 16px; }
.team-avatar     { width: 80px; height: 80px; border-radius: 50%;
                   background: var(--bright); color: #ffffff;
                   display: flex; align-items: center; justify-content: center;
                   font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800;
                   margin: 0 auto 16px; }
.team-card h4    { font-size: 16px; margin-bottom: 4px; }
.team-role       { font-size: 12px; color: var(--bright); font-weight: 500; margin-bottom: 10px; }
.team-bio        { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── ABOUT INDUSTRIES ───────────────────────────────────────── */
.about-industries { padding: 56px 0; background: #0c1e0e; }
.about-industries .section-eyebrow { color: #4ddc64; }
.about-industries .section-title   { color: #ffffff; }
.industries-grid  { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 12px 20px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82);
  transition: all var(--transition);
}
.industry-chip:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.11); }
.industry-chip span  { font-size: 20px; }

/* ── SERVICES FULL PAGE ──────────────────────────────────────── */
.services-full { padding: 60px 0; background: var(--dark); }
.services-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 24px;
}
.sf-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.sf-card:hover { border-color: var(--border-mid); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.sf-head   { display: flex; align-items: center; gap: 16px; }
.sf-icon   { font-size: 28px; }
.sf-title  { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; }
.sf-short  { font-size: 14px; color: var(--text-body); line-height: 1.65; font-weight: 400; }
.sf-full   { font-size: 13.5px; color: rgba(12,30,14,0.48); line-height: 1.7;
             font-weight: 300; padding-top: 8px; border-top: 1px solid var(--border); }
.sf-tags   { display: flex; flex-wrap: wrap; gap: 6px; }
.sf-link   { display: inline-flex; align-items: center; gap: 6px;
             font-size: 13px; font-weight: 600; color: var(--bright);
             margin-top: auto; transition: gap var(--transition); }
.sf-link:hover { gap: 10px; }

/* ── SERVICE BODY / DETAIL ───────────────────────────────────── */
.service-body { padding: 48px 0; background: var(--dark); }
.prose {
  font-size: 16px; color: var(--text-body); line-height: 1.8; font-weight: 300;
}
.prose p { margin-bottom: 18px; }
.prose br+br { display: none; }

.other-services { padding: 48px 0; background: var(--dark2); }
.other-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.os-card {
  display: flex; align-items: center; gap: 14px;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.os-card:hover { border-color: var(--border-mid); background: rgba(21,146,47,0.04); }
.os-icon  { font-size: 20px; }
.os-title { font-size: 14px; font-weight: 600; flex: 1; }
.os-arrow { font-size: 16px; color: var(--bright); }

/* ── PROJECTS PAGE ───────────────────────────────────────────── */
.projects-section { padding: 60px 0; background: var(--dark); }
.projects-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.pf-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all var(--transition); position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pf-card:hover { border-color: var(--border-mid); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.pf-card--featured { border-color: rgba(21,146,47,0.3); }
.pf-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(21,146,47,0.1); border: 1px solid rgba(21,146,47,0.25);
  color: var(--bright); font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.pf-sector  { font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
              text-transform: uppercase; color: var(--bright); margin-bottom: 10px; }
.pf-title   { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pf-client  { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.pf-desc    { font-size: 14px; color: var(--text-body); line-height: 1.7;
              font-weight: 300; margin-bottom: 18px; }
.pf-outcome {
  display: flex; gap: 10px;
  background: rgba(21,146,47,0.06); border: 1px solid rgba(21,146,47,0.15);
  border-radius: var(--radius); padding: 14px 16px;
  font-size: 13px; color: var(--light); line-height: 1.55;
  margin-bottom: 16px;
}
.pf-outcome-check { color: var(--bright); flex-shrink: 0; margin-top: 1px; }
.pf-techs   { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pf-date    { font-size: 11px; color: var(--text-muted); }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section { padding: 60px 0; background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.contact-info h3 { font-size: 22px; margin-bottom: 28px; }
.contact-details  { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.cd-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: #ffffff;
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.cd-item:hover { border-color: var(--border-mid); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.cd-icon  { font-size: 20px; width: 42px; height: 42px;
            background: rgba(21,146,47,0.08); border: 1px solid var(--border);
            border-radius: var(--radius); display: flex; align-items: center;
            justify-content: center; flex-shrink: 0; }
.cd-label { font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
            text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.cd-value { font-size: 14px; font-weight: 500; color: var(--white);
            transition: color var(--transition); }
a.cd-value:hover { color: var(--bright); }

.response-note {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: rgba(21,146,47,0.06);
  border: 1px solid rgba(21,146,47,0.18); border-radius: var(--radius);
  font-size: 13px; color: var(--light);
}
.rn-icon { font-size: 18px; }

/* ── FORM STYLES ──────────────────────────────────────────────── */
.contact-form-wrap {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.contact-form, .form-errors { }
.form-errors {
  background: rgba(220,61,61,0.05); border: 1px solid rgba(220,61,61,0.2);
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 20px;
}
.form-errors ul { padding-left: 18px; }
.form-errors li { font-size: 13px; color: #b83232; margin-bottom: 4px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: rgba(12,30,14,0.48); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: #f7fbf8;
  border: 1px solid rgba(21,146,47,0.2); border-radius: var(--radius);
  padding: 13px 16px; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--bright); background: #ffffff;
  box-shadow: 0 0 0 3px rgba(21,146,47,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(12,30,14,0.28); }
.form-group select option          { background: #ffffff; color: var(--white); }
.form-group textarea               { resize: vertical; min-height: 130px; }
.form-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px; color: var(--text-muted); }
.empty-state a { color: var(--bright); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #0b1d0d; border-top: 1px solid rgba(21,146,47,0.14); padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 38px; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-desc  { font-size: 13px; color: rgba(255,255,255,0.28); margin-top: 8px; max-width: 240px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 13px; color: rgba(255,255,255,0.55);
  font-weight: 300; margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: #4ddc64; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 24px 5% 0;
  border-top: 1px solid rgba(21,146,47,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(61,220,87,0.08); border: 1px solid rgba(61,220,87,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #4ddc64;
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(61,220,87,0.2); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 60px; }
  .hero-card-grid    { max-width: 380px; }
  .why-grid, .founder-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .mv-grid           { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(30px);
    flex-direction: column; gap: 0; padding: 24px 5%; align-items: flex-start;
    z-index: 850; overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  }
  .nav-menu.open     { display: flex; }
  .nav-menu a        { width: 100%; padding: 16px 0; font-size: 18px;
                       border-bottom: 1px solid var(--border); color: var(--white); }
  .nav-menu a::after { display: none; }
  .nav-toggle        { display: flex; }
  .nav-cta           { margin-top: 16px; width: 100%; text-align: center; justify-content: center; }

  .hero-stats        { flex-wrap: wrap; gap: 24px; }
  .hero-stat         { border-right: none; padding-right: 0; margin-right: 0; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .services-grid     { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 28px; }
  .stats-row         { flex-direction: column; }
  .stat-block        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
