:root {
  --teal-dark:  #285C4D;
  --teal-mid:   #50A684;
  --col-2:      #1d5c52;  /* services column 2 accent */
  --col-3:      #3d7060;  /* services column 3 accent */
  --flow-2:     #2ca090;  /* flow badge / connector accent 2 */
  --flow-3:     #5aae8e;  /* flow badge / connector accent 3 */
  --hover-dark: #1e4a3d;  /* primary button hover */
  --dark:       #212322;
  --text:       #2c3e38;
  --muted:      #7a9e94;
  --white:      #ffffff;
  --border:     #d0e8e2;
  --section-bg: #f7fcfb;
  --light-bg:   #f0f8f5;
}

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

html, body { width: 100%; min-height: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: 'GULIM', sans-serif;
  color: var(--text);
  background: #f0f4f3;
}

/* ===== NAV ===== */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 38px; height: 38px; }

.logo-image { height: 44px; width: auto; display: block; }

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #556b65;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 6px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--teal-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal-dark); }

.nav-links a:not([href=""]):hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-links a[href=""] {
  border: 2px solid rgba(80, 166, 132, 0.6);
  border-radius: 4px;
  padding: 6px 12px;
  text-align: center;
  background-color: var(--white);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.nav-links a[href=""]::after { display: none; }

.nav-links a[href=""]:hover {
  background-color: var(--teal-mid);
  color: var(--white);
  border-color: rgba(40, 92, 77, 0.8);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  border: none;
}

.btn-primary:hover { background: var(--hover-dark); }

.btn-secondary {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
  padding: 12px 26px;
}

.btn-secondary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #e8f5f1 0%, #c8e8e0 40%, #a8d8cf 100%);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 60px 48px;
}

.animated-bg-host { isolation: isolate; }

/* Sections with animated bg-canvas overlay */
.hero,
.services-analytics-wrap,
.about-section {
  position: relative;
  overflow: hidden;
}

.services-analytics-wrap > *:not(.bg-canvas),
.about-section > *:not(.bg-canvas) {
  position: relative;
  z-index: 2;
}

.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero .bg-canvas                 { opacity: 0.46; }
.services-analytics-wrap .bg-canvas { opacity: 0.42; }
.about-section .bg-canvas        { position: absolute; z-index: 1; opacity: 0.36; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 40%;
}

.hero h1 {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 95%;
}

.hero p {
  font-size: clamp(16px, 1.35vw, 20px);
  color: #3d5c53;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 90%;
}

.hero .btn-primary {
  font-size: clamp(15px, 1.05vw, 18px);
  padding: 14px 30px;
  min-width: min(56%, 260px);
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-content { width: 56%; }
  .hero .btn-primary { min-width: min(72%, 300px); }
}

@media (max-width: 768px) {
  .hero { padding: 48px 24px; }
  .hero-content { width: 100%; }
  .hero h1, .hero p { max-width: 100%; }
  .hero .btn-primary { width: 100%; min-width: 0; padding: 16px 24px; }
}

/* ===== SECTIONS ===== */
.page-wrapper { max-width: 900px; margin: 0 auto; }

section[id] { scroll-margin-top: 84px; }

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

/* ===== OUR SERVICES ===== */
.services-analytics-wrap {
  background: linear-gradient(170deg, #eef8f5 0%, #d4ecE6 28%, #b6dbd2 65%, #9ecdc3 100%);
  padding: 0 48px 28px;
}

.svc-title-area { padding-top: 48px; }

/* Flow bar */
.svc-flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  row-gap: 12px;
}

.svc-flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.svc-flow-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.22);
}

.svc-badge--1 { background: var(--teal-mid); }
.svc-badge--2 { background: var(--flow-2); }
.svc-badge--3 { background: var(--flow-3); }

.svc-flow-info { display: flex; flex-direction: column; }

.svc-flow-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.svc-flow-info span {
  font-size: 11px;
  color: #5a7a70;
  font-weight: 500;
}

