/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #F7F4EE;
  --cream-2:      #EDE9E0;
  --white:        #FFFFFF;
  --dark:         #141410;
  --dark-2:       #1E1E18;
  --green-deep:   #1E3A1F;
  --green:        #2E5E30;
  --green-light:  #4A8A4D;
  --green-pale:   #EBF3EC;
  --ochre:        #C4890A;
  --ochre-light:  #FBF0D9;
  --gray:         #6B6B60;
  --gray-light:   #D8D3C9;
  --border:       #E2DDD4;
  --text:         #2A2A22;
  --text-muted:   #6B6B60;
  --radius:       20px;
  --radius-sm:    12px;
  --transition:   0.38s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -0.02em;
}
em { font-style: italic; color: var(--green-deep); }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-dark {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}
.btn-dark:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,58,31,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-light);
}
.btn-outline:hover {
  border-color: var(--dark);
  background: transparent;
}

/* ── SECTION COMMON ──────────────────────────────────────────────────────── */
.section { padding: 108px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--ochre);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────────────────── */
/* Base: fade + slide up */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Scale in — for cards and visual blocks */
.reveal[data-reveal="scale"] {
  transform: scale(0.93) translateY(20px);
}
.reveal[data-reveal="scale"].visible { transform: scale(1) translateY(0); }

/* Slide from left */
.reveal[data-reveal="left"] {
  transform: translateX(-56px);
}
.reveal[data-reveal="left"].visible { transform: translateX(0); }

/* Slide from right */
.reveal[data-reveal="right"] {
  transform: translateX(56px);
}
.reveal[data-reveal="right"].visible { transform: translateX(0); }

/* Fade only — for subtle elements */
.reveal[data-reveal="fade"] {
  transform: none;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal[data-reveal="fade"].visible { opacity: 1; }

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.nav-logo-accent {
  color: var(--green-deep);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--dark); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 20px 32px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.mob-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.mob-link:hover { background: var(--cream-2); color: var(--dark); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-shape {
  position: absolute;
  top: -120px; right: -180px;
  width: 680px; height: 680px;
  max-width: 90vw;
  background: radial-gradient(circle, #EBF3EC 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-light) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--ochre);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-deep);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-cluster {
  position: relative;
  width: 400px;
  height: 460px;
}

.hero-main-visual {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--green-deep);
}
.hero-ring-1 { width: 220px; height: 220px; opacity: 0.08; animation: spin-slow 20s linear infinite; }
.hero-ring-2 { width: 160px; height: 160px; opacity: 0.12; animation: spin-slow 15s linear infinite reverse; }
.hero-ring-3 { width: 100px; height: 100px; opacity: 0.2; background: var(--green-pale); }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-center-icon {
  position: relative;
  z-index: 2;
  width: 80px; height: 80px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(30,58,31,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  white-space: nowrap;
}
.hsc-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 2px;
}
.hsc-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 4px; color: var(--green-deep); }
.hsc-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.04em; }

