/* ============================================================
   INNOCHAIN — Main Stylesheet
   Brand: Navy #2b3e95 | Green #33a850 | Gold #fed700
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #2b3e95;
  --green:  #33a850;
  --gold:   #fed700;
  --bg:     #060608;
  --s1:     #0c0d14;
  --s2:     #11121c;
  --text:   #ffffff;
  --muted:  #7a7f9a;
  --border: rgba(255,255,255,0.07);

  --grad-navy:  linear-gradient(135deg, #1a2770, #2b3e95, #3d55c4);
  --grad-green: linear-gradient(135deg, #1d6b31, #33a850, #45d469);
  --grad-gold:  linear-gradient(135deg, #b8960a, #fed700, #ffe347);

  --font-body: 'Inter', sans-serif;
  --font-head: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; }

.text-navy {
  background: var(--grad-navy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
  margin-bottom: 24px;
}

/* ---- Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: 96px 0; }
.section-sm { padding: 52px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.2px;
}

.btn-navy {
  background: linear-gradient(135deg,#3457dd,#5478f5);
  color: #fff;
  box-shadow: 0 0 0 rgba(72,108,240,0);
}
.btn-navy:hover {
  box-shadow: 0 0 32px rgba(72,108,240,0.55);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.04);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--bg);
  font-weight: 800;
}
.btn-gold:hover {
  box-shadow: 0 0 32px rgba(254,215,0,0.5);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 36px; width: auto; display: block; }
.logo-icon { height: 44px; width: auto; }
.logo-mark { height: 38px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,8,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43,62,149,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 640px; }

.hero-h1 {
  font-size: clamp(64px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 32px;
}
.hero-h1 .line1 { display: block; color: #fff; }
.hero-h1 .line2 {
  display: block;
  background: var(--grad-navy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  width: 60px; height: 1px;
  background: var(--green);
  margin-bottom: 28px;
}

.hero-p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat {
  padding: 0 32px;
  position: relative;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* Diamond decoration */
.hero-diamonds {
  position: relative;
  width: 480px;
  height: 480px;
}

.diamond {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.diamond-lg {
  width: 320px; height: 320px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--grad-navy);
  opacity: 0.85;
}

.diamond-sm {
  width: 160px; height: 160px;
  top: 4%; right: 0;
  background: var(--grad-gold);
  opacity: 0.9;
}

.diamond-xs {
  width: 80px; height: 80px;
  bottom: 8%; left: 4%;
  background: var(--grad-green);
  opacity: 0.85;
}

.diamond-outline {
  position: absolute;
  width: 200px; height: 200px;
  top: 55%; left: 55%;
  transform: translate(-50%, -50%);
  clip-path: none;
  background: transparent;
  border: 1px solid rgba(43,62,149,0.4);
  rotate: 45deg;
  animation: rotateDiamond 20s linear infinite;
}

@keyframes rotateDiamond {
  from { rotate: 45deg; }
  to   { rotate: 405deg; }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--grad-navy);
  padding: 64px 0;
}

.stats-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   SOLUTIONS SECTION (HOME)
   ============================================================ */
.solutions-home {
  padding: 96px 0;
  background: var(--bg);
}

.solutions-home-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  align-items: start;
}

.solutions-home-title-col {
  position: sticky;
  top: 140px;
}

.solutions-home-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.0;
  margin-top: 24px;
}

.solutions-home-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.7;
}

.solutions-cards { display: flex; flex-direction: column; }

.sol-card {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sol-card:first-child { border-top: 1px solid var(--border); }
.sol-card:hover {
  border-left-color: var(--green);
  background: var(--s2);
}

.sol-card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sol-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.sol-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.sol-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s;
}
.sol-card:hover .sol-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   GROWTH FRAMEWORK
   ============================================================ */
.growth-framework {
  background: var(--grad-navy);
  padding: 96px 0;
}

.growth-framework-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.growth-framework-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 48px;
}

.growth-framework-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}

.growth-framework-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.growth-steps { display: flex; flex-direction: column; }

