/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --ink:    #0f2f24;
  --ink2:   #162e22;
  --ink3:   #1a4a3a;
  --em:     #2f7560;
  --em2:    #245c49;
  --em3:    #3a8f72;
  --gold:   #9a7b3a;
  --gold2:  #c4a05a;
  --gold3:  #e8c87a;
  --cream:  #f8f6f1;
  --cream2: #f2efe8;
  --white:  #ffffff;
  --text:   #1a1714;
  --muted:  #5a5248;
  --bdr:    rgba(26,74,58,.12);
  --bdr2:   rgba(26,74,58,.20);
  --sh-sm:  0 1px 4px rgba(26,74,58,.06), 0 2px 12px rgba(0,0,0,.04);
  --sh-md:  0 4px 24px rgba(26,74,58,.10), 0 1px 4px rgba(0,0,0,.05);
  --sh-lg:  0 16px 48px rgba(26,74,58,.14), 0 4px 16px rgba(0,0,0,.06);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', ui-sans-serif, system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative; z-index: 1;
}

/* ── PAGE LOADER ────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a1f17;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--cream); letter-spacing: .3px;
  opacity: 0; animation: loaderFadeIn .8s .3s forwards;
}
.loader-logo span { color: var(--gold2); font-style: italic; }

.loader-bar-wrap {
  width: 180px; height: 2px;
  background: rgba(196,160,90,.12);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0; animation: loaderFadeIn .8s .5s forwards;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--em3), var(--gold2));
  border-radius: 2px;
  animation: loaderProgress 1.4s .6s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loaderProgress { to { width: 100%; } }
@keyframes loaderFadeIn { to { opacity: 1; } }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(15, 47, 36, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,160,90,.18);
  padding: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.navbar.hidden { transform: translateY(-100%); }

.navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,160,90,.45) 30%, rgba(196,160,90,.65) 50%, rgba(196,160,90,.45) 70%, transparent);
}

.nav-container {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 58px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--cream); letter-spacing: .3px;
  cursor: pointer;
}
.logo span { color: var(--gold2); font-style: italic; }

.nav-links {
  list-style: none; display: flex;
  align-items: center; gap: 32px;
}
.nav-links a {
  text-decoration: none; font-size: .9rem;
  font-weight: 400; color: rgba(240,236,228,.65);
  letter-spacing: .3px; transition: color .2s;
  position: relative;
}
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold2);
  transition: width .3s ease;
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold2); }

.btn-nav {
  padding: 9px 22px; border-radius: 8px;
  font-size: .88rem; font-weight: 600;
  font-family: 'Jost', sans-serif;
  background: linear-gradient(135deg, var(--em3), var(--em));
  color: var(--white) !important;
  border: 1px solid rgba(196,160,90,.25);
  box-shadow: 0 2px 14px rgba(47,117,96,.3);
  transition: all .25s; cursor: pointer;
  text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  opacity: 0; transition: opacity .25s;
}
.btn-nav:hover::before { opacity: 1; }
.btn-nav:hover {
  box-shadow: 0 6px 24px rgba(47,117,96,.5);
  transform: translateY(-2px);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(175deg, #0f2f24 0%, #162e22 40%, #112619 100%);
  position: relative; overflow: hidden;
  padding: 110px 0 100px;
  min-height: 100vh; display: flex; align-items: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 8% 12%, rgba(26,74,58,.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 92% 88%, rgba(154,123,58,.15) 0%, transparent 55%);
}

.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold2) 50%, var(--gold) 75%, transparent);
  box-shadow: 0 0 20px rgba(196,160,90,.5);
  animation: goldLineGlow 3s ease-in-out infinite;
}
@keyframes goldLineGlow {
  0%,100% { box-shadow: 0 0 12px rgba(196,160,90,.4); }
  50%      { box-shadow: 0 0 28px rgba(196,160,90,.7); }
}

/* Particle canvas */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: .55;
}