.hsc-1 { top: 20px; left: 0; animation: float1 5s ease-in-out infinite; }
.hsc-2 { top: 20px; right: 0; animation: float2 6s ease-in-out infinite; }
.hsc-3 { bottom: 30px; left: 10px; animation: float3 5.5s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-solution-tag {
  position: absolute;
  background: var(--green-deep);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
/* Upcoming — outlined style */
.hero-solution-tag.upcoming {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  opacity: 0.65;
}
/* Left tags — y 124–300, clear of hsc-1 (y:19-99) and hsc-3 (y:347-427) */
.hst-1 { top: 27%; left: -52px; }
.hst-2 { top: 44%; left: -40px; }
.hst-3 { top: 61%; left: -24px; }
/* Right tags — right side is clear at all heights */
.hst-4 { top:  8%; right: -52px; }
.hst-5 { top: 26%; right: -60px; }
.hst-6 { top: 44%; right: -64px; }
.hst-7 { top: 62%; right: -56px; }
/* Upcoming — bottom-right; x > 165 clears hsc-3 */
.hst-8  { bottom: 90px; right: -16px; }
.hst-9  { bottom: 58px; right:  12px; }
.hst-10 { bottom: 26px; right:  44px; }

/* ── ORBIT GRAPHIC ────────────────────────────────────────────────────────── */
.orbit-graphic {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

/* Rings — centred via translate, percentage sizes so they scale with container */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.or-1 { width: 22%;  height: 22%;  border: 2px solid rgba(30,58,31,0.18); background: rgba(30,58,31,0.04); }
.or-2 { width: 48%;  height: 48%;  border: 1.5px solid rgba(30,58,31,0.12); }
.or-3 { width: 77%;  height: 77%;  border: 1.5px solid rgba(30,58,31,0.10); }
.or-4 { width: 97%;  height: 97%;  border: 1.5px dashed rgba(30,58,31,0.07); }

/* Centre ERP mark */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: white;
  box-shadow: 0 0 0 12px rgba(30,58,31,0.07), 0 12px 40px rgba(30,58,31,0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  animation: orbitCenterIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes orbitCenterIn {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.orbit-center-label {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
  line-height: 1;
}

/* Orbit nodes — centred on their ring point via translate */
.orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.orbit-node-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(30,58,31,0.12);
  border-radius: 100px;
  padding: 5px 13px 5px 5px;
  box-shadow: 0 4px 18px rgba(30,58,31,0.07), 0 1px 3px rgba(30,58,31,0.05);
  white-space: nowrap;
  cursor: default;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  opacity: 0;
  animation: orbitNodeIn 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
.orbit-node-inner:hover {
  box-shadow: 0 10px 36px rgba(30,58,31,0.13);
  border-color: rgba(30,58,31,0.28);
  transform: translateY(-3px) scale(1.04);
}
@keyframes orbitNodeIn {
  from { opacity: 0; transform: scale(0.72) translateY(8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* Staggered entrance delays */
.on-1 .orbit-node-inner { animation-delay: 0.65s; }
.on-2 .orbit-node-inner { animation-delay: 0.80s; }
.on-3 .orbit-node-inner { animation-delay: 0.95s; }
.on-4 .orbit-node-inner { animation-delay: 1.10s; }
.on-5 .orbit-node-inner { animation-delay: 1.25s; }
.on-6 .orbit-node-inner { animation-delay: 1.40s; }
.on-7 .orbit-node-inner { animation-delay: 1.55s; }
.on-8 .orbit-node-inner { animation-delay: 1.70s; }

/* Left-side nodes: flip so label points outward */
[data-side="left"] .orbit-node-inner { flex-direction: row-reverse; padding: 5px 5px 5px 13px; }

.orbit-node-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  flex-shrink: 0;
}
.orbit-node-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.015em;
  line-height: 1;
}

/* Upcoming node */
.orbit-node.upcoming .orbit-node-inner {
  background: #fff;
  border-style: dashed;
  border-color: rgba(30,58,31,0.22);
  box-shadow: none;
}
.orbit-node.upcoming .orbit-node-icon { opacity: 0.6; }
.orbit-node.upcoming .orbit-node-label { color: var(--green-deep); opacity: 0.65; }
.soon-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  background: var(--green-pale);
  border-radius: 100px;
  padding: 1px 5px;
  margin-left: 3px;
  vertical-align: middle;
  opacity: 0.75;
}

/* Node positions — % of 480px container centred on ring points
   Outer ring (r=185px / 38.5%): 6 nodes at 60° intervals from top (-90°)
   Mid ring   (r=115px / 24%): 2 nodes at 0° and 180°              */
.on-1 { top: 11.5%; left: 50%;    } /* 270° outer — top centre     */
.on-2 { top: 30.7%; left: 83.4%;  } /* 330° outer — upper-right    */
.on-3 { top: 69.3%; left: 83.4%;  } /*  30° outer — lower-right    */
.on-4 { top: 88.5%; left: 50%;    } /*  90° outer — bottom centre  */
.on-5 { top: 69.3%; left: 16.6%;  } /* 150° outer — lower-left     */
.on-6 { top: 30.7%; left: 16.6%;  } /* 210° outer — upper-left     */
.on-7 { top: 50%;   left: 74%;    } /*   0° mid   — mid-right      */
.on-8 { top: 50%;   left: 26%;    } /* 180° mid   — mid-left       */

/* ── ORBIT NODE FLOAT ANIMATIONS ─────────────────────────────────────────── */
/* Three amplitude variants so nodes bob at different heights                 */
@keyframes orbit-float-sm {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%      { transform: translate(-50%, -50%) translateY(-5px); }
}
@keyframes orbit-float-md {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%      { transform: translate(-50%, -50%) translateY(-8px); }
}
@keyframes orbit-float-lg {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%      { transform: translate(-50%, -50%) translateY(-11px); }
}

/* Staggered float — each node uses a different duration + delay so they
   never sync up. Delays start after the entrance animation finishes.         */
.on-1 { animation: orbit-float-md 4.2s ease-in-out 1.30s infinite; }
.on-2 { animation: orbit-float-sm 5.0s ease-in-out 1.50s infinite; }
.on-3 { animation: orbit-float-lg 4.7s ease-in-out 1.80s infinite; }
.on-4 { animation: orbit-float-md 5.4s ease-in-out 2.00s infinite; }
.on-5 { animation: orbit-float-sm 4.0s ease-in-out 1.90s infinite; }
.on-6 { animation: orbit-float-lg 5.8s ease-in-out 1.60s infinite; }
.on-7 { animation: orbit-float-md 4.5s ease-in-out 1.70s infinite; }
.on-8 { animation: orbit-float-sm 5.2s ease-in-out 2.10s infinite; }

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray-light), transparent);
}
@keyframes scroll-bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}

/* ── MARQUEE STRIP ────────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--green-deep);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 20px;
}
.marquee-track .sep {
  color: var(--ochre);
  padding: 0 4px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SOLUTIONS ────────────────────────────────────────────────────────────── */
.solutions { background: var(--white); }

.section-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sol-card {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition), border-color var(--transition);
}
.sol-card:hover {
  background: var(--cream);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(30,58,31,0.10);
  border-color: rgba(46,94,48,0.25);
  z-index: 2;
}