.svc-flow-connector {
  flex: 1;
  max-width: 80px;
  min-width: 24px;
  height: 2px;
  position: relative;
  margin: 0 10px;
  align-self: center;
}

.svc-flow-connector::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.svc-connector--12 { background: linear-gradient(to right, var(--teal-mid), var(--flow-2)); }
.svc-connector--12::after { border-left: 8px solid var(--flow-2); }
.svc-connector--23 { background: linear-gradient(to right, var(--flow-2), var(--flow-3)); }
.svc-connector--23::after { border-left: 8px solid var(--flow-3); }

/* Three columns */
.svc-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.svc-col {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(20,40,30,0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.svc-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20,40,30,0.2);
}

/* Column headers */
.svc-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
}

.svc-col--1 .svc-col-head { background: var(--teal-dark); }
.svc-col--2 .svc-col-head { background: var(--col-2); }
.svc-col--3 .svc-col-head { background: var(--col-3); }

.svc-col-num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  flex-shrink: 0;
}

.svc-col-name {
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.svc-col-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* Column body */
.svc-col-body {
  flex: 1;
  padding: 20px 20px 18px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-col-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #4a5e57;
}

/* Tracks */
.svc-tracks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.svc-track {
  border-radius: 8px;
  padding: 11px 13px;
  border: 1px solid;
}

.svc-col--1 .svc-track { background: #eef7f3; border-color: rgba(40,92,77,0.15); }
.svc-col--2 .svc-track { background: #edf3fc; border-color: rgba(29,92,82,0.15); }
.svc-col--3 .svc-track { background: #f8f5ff; border-color: rgba(74,40,128,0.15); }

.svc-track-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svc-col--1 .svc-track-label { color: var(--teal-dark); }
.svc-col--2 .svc-track-label { color: var(--col-2); }
.svc-col--3 .svc-track-label { color: var(--col-3); }

.svc-track-list { list-style: none; }

.svc-track-list li {
  font-size: 11.5px;
  color: #4b5e70;
  padding-left: 12px;
  position: relative;
  margin-bottom: 5px;
  line-height: 1.4;
}

.svc-track-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.svc-col--1 .svc-track-list li::before { color: var(--teal-mid); }
.svc-col--2 .svc-track-list li::before { color: var(--flow-2); }
.svc-col--3 .svc-track-list li::before { color: var(--flow-3); }

/* Outcome box */
.svc-outcome {
  border-radius: 8px;
  padding: 13px 15px;
  margin-top: auto;
}

.svc-col--1 .svc-outcome { background: #e8f5f0; border-left: 3px solid var(--teal-dark); }
.svc-col--2 .svc-outcome { background: #e8f0fa; border-left: 3px solid var(--col-2); }
.svc-col--3 .svc-outcome { background: #f0eafa; border-left: 3px solid var(--col-3); }

.svc-outcome-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #96b0aa;
  margin-bottom: 4px;
}

.svc-outcome-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.svc-outcome-sub {
  font-size: 11.5px;
  color: #6b8a80;
  line-height: 1.5;
}

/* Column footer / CTA */
.svc-col-foot {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-col--1 .svc-col-foot { background: #f0f8f5; border-top: 1px solid rgba(40,92,77,0.12); }
.svc-col--2 .svc-col-foot { background: #edf2fa; border-top: 1px solid rgba(29,92,82,0.12); }
.svc-col--3 .svc-col-foot { background: #f3eefa; border-top: 1px solid rgba(74,40,128,0.12); }

.svc-cta-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.18s, transform 0.15s;
}

.svc-cta-btn:hover { opacity: 0.86; transform: translateY(-1px); }

.svc-col--1 .svc-cta-btn { background: var(--teal-dark); color: white; }
.svc-col--2 .svc-cta-btn { background: var(--col-2); color: white; }
.svc-col--3 .svc-cta-btn { background: var(--col-3); color: white; }

.svc-cta-btn--outline {
  background: transparent !important;
  border: 2px solid;
}

.svc-col--1 .svc-cta-btn--outline { color: var(--teal-dark); border-color: var(--teal-dark); }
.svc-col--2 .svc-cta-btn--outline { color: var(--col-2); border-color: var(--col-2); }
.svc-col--3 .svc-cta-btn--outline { color: var(--col-3); border-color: var(--col-3); }

.svc-col--1 .svc-cta-btn--outline:hover { background: var(--teal-dark) !important; color: white; }
.svc-col--2 .svc-cta-btn--outline:hover { background: var(--col-2) !important; color: white; }
.svc-col--3 .svc-cta-btn--outline:hover { background: var(--col-3) !important; color: white; }

/* Down arrow connectors */
.svc-down-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 6px 0;
}

.svc-down-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 28px;
}

.svc-down-arrow::before {
  content: '';
  width: 2px;
  height: 16px;
  display: block;
}

.svc-down-arrow::after {
  content: '';
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  display: block;
}

.svc-down--1::before { background: var(--teal-dark); }
.svc-down--1::after  { border-top: 7px solid var(--teal-dark); }
.svc-down--2::before { background: var(--col-2); }
.svc-down--2::after  { border-top: 7px solid var(--col-2); }
.svc-down--3::before { background: var(--col-3); }
.svc-down--3::after  { border-top: 7px solid var(--col-3); }

/* Trigger row */
.svc-triggers {
  display: flex;
  align-items: stretch;
  margin-bottom: 24px;
}

.svc-trigger {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid;
}

.svc-trigger--1 { background: #eef7f3; border-color: rgba(40,92,77,0.2); }
.svc-trigger--2 { background: #edf3fc; border-color: rgba(29,92,82,0.2); }
.svc-trigger--3 { background: #f2edfb; border-color: rgba(74,40,128,0.2); }

.svc-trigger-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.svc-trigger--1 .svc-trigger-icon { border-color: var(--teal-dark); color: var(--teal-dark); }
.svc-trigger--2 .svc-trigger-icon { border-color: var(--col-2); color: var(--col-2); }
.svc-trigger--3 .svc-trigger-icon { border-color: var(--col-3); color: var(--col-3); }

.svc-trigger-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.svc-trigger--1 .svc-trigger-head { color: var(--teal-dark); }
.svc-trigger--2 .svc-trigger-head { color: var(--col-2); }
.svc-trigger--3 .svc-trigger-head { color: var(--col-3); }

.svc-trigger-body {
  font-size: 12.5px;
  color: #4b5e57;
  line-height: 1.55;
  font-style: italic;
}

.svc-trigger-list { list-style: none; }

.svc-trigger-list li {
  font-size: 12px;
  color: #4b5e57;
  padding-left: 12px;
  position: relative;
  margin-bottom: 4px;
  line-height: 1.4;
  font-style: normal;
}

.svc-trigger-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.svc-trigger--2 .svc-trigger-list li::before { color: var(--col-2); }
.svc-trigger--3 .svc-trigger-list li::before { color: var(--col-3); }

/* Horizontal connector between trigger cards */
.svc-trig-conn {
  flex: 0 0 20px;
  position: relative;
  align-self: center;
  height: 2px;
}

.svc-trig-conn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 7px;
  height: 2px;
}

.svc-trig-conn::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.svc-trig-conn--12::before { background: var(--flow-2); }
.svc-trig-conn--12::after  { border-left: 7px solid var(--flow-2); }
.svc-trig-conn--23::before { background: var(--flow-3); }
.svc-trig-conn--23::after  { border-left: 7px solid var(--flow-3); }

/* Flywheel strip */
.svc-flywheel {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(20,40,30,0.1);
}

.flywheel-main {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
}

.flywheel-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--col-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}

.flywheel-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.flywheel-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 110px;
}

.flywheel-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flywheel-icon--1 { border-color: var(--teal-mid); color: var(--teal-mid); }
.flywheel-icon--2 { border-color: var(--flow-2); color: var(--flow-2); }
.flywheel-icon--3,
.flywheel-icon--4 { border-color: var(--flow-3); color: var(--flow-3); }

.flywheel-step-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flywheel-step-info strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.flywheel-step-info span {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
}

.flywheel-sep {
  font-size: 16px;
  font-weight: 700;
  color: #c8d8d4;
  flex-shrink: 0;
  padding: 0 4px;
}

/* Mission panel */
.flywheel-mission {
  width: 200px;
  flex-shrink: 0;
  padding: 22px 20px;
  background: #fdf8ee;
}

.flywheel-mission-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.flywheel-mission-label {
  font-size: 14px;
  font-weight: 700;
  color: #c8820a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flywheel-mission-text {
  font-size: 13px;
  line-height: 1.85;
  color: #4b5e50;
  font-weight: 500;
}

/* ===== METHODOLOGY ===== */
.methodology-section {
  background: var(--white);
  padding: 36px 48px;
}

.methodology-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-connector {
  flex: 1;
  display: flex;
  align-items: center;
  margin-top: 18px;
  min-width: 40px;
}

.connector-svg { width: 100%; height: 48px; overflow: visible; }

@keyframes connDash { to { stroke-dashoffset: -200; } }

.step-hex {
  width: 52px;
  height: 52px;
  background: var(--teal-dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.step:first-child .step-hex {
  background: var(--teal-mid);
  box-shadow: 0 0 0 4px rgba(80,166,132,0.2);
}

.step-hex span {
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.step-hex-muted { background: var(--teal-mid); opacity: 0.7; }

.step p {
  font-size: 12.5px;
  color: #6b8a80;
  font-weight: 500;
  max-width: 90px;
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(160deg, #edf7f3 0%, #e2f2ee 100%);
  padding: 56px 48px 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 8px;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-mission-lead {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-left: 4px solid var(--teal-mid);
  padding-left: 20px;
}

.about-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 24px;
}

.about-chain-node {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(40,92,77,0.08);
}

.about-chain-node--accent {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}

.about-chain-sep {
  color: var(--teal-mid);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
}

.about-body-p {
  font-size: 15px;
  line-height: 1.75;
  color: #3d5c52;
}

.about-further-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal-mid);
  padding: 22px 24px 20px;
  box-shadow: 0 4px 16px rgba(40,92,77,0.08);
  margin-top: 4px;
}

.about-further-intro {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}

.about-further-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.about-further-list li {
  position: relative;
  font-size: 13.5px;
  color: #4b6059;
  padding-left: 20px;
  line-height: 1.55;
}

.about-further-list li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: var(--teal-mid);
  font-weight: 700;
  font-size: 13px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(40,92,77,0.07);
  position: relative;
}

.blog-card-bg {
  height: 6px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-dark));
}

.blog-card-content { padding: 20px 18px 18px; position: relative; }

.blog-hex-deco {
  position: absolute;
  right: -10px; bottom: 30px;
  width: 90px; height: 90px;
  background: linear-gradient(135deg, rgba(80,166,132,0.12), rgba(40,92,77,0.08));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.6;
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.35;
}

.blog-date {
  font-size: 11.5px;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-read-more:hover { background: var(--hover-dark); }
.btn-read-more::after { content: '›'; font-size: 14px; }

/* ===== HAMBURGER NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-mission-lead { font-size: 26px; }
  .services-analytics-wrap { padding: 0 32px 20px; }
  .svc-columns { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .svc-flow-connector { min-width: 16px; max-width: 40px; }
  .svc-triggers { flex-direction: column; gap: 10px; }
  .svc-trig-conn { display: none; }
  .svc-down-row { grid-template-columns: 1fr; gap: 0; }
  .svc-down--2, .svc-down--3 { display: none; }
  .flywheel-mission { width: 180px; }
}

@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 0 20px;
    height: auto;
    min-height: 56px;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 4px 0 8px;
    border-top: 1px solid var(--border);
  }

  nav.nav-open .nav-links { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }

  .nav-links a::after { display: none; }

  .nav-links a[href=""] {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 12px 4px;
    text-align: left;
    background: none;
  }

  .nav-links a[href=""]:hover {
    background: var(--teal-mid);
    border-radius: 4px;
    color: var(--white);
  }

  /* Methodology */
  .methodology-section { padding: 36px 20px; }

  .methodology-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .step-hex { margin-bottom: 0; flex-shrink: 0; }

  .step p { max-width: 100%; font-size: 14px; }

  .step-connector {
    flex: none;
    width: 2px;
    height: 28px;
    min-width: unset;
    margin: 4px 0 4px 25px;
    background: var(--border);
    align-self: flex-start;
  }

  .step-connector > * { display: none; }

  /* About */
  .about-section { padding: 36px 20px 44px; }
  .about-mission-lead { font-size: 23px; }
  .about-chain { padding-left: 0; }

  /* Services */
  .services-analytics-wrap { padding: 0 16px 44px; }
  .svc-flow-bar { display: none; }
  .svc-columns { max-width: 100%; }
  .svc-trig-conn, .svc-down-row { display: none; }
  .svc-flywheel { flex-direction: column; }
  .flywheel-main { border-right: none; border-bottom: 1px solid var(--border); }
  .flywheel-mission { width: 100%; }
  .flywheel-steps { flex-wrap: wrap; gap: 12px; }
  .flywheel-step { flex: 0 0 calc(50% - 6px); min-width: 0; }
  .flywheel-sep { display: none; }

  /* Contact */
  .contact-section { padding: 24px 16px 44px; }
  .contact-panel { padding: 28px 18px; }

  /* Footer */
  footer { padding: 24px 20px 16px; }


  .footer-bottom { flex-wrap: wrap; gap: 8px; }

  /* Modal */
  .policy-modal-body { padding: 32px 20px 24px; }

  /* Logo */
  .logo-image { height: 36px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 48px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 20px;
}

.footer-linkedin { justify-self: end; }

.footer-links {
  display: none;
  gap: 28px;
  list-style: none;
  justify-content: center;
}

@media (min-width: 1025px) {
  .footer-top { grid-template-columns: 1fr auto 1fr; }
  .footer-links { display: flex; }
}

.footer-links a { text-decoration: none; font-size: 13px; }

.footer-linkedin { display: flex; align-items: center; }

/* Shared muted-to-teal-dark hover for all footer interactive text */
.footer-links a,
.footer-linkedin,
.footer-policy-btn,
.policy-modal-close {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-linkedin:hover,
.footer-policy-btn:hover,
.policy-modal-close:hover { color: var(--teal-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #aabcb6;
  margin: 0;
}

.footer-policy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  font-family: inherit;
}

.footer-bottom-sep {
  font-size: 12px;
  color: #ccd9d5;
  user-select: none;
}

/* ===== PRIVACY POLICY MODAL ===== */
.policy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.policy-modal.is-open { display: flex; }

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 40, 0.55);
  backdrop-filter: blur(2px);
}

.policy-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(20, 50, 40, 0.18);
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.policy-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  z-index: 2;
}

.policy-modal-body {
  padding: 40px 36px 36px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.policy-modal-body h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  text-align: center;
}

.policy-modal-body h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.policy-modal-body p {
  font-size: 13px;
  line-height: 1.75;
  color: #5f7a71;
  margin: 0 0 8px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--section-bg);
  padding: 28px 48px 60px;
}

.contact-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 8px 28px rgba(40,92,77,0.08);
}

.contact-copy {
  font-size: 14px;
  line-height: 1.7;
  color: #5f7a71;
  max-width: 620px;
  margin: 0 auto 20px;
}

.contact-copy a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
}

.contact-copy a:hover { text-decoration: underline; }

.contact-btn { min-width: 160px; }

/* ===== OUTER WRAPPER ===== */
.site-outer {
  background: #e8eceb;
  width: 100%;
  min-height: 100vh;
}

.site-inner {
  width: 100%;
  min-height: 100vh;
  background: var(--white);
}

/* Chart SVG for analytics card */
.mini-chart { width: 90%; height: 90%; }

.analytics-btn {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 10px;
}