/* Geometric circles */
.hero-geo {
  position: absolute; right: -60px; bottom: -60px;
  width: 580px; height: 580px;
  opacity: .07;
  animation: geoRotate 40s linear infinite;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23c4a05a' stroke-width='.6'/%3E%3Ccircle cx='100' cy='100' r='65' fill='none' stroke='%23c4a05a' stroke-width='.6'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23c4a05a' stroke-width='.6'/%3E%3Cline x1='10' y1='100' x2='190' y2='100' stroke='%23c4a05a' stroke-width='.3'/%3E%3Cline x1='100' y1='10' x2='100' y2='190' stroke='%23c4a05a' stroke-width='.3'/%3E%3C/svg%3E") center / contain no-repeat;
}
@keyframes geoRotate { to { transform: rotate(360deg); } }

.hero-geo-2 {
  position: absolute; left: -120px; top: 10%;
  width: 380px; height: 380px;
  opacity: .04;
  animation: geoRotate 60s linear infinite reverse;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpolygon points='100,5 195,155 5,155' fill='none' stroke='%23c4a05a' stroke-width='.6'/%3E%3Cpolygon points='100,35 170,145 30,145' fill='none' stroke='%23c4a05a' stroke-width='.4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

/* Animated badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px 6px 10px; border-radius: 30px;
  background: rgba(196,160,90,.10);
  border: 1px solid rgba(196,160,90,.28);
  font-size: .78rem; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 28px;
  animation: fadeSlideUp .8s .3s both;
  position: relative; overflow: hidden;
}
.hero-badge::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(196,160,90,.08) 50%, transparent 100%);
  animation: shimmer 3s 2s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold3);
  box-shadow: 0 0 6px rgba(232,200,122,.8);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500; color: rgba(240,236,228,.5);
  line-height: 1.1; letter-spacing: -.5px;
  font-style: italic;
  animation: fadeSlideUp .8s .45s both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600; color: var(--gold2);
  line-height: 1.08; letter-spacing: -.5px;
  margin-bottom: 22px;
  animation: fadeSlideUp .8s .6s both;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 50%, var(--gold2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideUp .8s .6s both, textShimmer 4s 1.5s ease-in-out infinite;
}
@keyframes textShimmer {
  0%,100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(240,236,228,.6);
  max-width: 500px; line-height: 1.8;
  margin-bottom: 38px;
  animation: fadeSlideUp .8s .75s both;
}

.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeSlideUp .8s .9s both;
}

.btn-primary-hero {
  padding: 15px 32px; border-radius: 10px;
  font-size: 1rem; font-weight: 600;
  font-family: 'Jost', sans-serif;
  background: linear-gradient(135deg, var(--em3), var(--em));
  color: var(--white);
  border: 1px solid rgba(196,160,90,.2);
  box-shadow: 0 4px 24px rgba(47,117,96,.35);
  text-decoration: none; transition: all .3s cubic-bezier(.4,0,.2,1);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-primary-hero:hover::before { opacity: 1; }
.btn-primary-hero svg { transition: transform .3s ease; }
.btn-primary-hero:hover svg { transform: translateX(4px); }
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(47,117,96,.5);
}

.btn-ghost-hero {
  padding: 15px 28px; border-radius: 10px;
  font-size: 1rem; font-weight: 500;
  font-family: 'Jost', sans-serif;
  background: transparent; color: rgba(240,236,228,.75);
  border: 1px solid rgba(240,236,228,.2);
  text-decoration: none; transition: all .3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost-hero:hover {
  border-color: rgba(196,160,90,.5);
  color: var(--gold2);
  background: rgba(196,160,90,.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  animation: fadeSlideUp .8s 1.05s both;
}
.hero-stat {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(240,236,228,.5);
}
.stat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--em3);
  box-shadow: 0 0 5px rgba(58,143,114,.7);
}

/* Hero floating dashboard visual */
.hero-visual {
  position: relative; z-index: 1;
  animation: fadeSlideLeft .9s .5s both;
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-dashboard {
  background: rgba(22, 55, 40, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196,160,90,.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(196,160,90,.08);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform .5s ease;
  position: relative; overflow: hidden;
}
.hero-dashboard:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.hero-dashboard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,160,90,.5), transparent);
}