.sol-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream-2);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.sol-icon-wrap {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sol-green { background: var(--green-pale); color: var(--green-deep); }
.sol-ochre { background: var(--ochre-light); color: var(--ochre); }

.sol-badge {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--green-deep);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.sol-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.sol-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.sol-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sol-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.sol-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ochre);
}

.sol-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  transition: letter-spacing var(--transition);
}
.sol-link:hover { letter-spacing: 0.06em; }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about { background: var(--cream); padding: 0; }
.about-band { padding: 108px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text .btn { margin-top: 8px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.pillar {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              padding-left var(--transition);
}
.pillar:last-child { border-bottom: none; }
.pillar:hover {
  background: var(--green-pale);
  border-left-color: var(--green-deep);
  padding-left: 28px;
}

.pillar-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ochre);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.pillar h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── STATS ────────────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--green-deep);
  padding: 70px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num em {
  font-size: 2rem;
  color: var(--ochre);
  font-style: normal;
}
.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.stat-div {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ── WHY US ───────────────────────────────────────────────────────────────── */
.why { background: var(--white); }

.why-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.why-header .section-tag { justify-content: center; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition), border-color var(--transition);
}
.why-item:hover {
  background: var(--cream);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30,58,31,0.09);
  border-color: rgba(46,94,48,0.2);
  z-index: 2;
}

.why-icon {
  width: 42px; height: 42px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition), color var(--transition),
              transform var(--transition);
}
.why-item:hover .why-icon {
  background: var(--green-deep);
  color: white;
  transform: scale(1.08);
}

.why-item h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── PROCESS ──────────────────────────────────────────────────────────────── */
.process { background: var(--cream); }

.process-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 72px;
}
.process-header .section-tag { justify-content: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--ochre), var(--green-light));
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ps-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: white;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 7px var(--border);
}

.ps-line {
  width: 1px; height: 28px;
  background: var(--border);
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: flex-start;
}

.contact-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-left .section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.cd-row { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cd-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.cd-val { font-size: 0.9rem; color: var(--text); font-weight: 500; line-height: 1.6; }

.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  padding: 11px 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }
.form-group select { color: var(--text); cursor: pointer; }
.form-group select option { background: white; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(30,58,31,0.08);
}