.growth-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.growth-step:hover { background: rgba(255,255,255,0.03); }

.growth-step-num {
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 800;
  color: #fff;
  opacity: 0.06;
  line-height: 1;
  margin-top: -16px;
  user-select: none;
}

.growth-step-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.growth-step-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.growth-step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  padding-top: 8px;
}

/* ============================================================
   INDUSTRIES (HOME PREVIEW)
   ============================================================ */
.industries-section {
  padding: 96px 0;
  background: var(--s1);
}

.industries-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 64px;
}

.industries-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
}

.industries-subtitle {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.industry-card {
  background: var(--s1);
  padding: 48px;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.industry-card:nth-child(1) { border-left-color: var(--navy); }
.industry-card:nth-child(2) { border-left-color: var(--green); }
.industry-card:nth-child(3) { border-left-color: var(--gold); }
.industry-card:nth-child(4) { border-left-color: var(--navy); }
.industry-card:hover { background: var(--s2); }

.industry-card-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.industry-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.industry-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ============================================================
   WHY INNOCHAIN
   ============================================================ */
.why-section {
  padding: 96px 0;
  background: var(--bg);
  border-left: 3px solid var(--green);
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.why-header { margin-bottom: 64px; }

.why-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  max-width: 480px;
  margin-top: 16px;
}

.why-rows { display: flex; flex-direction: column; }

.why-row {
  display: grid;
  grid-template-columns: 48px 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  border-radius: 4px;
}
.why-row:hover {
  background: rgba(51,168,80,0.04);
  box-shadow: inset 0 0 60px rgba(51,168,80,0.04);
}

.why-row-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
  padding-top: 4px;
}

.why-row-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.why-row-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--grad-gold);
  padding: 72px 0;
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.cta-banner-text .eyebrow { color: rgba(6,10,26,0.5); }

.cta-banner-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--bg);
  line-height: 1.0;
}

.cta-banner-subtitle {
  font-size: 18px;
  color: rgba(6,10,26,0.6);
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.65;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-img { height: 30px; width: auto; display: block; }
.footer-logo-icon { height: 36px; width: auto; }
.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-socials { display: flex; gap: 12px; }

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--muted);
}
.social-icon:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer-copy { font-size: 12px; color: var(--muted); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 110px 0 72px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: center;
}

.page-hero-h1 {
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 28px;
  max-width: 560px;
}

/* Stat cards */
.hero-stat-cards { display: flex; flex-direction: column; gap: 16px; }

.hero-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
}
.hero-stat-card:nth-child(2) { border-top-color: var(--green); margin-left: 32px; }
.hero-stat-card:nth-child(3) { border-top-color: var(--gold); margin-left: 16px; }

.hero-stat-card-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-card-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.vision-section {
  background: var(--grad-green);
  padding: 72px 0;
}
.vision-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.vision-text {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--bg);
  line-height: 1.3;
  max-width: 900px;
}
.vision-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(6,10,26,0.5);
  margin-top: 32px;
}