.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.dash-title {
  font-size: .75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(196,160,90,.7);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.dash-dot:nth-child(1) { background: #ff5f57; }
.dash-dot:nth-child(2) { background: #ffbd2e; }
.dash-dot:nth-child(3) { background: #28ca41; }

.dash-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; margin-bottom: 18px;
}
.dash-stat {
  background: rgba(26,74,58,.3);
  border: 1px solid rgba(196,160,90,.1);
  border-radius: 10px; padding: 12px 14px;
  text-align: center;
}
.dash-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold2); line-height: 1;
  margin-bottom: 3px;
  counter-reset: num var(--target);
}
.dash-stat-lbl {
  font-size: .68rem; color: rgba(240,236,228,.4);
  text-transform: uppercase; letter-spacing: 1px;
}

.dash-chart {
  background: rgba(15,47,36,.5);
  border: 1px solid rgba(196,160,90,.08);
  border-radius: 10px; padding: 14px;
  margin-bottom: 14px;
}
.dash-chart-label {
  font-size: .7rem; color: rgba(196,160,90,.6);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.dash-bars {
  display: flex; align-items: flex-end;
  gap: 6px; height: 52px;
}
.dash-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--em3), var(--em2));
  opacity: .6; transition: opacity .3s;
  animation: barGrow 1s ease-out forwards;
  animation-delay: var(--delay);
  transform-origin: bottom;
  transform: scaleY(0);
}
.dash-bar:hover { opacity: 1; }
.dash-bar.gold {
  background: linear-gradient(180deg, var(--gold3), var(--gold));
}
@keyframes barGrow {
  to { transform: scaleY(1); }
}

.dash-activity {
  display: flex; flex-direction: column; gap: 7px;
}
.dash-act-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: rgba(26,74,58,.2);
  border-radius: 8px; border: 1px solid rgba(196,160,90,.06);
  font-size: .73rem; color: rgba(240,236,228,.55);
  animation: slideInRight .5s ease-out both;
}
.dash-act-item:nth-child(1) { animation-delay: 1.2s; }
.dash-act-item:nth-child(2) { animation-delay: 1.5s; }
.dash-act-item:nth-child(3) { animation-delay: 1.8s; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.act-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}
.act-dot.green { background: #28ca41; box-shadow: 0 0 5px rgba(40,202,65,.5); }
.act-dot.gold  { background: var(--gold2); box-shadow: 0 0 5px rgba(196,160,90,.5); }
.act-dot.blue  { background: #60a5fa; box-shadow: 0 0 5px rgba(96,165,250,.5); }

/* Floating cards around dashboard */
.float-card {
  position: absolute;
  background: rgba(15,47,36,.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196,160,90,.2);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: .75rem; color: rgba(240,236,228,.8);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.float-card-1 {
  top: -18px; right: -20px;
  animation: floatUpDown 3s ease-in-out infinite, fadeSlideUp .6s 1.3s both;
}
.float-card-2 {
  bottom: 40px; left: -30px;
  animation: floatUpDown 4s 1s ease-in-out infinite, fadeSlideUp .6s 1.6s both;
}
@keyframes floatUpDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(196,160,90,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}

/* ── KEYFRAMES (shared) ─────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── METRICS STRIP ──────────────────────────────────────────── */
.metrics {
  background: var(--white);
  border-bottom: 1px solid var(--bdr);
  box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
}
.metrics::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--em3), var(--gold2), var(--em));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric-item {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid var(--bdr);
  transition: background .3s, transform .3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.metric-item::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(47,117,96,.05), transparent);
  opacity: 0; transition: opacity .4s;
}
.metric-item:hover::after { opacity: 1; }
.metric-item:last-child { border-right: none; }
.metric-item:hover { background: var(--cream2); }

.metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 600;
  color: var(--ink3); line-height: 1; margin-bottom: 6px;
  transition: color .3s;
}
.metric-item:hover .metric-num { color: var(--em); }
.metric-lbl {
  font-size: .82rem; font-weight: 400;
  color: var(--muted); letter-spacing: .5px;
}

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--em2); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::after {
  content: ''; flex: 1; max-width: 48px; height: 1px;
  background: linear-gradient(to right, var(--em2), transparent);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500; color: var(--ink3);
  line-height: 1.2; margin-bottom: 6px;
}
.section-sub {
  font-size: .95rem; color: var(--muted);
  font-weight: 300; max-width: 480px;
}

