
    :root {
	  --primary: #46a7f4;
      --bg: #f3f7f2;
      --bg-alt: #ffffff;
      --accent: #ff8a3d;
      --accent-soft: rgba(255, 138, 61, 0.08);
      --accent-2: #46a7f4; /* green */
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --card-bg: #ffffff;
      --border-subtle: rgba(68, 167, 244, 0.35);
      --radius-xl: 18px;
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
      --transition-fast: 200ms ease-out;
    }

    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page {
      min-height: 100vh;
      position: relative;
    }

    .container {
      width: min(1100px, 92vw);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    section {
      padding: 80px 0;
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 0;
      }
    }

    /* ==== Nav ==== */

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: rgba(248, 250, 252, 0.9);
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 55px;
      border-radius: 12px;
    }

    .nav-links {
      display: flex;
      gap: 18px;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform 120ms ease-out;
    }

    .nav-links a:hover {
      color: var(--text-main);
      border-color: rgba(148, 163, 184, 0.55);
      background: rgba(243, 244, 246, 0.9);
      transform: translateY(-1px);
    }

    #insights .card-image img{
          object-fit: contain;
          width: auto;
    }

    .nav-links a.active {
      color: var(--text-main);
      background: rgba(68, 167, 244, 0.08);
      border-color: rgba(68, 167, 244, 0.5);
    }

    .nav-toggle {
      display: none;
      cursor: pointer;
      padding: 6px 8px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: #ffffff;
    }

    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: #111827;
      border-radius: 999px;
      position: relative;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 2px;
      background: inherit;
      border-radius: inherit;
      left: 0;
      transition: transform 150ms ease-out, top 150ms ease-out, opacity 150ms ease-out;
    }

    .nav-toggle span::before {
      top: -5px;
    }

    .nav-toggle span::after {
      top: 5px;
    }

    .nav-toggle.open span {
      opacity: 0;
    }

    .nav-toggle.open span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .nav-toggle.open span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    @media (max-width: 800px) {
      .nav-links {
        position: absolute;
        right: 4%;
        top: 56px;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        padding: 12px;
        flex-direction: column;
        gap: 6px;
        min-width: 200px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
        transform: scale(0.96);
        transform-origin: top right;
        opacity: 0;
        pointer-events: none;
        transition: opacity 150ms ease-out, transform 150ms ease-out;
      }

      .nav-links.show {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
      }

      .nav-toggle {
        display: block;
      }
    }

    /* ==== Hero ==== */

    .hero {
      padding-top: 70px;
      padding-bottom: 40px;
            background:
        radial-gradient(circle at 0 0, rgba(68, 167, 244, 0.12), transparent 60%),
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.12), transparent 60%),
        var(--bg);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 40px;
      align-items: center;

    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent-2);
      background: rgba(255, 255, 255, 0.9);
      padding: 6px 11px;
      border-radius: 99px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      margin-bottom: 12px;
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 99px;
      background: var(--accent-2);
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    }

    .hero-title {
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      letter-spacing: -0.03em;
      margin: 0 0 10px;
      color: #020617;
    }

    .hero-title span.highlight {
      background: linear-gradient(120deg, #46a7f4, #0a4f86, #fc8381);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      max-width: 600px;
      color: var(--text-muted);
      font-size: 0.98rem;
      margin-bottom: 24px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .pill {
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.75rem;
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 150ms ease-out,
        box-shadow 150ms ease-out,
        background 150ms ease-out,
        border-color 150ms ease-out,
        color 150ms ease-out;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 16px 30px rgba(22, 163, 74, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 40px rgba(22, 163, 74, 0.4);
      filter: brightness(1.02);
    }

    .btn-ghost {
      background: #ffffff;
      border-color: rgba(148, 163, 184, 0.7);
      color: var(--text-muted);
    }

    .btn-ghost:hover {
      background: #f3f4f6;
      border-color: rgba(148, 163, 184, 1);
      color: var(--text-main);
      transform: translateY(-1px);
    }

    .btn .arrow {
      font-size: 1rem;
      transform: translateY(1px);
    }

    .hero-meta {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 10px;
      opacity: 0.9;
    }

    /* ==== Hero Visual Card + images ==== */

    .hero-card {
      position: relative;
      border-radius: 26px;
      padding: 18px 18px 16px;
      background:
        radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.14), transparent 60%),
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.14), transparent 60%),
        var(--card-bg);
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero-logo-large {
      width: 100%;
      border-radius: 20px;
      margin-bottom: 14px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .hero-card-title {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
    }

    .hero-card-tag {
      font-size: 0.7rem;
      padding: 4px 10px;
      margin: 8px 0px;
      border-radius: 3px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: #f9fafb;
      color: #4b5563;
    }

    .hero-card-main {
      align-items: flex-start;
    }

    @media (max-width: 600px) {
      .hero-card-main {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 10px;
    }

    .metric {
      border-radius: 14px;
      padding: 10px 10px 9px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: #f9fafb;
      font-size: 0.7rem;
    }

    .metric-label {
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .metric-value {
      font-size: 1.02rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #111827;
    }

    .metric-pill {
      font-size: 0.68rem;
      color: var(--accent-2);
      margin-top: 3px;
    }

    .metric-highlight {
      background:
        radial-gradient(circle at 0 0, rgba(68, 167, 244, 0.2), transparent 65%),
        #ecfdf3;
      border-color: var(--primary);
    }

    .hero-list {
      font-size: 0.78rem;
      color: var(--text-muted);
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .hero-list li {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      margin-bottom: 6px;
    }

    .hero-list li::before {
      content: "";
      margin-top: 6px;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: var(--accent-2);
      flex-shrink: 0;
    }

    .hero-card-footnote {
      font-size: 0.68rem;
      color: var(--text-muted);
      margin-top: 6px;
    }


    /* ==== Sections ==== */

    .section-header {
      margin-bottom: 35px;
    }

    .section-kicker {
      font-size: 1.5rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 1.2rem;
      margin: 0 0 8px;
      letter-spacing: -0.03em;
      color: #020617;
    }

    .section-description {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 580px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 950px) {
      .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 650px) {
      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    @media (max-width: 800px) {
      .grid-2 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      border-radius: var(--radius-xl);
      padding: 18px 18px 16px;
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      transition: transform 150ms ease-out, box-shadow 150ms ease-out,
        border-color 150ms ease-out, background 150ms ease-out;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: -60%;
      opacity: 0;
      background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.7), transparent 55%);
      transition: opacity 200ms ease-out, transform 200ms ease-out;
      transform: translate3d(-15px, -10px, 0);
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(68, 167, 244, 0.9);
      box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
      background:
        radial-gradient(circle at 0 0, rgba(68, 167, 244, 0.05), transparent 60%),
        #ffffff;
    }

    .card:hover::after {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    .img-size{
      width: 100%;
    }

    .card-kicker {
      font-size: 1.3rem;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 4px;
    }

    .card-title {
      font-size: 1rem;
      margin-bottom: 6px;
      margin-top: 4px;
      color: #111827;
    }

    .card-body {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .card-image {
      width: 100%;
      height: 250px;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .tag {
      font-size: 0.7rem;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-muted);
      background: #f9fafb;
    }

    /* ==== Well-being ==== */

    .bgi-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-muted);
      background: #ffffff;
      margin-bottom: 10px;
    }

    .bgi-chip span.icon {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #fc8583;
      box-shadow: 0 0 10px rgba(68, 167, 244, 0.8);
    }

    .progress-bar {
      width: 100%;
      height: 6px;
      background: #e5e7eb;
      border-radius: 999px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.7);
      margin: 10px 0 4px;
    }

    .progress-fill {
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #46a7f4, #46a7f4, #fc8381);
      transition: width 1400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .progress-label {
      font-size: 0.7rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      margin-top: 2px;
    }

    /* ==== Lists & badges ==== */

    .list-inline {
      list-style: none;
      padding-left: 0;
      margin: 0;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .list-inline li {
      margin-bottom: 6px;
      align-items: flex-start;
    }

    .list-inline li::before {
      content: "•";
      color: var(--accent-2);
      font-size: 0.9rem;
      margin-top: -1px;
    }

    .stat-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      font-size: 0.72rem;
      color: var(--text-muted);
      background: #f9fafb;
      margin-top: 10px;
    }

    .stat-badge strong {
      color: var(--accent-2);
    }

    .quote-card {
      margin-top: 10px;
      border-left: 2px solid rgba(148, 163, 184, 0.7);
      padding-left: 12px;
      font-size: 0.88rem;
      font-style: italic;
      color: var(--text-muted);
    }

    /* ==== Footer ==== */

    footer {
      padding: 40px 0 30px;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    footer .footer-inner {
      border-top: 1px solid rgba(148, 163, 184, 0.35);
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    footer a {
      color: var(--text-muted);
      text-decoration: none;
    }

    footer a:hover {
      color: var(--text-main);
      text-decoration: underline;
    }

    /* ==== Reveal ==== */

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 600ms ease-out, transform 600ms ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-visual-mini {
      margin-top: 10px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.45);
      background: #f8fafc;
    }

    .hero-visual-mini img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .hero-visual-mini .hero-card-tag {
      display: block;
      margin: 0;
      border: 0;
      border-top: 1px solid rgba(148, 163, 184, 0.35);
      border-radius: 0;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.92);
      font-size: 0.76rem;
      letter-spacing: 0.02em;
    }

    /* ==== Expertise & People System ==== */

    .expertise-section {
      background: #ffffff;
      padding-top: 42px;
      padding-bottom: 40px;
    }

    .people-system-section {
      background:
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.08), transparent 45%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      padding-top: 35px;
    }

    .section-shell {
      display: flex;
      gap: 34px;
      align-items: center;
      flex-direction: column;
    }

    .section-shell-reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    }

    @media (max-width: 920px) {
      .section-shell,
      .section-shell-reverse {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .media-stack {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
      gap: 16px;
      align-items: stretch;
    }

    @media (max-width: 560px) {
      .media-stack {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .media-main,
    .media-side,
    .insight-panel {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: #ffffff;
    }

    .media-main img,
    .media-side img,
    .insight-panel img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      display: block;
    }

    .media-side img {
      min-height: 320px;
    }

    .media-badge {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.72);
      color: #ffffff;
      font-size: 0.82rem;
      line-height: 1.45;
      backdrop-filter: blur(8px);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    @media (max-width: 720px) {
      .feature-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .feature-card {
      padding: 18px;
      border-radius: 20px;
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.32);
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
      transition: transform 150ms ease-out, box-shadow 150ms ease-out, border-color 150ms ease-out;
    }

    .feature-card:hover,
    .system-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 38px rgba(68, 167, 244, 0.12);
      border-color: rgba(68, 167, 244, 0.45);
    }

    .feature-icon,
    .system-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #f9f9f9;
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: 600;
      border: 1px solid rgba(68, 167, 244, 0.18);
      margin-bottom: 14px;
    }

    .feature-card h3,
    .system-card h3 {
      margin: 0 0 6px;
      font-size: 0.98rem;
      color: #0f172a;
    }

    .feature-card p,
    .system-card p {
      margin: 0;
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.58;
    }

    .system-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    @media (max-width: 720px) {
      .system-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .system-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(148, 163, 184, 0.32);
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
      transition: transform 150ms ease-out, box-shadow 150ms ease-out, border-color 150ms ease-out;
    }

    .system-card .system-icon {
      flex-shrink: 0;
      margin-bottom: 0;
      padding: 4px;
    }

    .system-card-wide {
      grid-column: 1 / -1;
      background:
        radial-gradient(circle at 0 0, rgba(68, 167, 244, 0.09), transparent 55%),
        #ffffff;
    }

    .insight-panel {
      min-height: 100%;
    }

    .insight-panel img {
      min-height: 520px;
    }

    .insight-quote {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.92);
      color: #0f172a;
      font-size: 0.88rem;
      line-height: 1.6;
      box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
    }

    @media (max-width: 920px) {
      .insight-panel img {
        min-height: 360px;
      }
    }