.mission-section {
  background: var(--grad-navy);
  padding: 72px 0;
}
.mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.mission-label-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.mission-text {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.mission-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* Values */
.values-section { padding: 96px 0; background: var(--s1); }
.values-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}
.value-card {
  background: var(--s1);
  padding: 48px 40px;
  border-top: 3px solid transparent;
  transition: background 0.2s;
}
.value-card:nth-child(3n+1) { border-top-color: var(--navy); }
.value-card:nth-child(3n+2) { border-top-color: var(--green); }
.value-card:nth-child(3n+3) { border-top-color: var(--gold); }
.value-card:hover { background: var(--s2); }
.value-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.value-card-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* Philosophy */
.philosophy-section { padding: 96px 0; background: var(--bg); }
.philosophy-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.philosophy-rows { margin-top: 64px; }
.philosophy-row {
  display: grid;
  grid-template-columns: 160px 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.philosophy-num {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.08;
  color: #fff;
  user-select: none;
}
.philosophy-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.philosophy-desc { font-size: 15px; color: var(--muted); line-height: 1.8; padding-top: 6px; }

/* Ecosystem */
.ecosystem-section { padding: 72px 0; background: var(--s2); }
.ecosystem-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.ecosystem-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.eco-pill {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
  cursor: default;
}
.eco-pill:hover { border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.03); }
.eco-pill.accent-navy  { border-color: rgba(43,62,149,0.5);  color: #7b91e8; }
.eco-pill.accent-green { border-color: rgba(51,168,80,0.5);  color: #6dd483; }
.eco-pill.accent-gold  { border-color: rgba(254,215,0,0.5);  color: #ffe347; }

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */
.solution-block {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.solution-block:nth-child(odd)  { background: var(--bg); }
.solution-block:nth-child(even) { background: var(--s1); }

.solution-block-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 52px;
  align-items: center;
}

.solution-block-num-wm {
  position: absolute;
  bottom: -20px; right: 48px;
  font-family: var(--font-head);
  font-size: 200px;
  font-weight: 800;
  color: #fff;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.solution-block-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.solution-block-num-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
}

.solution-block-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.solution-block-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.solution-checklist { display: flex; flex-direction: column; gap: 14px; }
.solution-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.solution-checklist li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background: var(--grad-green);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* Diamond cluster decoration — branded logo mark (green→navy→gold) */
.diamond-cluster {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond-cluster::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  border: 1px solid rgba(43,62,149,0.32);
  border-radius: 26px;
  transform: translate(-50%, -50%);
  animation: rotateDiamond 34s linear infinite;
}
.diamond-cluster::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 212px; height: 212px;
  border: 1px dashed rgba(51,168,80,0.22);
  border-radius: 16px;
  transform: translate(-50%, -50%);
  animation: rotateDiamondRev 46s linear infinite;
}
.diamond-cluster .diamond {
  position: absolute;
  box-shadow: 0 18px 50px -14px rgba(0,0,0,0.5);
}
.dc-lg {
  width: 110px; height: 138px;
  top: 56px; left: calc(50% - 88px);
  background: var(--grad-green) !important;
  box-shadow: 0 18px 50px -14px rgba(51,168,80,0.45);
  animation: floatY1 7s ease-in-out infinite;
}
.dc-md {
  width: 84px; height: 106px;
  top: 152px; left: calc(50% + 26px);
  z-index: 2;
  background: var(--grad-navy) !important;
  box-shadow: 0 18px 50px -14px rgba(43,62,149,0.55);
  animation: floatY2 5.5s ease-in-out infinite;
}
.dc-sm {
  width: 106px; height: 132px;
  top: 210px; left: calc(50% - 58px);
  background: var(--grad-gold) !important;
  box-shadow: 0 18px 50px -14px rgba(254,215,0,0.38);
  animation: floatY3 9s ease-in-out infinite;
}
@keyframes rotateDiamondRev {
  from { rotate: 45deg; }
  to   { rotate: -315deg; }
}
@keyframes floatY1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatY2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(13px); } }
@keyframes floatY3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industries-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.industry-page-card {
  background: var(--bg);
  padding: 56px 48px;
  border-left: 3px solid transparent;
  transition: all 0.25s;
}
.industry-page-card:nth-child(4n+1) { border-left-color: var(--navy); background: var(--s1); }
.industry-page-card:nth-child(4n+2) { border-left-color: var(--green); background: var(--bg); }
.industry-page-card:nth-child(4n+3) { border-left-color: var(--gold); background: var(--bg); }
.industry-page-card:nth-child(4n+4) { border-left-color: var(--navy); background: var(--s1); }
.industry-page-card:hover { background: var(--s2); }

