:root {
    --teal-dark: #285C4D;
    --teal-mid: #50A684;
    --dark: #212322;
    --text: #2c3e38;
    --light-bg: #f0f8f5;
    --hero-bg-start: #d6eeea;
    --hero-bg-end: #b8ddd6;
    --white: #ffffff;
    --border: #d0e8e2;
    --section-bg: #f7fcfb;
  }

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

  html,
  body {
    width: 100%;
    min-height: 100%;
  }

  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-family: 'GULIM', sans-serif;
    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.active {
    color: var(--teal-dark);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
  }

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

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

  .nav-links a:not([href=""]):hover::after {
    transform: scaleX(1); /* Retain underline animation for other links */
  }
  
  /* Remove underline pseudo-element for the outlined Dashboard nav item */
  .nav-links a[href=""]::after {
    display: none;
  }

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

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

  .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%;
    max-width: 40%;
  }

  .hero h1 {
    font-family: 'GULIM', sans-serif;
    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%;
      max-width: 56%;
    }

    .hero .btn-primary {
      min-width: min(72%, 300px);
    }
  }

  @media (max-width: 768px) {
    .hero {
      padding: 48px 24px;
    }

    .hero-content {
      width: 100%;
      max-width: 100%;
    }

    .hero h1 {
      max-width: 100%;
      line-height: 1.12;
    }

    .hero p {
      max-width: 100%;
      margin-bottom: 28px;
    }

    .hero .btn-primary {
      width: 100%;
      min-width: 0;
      padding: 16px 24px;
    }
  }

  .btn-primary {
    display: inline-block;
    background: var(--teal-dark);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
  }

  .btn-primary:hover { background: #1e4a3d; }

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

  /* ===== OUR SERVICES ===== */
  section[id] {
    scroll-margin-top: 84px;
  }

  .services-analytics-wrap {
    background: linear-gradient(170deg, #eef8f5 0%, #d4ecE6 28%, #b6dbd2 65%, #9ecdc3 100%);
    padding: 0 48px 28px;
    position: relative;
    overflow: hidden;
  }

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

  /* Title area */
  .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-family: 'GULIM', sans-serif;
    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: #50A684; }
  .svc-badge--2 { background: #2ca090; }
  .svc-badge--3 { background: #5aae8e; }

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

  .svc-flow-info strong {
    font-family: 'GULIM', sans-serif;
    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, #50A684, #2ca090); }
  .svc-connector--12::after { border-left: 8px solid #2ca090; }
  .svc-connector--23 { background: linear-gradient(to right, #2ca090, #5aae8e); }
  .svc-connector--23::after { border-left: 8px solid #5aae8e; }

  /* 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: #285C4D; }
  .svc-col--2 .svc-col-head { background: #1d5c52; }
  .svc-col--3 .svc-col-head { background: #3d7060; }

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

  .svc-col-name {
    font-family: 'GULIM', sans-serif;
    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 (consultations) */
  .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: #285C4D; }
  .svc-col--2 .svc-track-label { color: #1d5c52; }
  .svc-col--3 .svc-track-label { color: #3d7060; }

  .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: #50A684; }
  .svc-col--2 .svc-track-list li::before { color: #2ca090; }
  .svc-col--3 .svc-track-list li::before { color: #5aae8e; }

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

  .svc-col--1 .svc-outcome { background: #e8f5f0; border-left: 3px solid #285C4D; }
  .svc-col--2 .svc-outcome { background: #e8f0fa; border-left: 3px solid #1d5c52; }
  .svc-col--3 .svc-outcome { background: #f0eafa; border-left: 3px solid #3d7060; }

  .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: #285C4D; color: white; }
  .svc-col--2 .svc-cta-btn { background: #1d5c52; color: white; }
  .svc-col--3 .svc-cta-btn { background: #3d7060; color: white; }

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

  .svc-col--1 .svc-cta-btn--outline { color: #285C4D; border-color: #285C4D; }
  .svc-col--2 .svc-cta-btn--outline { color: #1d5c52; border-color: #1d5c52; }
  .svc-col--3 .svc-cta-btn--outline { color: #3d7060; border-color: #3d7060; }

  .svc-col--1 .svc-cta-btn--outline:hover { background: #285C4D !important; color: white; }
  .svc-col--2 .svc-cta-btn--outline:hover { background: #1d5c52 !important; color: white; }
  .svc-col--3 .svc-cta-btn--outline:hover { background: #3d7060 !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: #285C4D; }
  .svc-down--1::after  { border-top: 7px solid #285C4D; }
  .svc-down--2::before { background: #1d5c52; }
  .svc-down--2::after  { border-top: 7px solid #1d5c52; }
  .svc-down--3::before { background: #3d7060; }
  .svc-down--3::after  { border-top: 7px solid #3d7060; }

  /* 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: #285C4D; color: #285C4D; }
  .svc-trigger--2 .svc-trigger-icon { border-color: #1d5c52; color: #1d5c52; }
  .svc-trigger--3 .svc-trigger-icon { border-color: #3d7060; color: #3d7060; }

  .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: #285C4D; }
  .svc-trigger--2 .svc-trigger-head { color: #1d5c52; }
  .svc-trigger--3 .svc-trigger-head { color: #3d7060; }

  .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: #1d5c52; }
  .svc-trigger--3 .svc-trigger-list li::before { color: #3d7060; }

  /* 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: #2ca090; }
  .svc-trig-conn--12::after  { border-left: 7px solid #2ca090; }
  .svc-trig-conn--23::before { background: #5aae8e; }
  .svc-trig-conn--23::after  { border-left: 7px solid #5aae8e; }

  /* 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-family: 'GULIM', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1d5c52;
    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: #50A684; color: #50A684; }
  .flywheel-icon--2 { border-color: #2ca090; color: #2ca090; }
  .flywheel-icon--3 { border-color: #5aae8e; color: #5aae8e; }
  .flywheel-icon--4 { border-color: #5aae8e; color: #5aae8e; }

  .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: #7a9e94;
    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-family: 'GULIM', sans-serif;
    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;
  }

  .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;
  }

  /* ===== 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-family: 'GULIM', sans-serif;
    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;
    position: relative;
    overflow: hidden;
  }

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

  .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-family: 'GULIM', sans-serif;
    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;
  }


  .btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid var(--teal-dark);
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }

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

  .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;
  }

  /* Decorative hex in corner */
  .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: #7a9e94;
    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: #1e4a3d; }

  .btn-read-more::after {
    content: '›';
    font-size: 14px;
  }

  @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) {
    .about-section {
      padding: 36px 24px 44px;
    }

    .about-mission-lead {
      font-size: 23px;
    }

    .about-chain {
      padding-left: 0;
    }

    .services-analytics-wrap {
      padding: 0 20px 44px;
    }

    .svc-flow-bar {
      display: none;
    }

    .svc-columns {
      max-width: 100%;
    }

    .svc-triggers {
      flex-direction: column;
      gap: 10px;
    }

    .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;
    }
  }

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

  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    text-decoration: none;
    color: #7a9e94;
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--teal-dark); }

  .footer-linkedin {
    color: #7a9e94;
    display: flex;
    align-items: center;
    transition: color 0.2s;
  }
  .footer-linkedin:hover { color: var(--teal-dark); }

  .footer-copy {
    text-align: center;
    font-size: 12px;
    color: #aabcb6;
    border-top: 1px solid var(--border);
    padding-top: 18px;
  }

  /* ===== 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);
    box-shadow: none;
  }

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

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