/* ── SOLUTIONS ──────────────────────────────────────────────── */
.solutions {
  padding: 100px 0;
  background: var(--cream); position: relative;
}
.solutions::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bdr2), transparent);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}

.sol-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 16px; padding: 32px 26px;
  box-shadow: var(--sh-sm);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
  cursor: default;
}
.sol-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--em), var(--gold2), transparent);
  opacity: 0; transition: opacity .35s;
}
.sol-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(47,117,96,.04), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.sol-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--sh-lg);
  border-color: var(--bdr2);
}
.sol-card:hover::before { opacity: 1; }
.sol-card:hover::after  { opacity: 1; }

.sol-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
  background: var(--cream2); border: 1px solid var(--bdr);
  transition: transform .35s, box-shadow .35s;
  position: relative; z-index: 1;
}
.sol-card:hover .sol-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(26,74,58,.15);
}
.sol-icon.green  { background: rgba(26,74,58,.08); border-color: rgba(26,74,58,.15); }
.sol-icon.teal   { background: rgba(47,117,96,.08); border-color: rgba(47,117,96,.15); }
.sol-icon.gold   { background: rgba(154,123,58,.08); border-color: rgba(154,123,58,.15); }
.sol-icon.coral  { background: rgba(200,90,80,.06); border-color: rgba(200,90,80,.12); }
.sol-icon.purple { background: rgba(100,80,160,.06); border-color: rgba(100,80,160,.12); }
.sol-icon.blue   { background: rgba(60,100,180,.06); border-color: rgba(60,100,180,.12); }

.sol-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
  position: relative; z-index: 1;
}
.sol-card p {
  font-size: .86rem; color: var(--muted);
  font-weight: 300; position: relative; z-index: 1;
}

/* ── HOW WE WORK ────────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: linear-gradient(175deg, #0f2f24 0%, #162e22 60%, #112619 100%);
  position: relative; overflow: hidden;
}
.how::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(154,123,58,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(26,74,58,.15) 0%, transparent 60%);
}
.how::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,160,90,.3) 50%, transparent);
}

/* Animated grid lines */
.how-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.how-grid-lines::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,160,90,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,160,90,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

.how .section-eyebrow { color: rgba(196,160,90,.7); }
.how .section-eyebrow::after { background: linear-gradient(to right, rgba(196,160,90,.5), transparent); }

.how-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500; color: rgba(240,236,228,.85);
  margin-bottom: 60px; max-width: 480px; line-height: 1.25;
}

.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; position: relative; z-index: 1;
}

.how-step {
  padding: 36px 26px 40px;
  border-top: 1px solid rgba(196,160,90,.15);
  position: relative;
  transition: background .3s;
  cursor: default;
}
.how-step:hover { background: rgba(196,160,90,.04); }

.how-step::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(to right, var(--gold2), var(--gold3));
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.how-step:hover::before { width: 100%; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: .9rem; font-weight: 400;
  color: rgba(196,160,90,.5); letter-spacing: 2px;
  margin-bottom: 16px;
}
.step-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(196,160,90,.1);
  border: 1px solid rgba(196,160,90,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 18px;
  transition: transform .3s, background .3s;
}
.how-step:hover .step-icon {
  transform: scale(1.15);
  background: rgba(196,160,90,.18);
}
.how-step h4 {
  font-family: 'Jost', sans-serif; font-size: 1rem;
  font-weight: 600; color: var(--gold2); margin-bottom: 10px;
}
.how-step p {
  font-size: .84rem; font-weight: 300;
  color: rgba(240,236,228,.45); line-height: 1.75;
}

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.industries {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.ind-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 36px 0 28px;
}
.ind-tab {
  padding: 10px 22px; border-radius: 30px;
  border: 1px solid var(--bdr2);
  background: var(--white);
  font-size: .87rem; font-weight: 500;
  color: var(--muted); cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  font-family: 'Jost', sans-serif;
  position: relative; overflow: hidden;
}
.ind-tab::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--em3), var(--em));
  opacity: 0; transition: opacity .3s;
}
.ind-tab:hover { border-color: var(--em); color: var(--em); transform: translateY(-1px); }
.ind-tab.active {
  background: var(--ink3); border-color: var(--ink3);
  color: var(--white); box-shadow: 0 4px 18px rgba(26,74,58,.3);
  transform: translateY(-1px);
}