.industry-page-card-icon { font-size: 32px; margin-bottom: 24px; }
.industry-page-card-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.industry-page-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.insight-card {
  background: var(--s1);
  padding: 40px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.insight-card:hover { background: var(--s2); }
.insight-card:nth-child(1) { grid-column: span 2; }

.insight-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.insight-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  flex: 1;
}
.insight-card:nth-child(1) .insight-title { font-size: 36px; }
.insight-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.insight-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted);
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.culture-section { padding: 96px 0; background: var(--s1); }
.culture-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.culture-perks { display: flex; flex-direction: column; gap: 24px; }
.culture-perk {
  padding: 28px 32px;
  border-left: 3px solid var(--green);
  background: rgba(51,168,80,0.04);
}
.culture-perk-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.culture-perk-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.jobs-section { padding: 52px 0 96px; background: var(--bg); }
.jobs-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}
.job-row {
  background: var(--s1);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  transition: background 0.2s;
  cursor: pointer;
}
.job-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
}
.job-status.open {
  color: #6dd483;
  border: 1px solid rgba(51,168,80,0.4);
  background: rgba(51,168,80,0.06);
}
.job-status.filled {
  color: #7a7f9a;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.job-row:hover { background: var(--s2); }
.job-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.job-dept { font-size: 12px; color: var(--muted); margin-top: 4px; }
.job-type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(51,168,80,0.3);
  padding: 4px 12px;
  border-radius: 2px;
}
.job-location { font-size: 13px; color: var(--muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 52px 0 96px; background: var(--bg); }
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-info-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-info-desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.contact-detail-value { font-size: 16px; color: rgba(255,255,255,0.8); }

.contact-form {
  background: var(--s1);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 48px;
}

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--navy); }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7f9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
select.form-control option { background: #11121c; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   SECTION HEADER UTILITIES
   ============================================================ */
.section-header { margin-bottom: 64px; }
.section-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-top: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-diamonds { display: none; }
  .hero-content { max-width: 100%; }
  .solutions-home-inner { grid-template-columns: 1fr; }
  .solutions-home-title-col { position: static; }
  .growth-framework-header { grid-template-columns: 1fr; }
  .growth-step { grid-template-columns: 60px 1fr; }
  .growth-step-desc { grid-column: 2; }
  .industries-header { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-stat-card:nth-child(2),
  .hero-stat-card:nth-child(3) { margin-left: 0; }
  .mission-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-row { grid-template-columns: 100px 1fr; }
  .philosophy-desc { grid-column: 2; }
  .solution-block-inner { grid-template-columns: 1fr; }
  .diamond-cluster { display: none; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card:nth-child(1) { grid-column: span 2; }
  .culture-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 100px 0; }
  .container, .nav-inner { padding: 0 24px; }
  .nav-links, .nav-right .btn-sm { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 52px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat::after { display: none; }
  .hero-stat { padding: 0; }
  .solutions-home-title { font-size: 48px; }
  .growth-framework-title { font-size: 40px; }
  .growth-step-num { font-size: 64px; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-page-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 40px 1fr; }
  .why-row-desc { grid-column: 2; }
  .values-grid { grid-template-columns: 1fr; }
  .philosophy-row { grid-template-columns: 1fr; gap: 8px; }
  .philosophy-num { font-size: 48px; }
  .cta-banner-title { font-size: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card:nth-child(1) { grid-column: span 1; }
  .job-row { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SOLID BAND TEXTURE (applied across all pages)
   ============================================================ */
.stats-band, .cta-banner, .vision-section, .mission-section {
  position: relative;
  overflow: hidden;
}
.stats-band, .vision-section, .mission-section { --band-line: rgba(255,255,255,0.07); }
.cta-banner { --band-line: rgba(6,10,26,0.07); }

.stats-band::before, .cta-banner::before,
.vision-section::before, .mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--band-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--band-line) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at 14% 45%, #000, transparent 62%);
  mask-image: radial-gradient(circle at 14% 45%, #000, transparent 62%);
}
.stats-band::after, .cta-banner::after,
.vision-section::after, .mission-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -70px;
  width: 250px;
  height: 250px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid var(--band-line);
  transform: translateY(-50%);
  rotate: 45deg;
  animation: rotateDiamond 55s linear infinite;
}
.stats-band-inner, .cta-banner-inner,
.vision-inner, .mission-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 64px 0; }
}