.form-success {
  background: var(--green-pale);
  border: 1px solid rgba(46,94,48,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--green-deep);
  font-weight: 600;
}
.hidden { display: none !important; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .nav-logo-text { font-size: 1.1rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li,
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── FEATURE SPOTLIGHT (WhatsApp-style alternating rows) ─────────────────── */
.spotlight { background: var(--white); padding: 0; }

.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.spotlight-row:last-child { border-bottom: none; }
.spotlight-row.reverse { direction: rtl; }
.spotlight-row.reverse > * { direction: ltr; }

.spotlight-text {
  padding: 80px 72px;
}
.spotlight-text .section-tag { margin-bottom: 20px; }
.spotlight-text h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.spotlight-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 420px;
}
.spotlight-feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.spotlight-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.spotlight-feat-icon {
  width: 22px; height: 22px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
  margin-top: 1px;
}

.spotlight-visual {
  background: var(--cream-2);
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.spotlight-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(46,94,48,0.08) 0%, transparent 70%);
}

.spotlight-mockup {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  width: 100%;
  max-width: 340px;
}
.mockup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(30,58,31,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mockup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,58,31,0.12);
}
.mockup-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.mockup-card-val {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}
.mockup-card-val span { font-size: 0.85rem; color: var(--green); margin-left: 6px; }
.mockup-bar {
  height: 6px;
  background: var(--cream-2);
  border-radius: 100px;
  margin-top: 10px;
  overflow: hidden;
}
.mockup-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-light));
}
.mockup-row {
  display: flex;
  gap: 10px;
}
.mockup-row .mockup-card { flex: 1; }
.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 8px;
}
.badge-green { background: var(--green-pale); color: var(--green-deep); }
.badge-ochre { background: var(--ochre-light); color: var(--ochre); }

/* Hero gradient accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  pointer-events: none;
}

/* Gradient CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-deep) 0%, #2E5E30 50%, #1a4a3a 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,137,10,0.15) 0%, transparent 70%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner .section-tag { justify-content: center; color: rgba(255,255,255,0.7); }
.cta-inner .section-tag::before { background: var(--ochre); }
.cta-inner h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-inner h2 em { color: var(--ochre); font-style: italic; }
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-light {
  background: white;
  color: var(--green-deep);
  border-color: white;
}
.btn-light:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .about-inner { gap: 56px; }
  .contact-inner { gap: 56px; }
  .footer-inner { gap: 48px; }
  .spotlight-text { padding: 64px 48px; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 520px; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-visual { margin-top: 32px; display: flex; justify-content: center; overflow: visible; }
  .hero-card-cluster { width: 320px; height: 360px; }
  .orbit-graphic { width: 400px; height: 400px; }
  .orbit-center { width: 72px; height: 72px; }
  .orbit-node-inner { padding: 4px 11px 4px 4px; gap: 7px; }
  [data-side="left"] .orbit-node-inner { padding: 4px 4px 4px 11px; }
  .orbit-node-icon { width: 26px; height: 26px; }

  /* Grids */
  .solutions-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }

  /* Spotlight — stack visual above text */
  .spotlight-row,
  .spotlight-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .spotlight-row.reverse .spotlight-visual { order: -1; }
  .spotlight-visual { min-height: 340px; }
  .spotlight-text { padding: 52px 32px; }
  .spotlight-text p { max-width: 100%; }
}

@media (max-width: 640px) {
  /* Spacing */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Cards */
  .sol-card { padding: 28px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links .footer-col:last-child { grid-column: 1 / -1; }

  /* Hero */
  .hero-card-cluster { width: 280px; height: 320px; }
  .orbit-graphic { width: 320px; height: 320px; }
  .orbit-center { width: 60px; height: 60px; gap: 3px; }
  .orbit-center svg { width: 20px; height: 20px; }
  .orbit-node-label { font-size: 0.64rem; }
  .orbit-node-inner { padding: 3px 9px 3px 3px; gap: 5px; }
  [data-side="left"] .orbit-node-inner { padding: 3px 3px 3px 9px; }
  .orbit-node-icon { width: 22px; height: 22px; }

  /* Stats */
  .stats-inner { flex-direction: column; gap: 32px; align-items: center; }
  .stat-div { display: none; }

  /* Spotlight */
  .spotlight-visual { min-height: 280px; }
  .spotlight-text { padding: 40px 20px; }
  .spotlight-mockup { padding: 24px 20px; max-width: 100%; }
  .mockup-card-val { font-size: 1.2rem; }

  /* CTA band */
  .cta-band { padding: 64px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* About */
  .about-band { padding: 64px 0; }
  .about-pillars { margin-top: 0; }
}