.ind-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 20px; padding: 40px 44px;
  box-shadow: var(--sh-md);
  animation: panelReveal .4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.ind-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--em3), var(--gold2), var(--em));
}
.ind-panel.active { display: block; }
@keyframes panelReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ind-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--ink3); margin-bottom: 14px;
}
.ind-panel p {
  font-size: .97rem; color: var(--muted);
  font-weight: 300; max-width: 620px;
  line-height: 1.85; margin-bottom: 26px;
}
.ind-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ind-tag {
  padding: 7px 16px; border-radius: 8px;
  border: 1px solid var(--bdr2);
  font-size: .82rem; color: var(--em2);
  background: rgba(26,74,58,.05); font-weight: 500;
  transition: all .2s;
}
.ind-tag:hover {
  background: rgba(26,74,58,.1);
  border-color: var(--em);
  transform: translateY(-1px);
}

/* ── TESTIMONIALS (new) ─────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(47,117,96,.12), transparent),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(154,123,58,.08), transparent);
}
.testimonials::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,160,90,.35), transparent);
}

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.testi-card {
  background: rgba(26,74,58,.2);
  border: 1px solid rgba(196,160,90,.12);
  border-radius: 16px; padding: 28px;
  position: relative; overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.testi-card::before {
  content: '"'; position: absolute; top: 12px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: rgba(196,160,90,.08);
  line-height: 1; font-weight: 700;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,160,90,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testi-star { color: var(--gold2); font-size: .9rem; }
.testi-text {
  font-size: .92rem; color: rgba(240,236,228,.65);
  line-height: 1.85; font-weight: 300; margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--em3), var(--em2));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--white);
  border: 2px solid rgba(196,160,90,.2);
}
.testi-name {
  font-size: .88rem; font-weight: 600;
  color: rgba(240,236,228,.85); margin-bottom: 2px;
}
.testi-role { font-size: .78rem; color: rgba(196,160,90,.6); }

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f2f24 0%, #162e22 50%, #1a4a3a 100%);
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(196,160,90,.07) 0%, transparent 70%);
}
.cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,160,90,.4) 50%, transparent);
}

/* CTA particle orbs */
.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(60px);
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: rgba(47,117,96,.12);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: rgba(154,123,58,.08);
  bottom: -80px; right: -80px;
  animation: orbFloat 10s 2s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(20px,-20px); }
  66%      { transform: translate(-10px,15px); }
}

.cta-orn {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold2); font-size: .72rem; letter-spacing: 3.5px;
  text-transform: uppercase; font-weight: 500; margin-bottom: 18px;
}
.cta-orn::before, .cta-orn::after {
  content: ''; height: 1px; width: 40px;
  background: linear-gradient(to right, transparent, var(--gold2));
}
.cta-orn::after { background: linear-gradient(to left, transparent, var(--gold2)); }

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500; color: rgba(240,236,228,.9);
  margin-bottom: 12px; position: relative; z-index: 1;
}
.cta-section p {
  font-size: 1rem; color: rgba(240,236,228,.5);
  font-weight: 300; margin-bottom: 42px;
  position: relative; z-index: 1;
}
.cta-section .btn-primary-hero { position: relative; z-index: 1; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #0a1f17;
  border-top: 1px solid rgba(196,160,90,.12);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: rgba(240,236,228,.5);
}
.footer-logo span { color: rgba(196,160,90,.7); font-style: italic; }
.footer p { font-size: .8rem; color: rgba(240,236,228,.25); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a {
  font-size: .8rem; color: rgba(240,236,228,.3);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--gold2); }

/* ── SCROLL TO TOP ──────────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink3);
  border: 1px solid rgba(196,160,90,.2);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold2);
  opacity: 0; visibility: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  font-size: 1rem;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover {
  transform: translateY(-3px);
  background: var(--em2);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 52px; min-height: auto; }
  .hero-eyebrow { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-item { border-right: none; border-bottom: 1px solid var(--bdr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { display: none; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .ind-panel { padding: 28px 22px; }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
