*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body { font-family: var(--font-body); }

img, svg, video { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, p, li, a, span { overflow-wrap: anywhere; }


/* Page-specific body base */
body.page-index { background: var(--white); color: var(--text); overflow-x: hidden; }
body.page-who { background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.7; font-size: 16px; }

/* Index page styles */

    /* NAV */
    .page-index nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 72px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      transition: border-color 0.3s;
    }

    .page-index .nav-logo {
      font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
      color: var(--forest); letter-spacing: -0.01em; text-decoration: none;
    }

    .page-index .nav-logo span { color: var(--accent); }

    .page-index .nav-links { display: flex; gap: 4rem; list-style: none; font-size: 1.10rem;}

    .page-index .nav-links > li { position: relative; }

    .page-index .nav-links a {
      color: rgba(27,31,35,0.7); text-decoration: none;
      font-weight: 500; transition: color 0.2s;
    }

    .page-index .nav-links a:hover { color: var(--forest); }

    .page-index .has-dropdown > a::after {
      content: "";
      display: inline-block;
      width: 0.42rem;
      height: 0.42rem;
      margin-left: 0.45rem;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      opacity: 0.85;
      vertical-align: middle;
    }

    .page-index .submenu {
      list-style: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 220px;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      padding: 0.7rem;
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 12px 28px rgba(0,0,0,0.12);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .page-index .submenu a {
      display: block;
      font-size: 0.92rem;
      padding: 0.1rem 0.55rem;
      border-radius: 3px;
      white-space: nowrap;
    }

    .page-index .submenu a:hover { background: rgba(0,104,181,0.08); }

    .page-index .has-dropdown:hover .submenu,
    .page-index .has-dropdown:focus-within .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .page-index .nav-cta {
      background: var(--forest); color: var(--white);
      padding: 0.55rem 1.4rem; border-radius: 3px;
      font-size: 0.78rem; font-weight: 600; text-decoration: none;
      letter-spacing: 0.07em; text-transform: uppercase;
      transition: background 0.2s;
    }

    .page-index .nav-cta:hover { background: var(--forest-light); }

    .page-index .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }

    .page-index .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 2px; }


    /* HERO */
    .page-index .hero {
      min-height: 100svh; background: var(--forest);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 0;
    }

    .page-index .hero-video {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
      background: #000 url("https://i.ytimg.com/vi/YIPTJVO4nYQ/maxresdefault.jpg") center/cover no-repeat;
      pointer-events: none;
    }

    .page-index .hero-video iframe {
      position: absolute; top: 50%; left: 50%;
      width: 100vw; height: 56.25vw;
      min-width: 177.78vh; min-height: 100vh;
      transform: translate(-50%, -50%);
      border: 0;
    }

    .page-index .hero-bg {
      position: absolute; inset: 0; z-index: 1;
    }

    .page-index .hero-texture {
      position: absolute; inset: 0; z-index: 1; opacity: 0.035;
    }

    .page-index .hero-content {
      position: relative; z-index: 2;
      padding: 0 5vw; 
      animation: fadeUp 1s ease both;
      margin-top: 7vw;
    }

    .page-index .hero-eyebrow {
      font-size: 1.10rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
      display: flex; align-items: center; gap: 0.75rem;
    }

    .page-index .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--accent); }

    .page-index .hero-title {
      font-family: var(--font-head); font-size: clamp(3rem, 8vw, 4rem);
      font-weight: 800; line-height: 1; color: var(--cream);
      letter-spacing: -0.02em; margin-bottom: 0.75rem;
    }

    .page-index .hero-title em { font-style: italic; color: var(--accent); }

    .page-index .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 400;
      color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.2; margin-bottom: 0.75rem;
    }

    .page-index .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    .page-index .btn-primary {
      background: var(--forest); color: var(--white);
      padding: 0.9rem 2rem; font-weight: 600; text-decoration: none;
      letter-spacing: 0.07em; text-transform: uppercase; font-size: 0.98rem;
      border-radius: 3px; transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
    }

    .page-index .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,104,181,0.35); }

    .page-index .btn-outline {
      border: 1px solid rgba(255,255,255,0.6); color: var(--white);
      padding: 0.9rem 2rem; font-weight: 400; text-decoration: none;
      letter-spacing: 0.04em; font-size: 1.10rem;
      border-radius: 3px; transition: border-color 0.2s, background 0.2s; display: inline-block;
    }

    .page-index .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .page-index .hero-stats {
      position: absolute; right: 5vw; bottom: 8vh; z-index: 2;
      display: flex; flex-direction: column; gap: 2rem;
      animation: fadeUp 1s 0.3s ease both;
    }

    .page-index .hero-stat { text-align: right; }

    .page-index .hero-stat-num {
      font-family: var(--font-head); font-size: 2.8rem; font-weight: 700;
      color: var(--cream); line-height: 1;
    }

    .page-index .hero-stat-num span { color: var(--accent); }

    .page-index .hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.65); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.25rem; }


    /* MARQUEE */
    .page-index .marquee-wrap { background: var(--forest); padding: 0.8rem 0; overflow: hidden; display: flex; }

    .page-index .marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 32s linear infinite; }

    .page-index .marquee-item {
      font-size: 0.90rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: white;
      display: flex; align-items: center; gap: 1rem;
    }

    .page-index .marquee-item::after { content: '◆'; font-size: 0.4rem; opacity: 0.5; }

    @keyframes marquee { from { transform: translateX(0); }
 to { transform: translateX(-50%); }
 }


    /* SECTIONS */
    .page-index section { padding: 7rem 5vw; }

    .page-index .section-label {
      font-size: 1rem; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 0rem;
      display: flex; align-items: center; gap: 0.75rem;
    }

    .page-index .section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }

    .page-index .section-title {
      font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
      color: var(--forest); max-width: 700px; margin-bottom: 1.5rem;
    }

    .page-index .section-title em { font-style: italic; color: var(--forest-light); }

    .page-index .section-title.light { color: var(--white); }

    .page-index .section-title.light em { color: var(--accent); }


    /* ABOUT */
    .page-index .about { background: var(--off); }

    .page-index .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

    .page-index .about-text p { font-size: 1.10rem; line-height: 1.5; color: #3A4047; margin-top: 1.5rem; margin-top: 1rem; }

    .page-index .about-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-top: 2rem; font-weight: 600; font-size: 0.88rem;
      letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
      color: var(--forest); border-bottom: 2px solid var(--accent); padding-bottom: 3px;
      transition: gap 0.2s;
    }

    .page-index .about-link:hover { gap: 0.9rem; }

    .page-index .about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--cream-dark); }

    .page-index .about-card { background: var(--forest-pale); padding: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }

    .page-index .about-card-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--forest); line-height: 1; }

    .page-index .about-card-num span { color: var(--forest); }

    .page-index .about-card-label { font-size: 1rem; color: var(--muted); font-weight: 400; }


    /* PRACTICES */
    .page-index .practices { background:  #1f446b; }

    .page-index .practices-grid {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px;
      margin-top: 4rem;
    }

    .page-index .practice-card {
      background: var(--forest-mid); padding: 2.5rem 2rem;
      position: relative; overflow: hidden; transition: background 0.3s;
      text-decoration: none; display: block; border-radius: 10px;
    }

    .page-index .practice-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--accent); transform: scaleX(0);
      transform-origin: left; transition: transform 0.4s ease;
    }

    .page-index .practice-card:hover { background: var(--forest-light); }

    .page-index .practice-card:hover::after { transform: scaleX(1); }

    .page-index .practice-icon {
      width: 48px; height: 48px; border-radius: 6px;
      background: rgba(0,174,239,0.18);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; font-size: 1.4rem;
    }

    .page-index .practice-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.75rem; }

    .page-index .practice-name2 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }

    .page-index .practice-desc { font-size: 1.0rem; color: rgba(255,255,255,0.85); line-height: 1.3; }

    .page-index .practice-desc2 { font-size: 1.0rem; color: var(--forest-mid); line-height: 1.3; }

    .page-index .practice-arrow {
      margin-top: 2rem; font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
      display: flex; align-items: center; gap: 0.5rem;
    }


    /* CLIENTS */
    .page-index .clients { background: var(--white); padding: 5rem 5vw; }

    .page-index .clients-label { 
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em; 
      text-transform: uppercase; 
      color: var(--forest); 
      text-align: center; 
      margin-bottom: 3rem; 
    }

    .page-index .clients-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 4rem; }

    .page-index .client-logo { font-size: 0.85rem; font-weight: 600; color: #9AA4AF; letter-spacing: 0.08em; transition: color 0.2s; }

    .page-index .client-logo:hover { color: var(--forest); }


    /* INDUSTRIES */
    .page-index .industries { background: var(--cream); }

    .page-index .ind-tabs { display: flex; margin-top: 3rem; border-bottom: 1px solid var(--cream-dark); flex-wrap: wrap; }

    .page-index .ind-tab {
      padding: 0.9rem 1.5rem; font-size: 1.10rem; font-weight: 500;
      cursor: pointer; border: none; background: none; color: var(--muted);
      border-bottom: 2px solid transparent; margin-bottom: -1px;
      transition: color 0.2s, border-color 0.2s; font-family: var(--font-body);
    }

    .page-index .ind-tab.active { color: var(--forest); border-bottom-color: var(--accent); font-weight: 600; }

    .page-index .ind-content { padding: 3rem 0; display: none; }

    .page-index .ind-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

    .page-index .ind-text h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: var(--forest); }

    .page-index .ind-text p { color: var(--text); line-height: 1.25; }

    .page-index .ind-features { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

    .page-index .ind-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.1rem; color: var(--text); }

    .page-index .ind-features li::before { content: "\2192"; color: var(--forest); font-weight: 800; font-size: 2rem; flex-shrink: 0; line-height: 0.6; }

    .page-index .ind-visual { background: var(--forest); padding: 3rem; display: flex; flex-direction: column; gap: 1rem; }

    .page-index .ind-visual-label { font-size: 0.98rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

    .page-index .ind-visual-title { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--cream); }

    .page-index .ind-bar-wrap { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

    .page-index .ind-bar-item { display: flex; flex-direction: column; gap: 0.3rem; }

    .page-index .ind-bar-label { font-size: 1.1rem; color: rgba(255,255,255,0.7); display: flex; justify-content: space-between; }

    .page-index .ind-bar-track { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }

    .page-index .ind-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; }


    /* INSIGHTS */
    .page-index .insights { background: var(--white); }

    .page-index .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }

    .page-index .insight-card { display: flex; flex-direction: column; border: 1px solid var(--cream-dark); }

    .page-index .insight-img { height: 200px; display: flex; align-items: flex-end; padding: 1.5rem; position: relative; overflow: hidden; }

    .page-index .insight-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,60,113,0.75)); }

    .page-index .insight-tag {
      position: relative; font-size: 0.62rem; letter-spacing: 0.15em;
      text-transform: uppercase; font-weight: 600;
      background: var(--accent); color: var(--forest); padding: 0.3rem 0.75rem; border-radius: 2px;
    }

    .page-index .insight-body { padding: 1.5rem; flex: 1; }

    .page-index .insight-cat { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.75rem; font-weight: 700;}

    .page-index .insight-title {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 1rem;
      text-align: justify;
    }

    .page-index .insight-link {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--forest); text-decoration: none;
      display: flex; align-items: center; gap: 0.4rem;font-weight: 700;
      border-bottom: 1px solid var(--accent); padding-bottom: 2px; width: fit-content;
    }

    /* CAREERS */
    .page-index .careers { background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }

    .page-index .careers-text { padding: 0rem 5vw; display: flex; flex-direction: column; justify-content: center; padding-bottom: 20px;}

    .page-index .careers-text p { color: rgba(255,255,255,0.78); line-height: 1.5; max-width: 550px; }

    .page-index .careers-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

    .page-index .careers-visual {
      background: linear-gradient(135deg, var(--forest-mid), rgba(0,174,239,0.08));
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }

    .page-index .careers-dots { display: grid; grid-template-columns: repeat(8, 1fr); gap: 1.5rem; padding: 4rem; }

    .page-index .careers-dot {
      width: 10px; height: 10px; border-radius: 50%;
      animation: pulse 3s ease-in-out infinite;
    }

    .page-index .careers-dot:nth-child(3n) { background: rgba(0,174,239,0.6); }

    .page-index .careers-dot:nth-child(5n) { background: rgba(42,143,227,0.5); }

    @keyframes pulse { 0%,100% { opacity: 0.4; }
 50% { opacity: 1; }
 }


    /* CTA */
    .page-index .cta {
      background: var(--cream-dark); padding: 6rem 5vw;
      display: flex; align-items: center; justify-content: space-between; gap: 2rem;
      flex-wrap: wrap; border-top: 4px solid var(--accent);
    }

    .page-index .cta-text h2 {
      font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700; color: var(--text); letter-spacing: -0.02em;
    }

    .page-index .cta-text p { color: rgba(27,31,35,0.7); margin-top: 0.5rem; }

    .page-index .btn-dark {
      background: var(--forest); color: var(--cream);
      padding: 1rem 2.5rem; font-weight: 600; text-decoration: none;
      letter-spacing: 0.07em; text-transform: uppercase; font-size: 0.78rem;
      border-radius: 3px; transition: background 0.2s; white-space: nowrap; display: inline-block;
    }

    .page-index .btn-dark:hover { background: var(--forest-light); }


    /* FOOTER */
    .page-index footer { background: #0B1A2A; padding: 5rem 5vw 2rem; color: rgba(255,255,255,0.7); }

    .page-index .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
      padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
    }

    .page-index .footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }

    .page-index .footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; text-align: justify; }

    .page-index .footer-col h4 {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem;
    }

    .page-index .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

    .page-index .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }

    .page-index .footer-col a:hover { color: var(--white); }

    .page-index .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 1rem; }

    .page-index .footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }

    .page-index .footer-social { display: flex; gap: 0.75rem; }

    .page-index .footer-social a {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.78rem;
      transition: border-color 0.2s, color 0.2s;
    }

    .page-index .footer-social a:hover { border-color: var(--accent); color: var(--accent); }


    .page-index .academy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

    .page-index .academy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--cream-dark); }
    .page-index .academy-card { padding: 2rem; }
    .page-index .academy-card-title {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 700;
      margin: 0;
    }
    .page-index .academy-card-desc {
      font-size: 0.98rem;
      margin-top: 0.5rem;
      font-weight: 700;
    }
    .page-index .academy-card--forest { background: var(--forest); }
    .page-index .academy-card--forest .academy-card-title { color: var(--white); }
    .page-index .academy-card--forest .academy-card-desc { color: rgba(255,255,255,0.75); }
    .page-index .academy-card--pale { background: var(--forest-pale); }
    .page-index .academy-card--pale .academy-card-title { color: var(--forest); }
    .page-index .academy-card--pale .academy-card-desc { color: var(--muted); }
    .page-index .academy-card--mid { background: var(--forest-mid); }
    .page-index .academy-card--mid .academy-card-title { color: var(--white); }
    .page-index .academy-card--mid .academy-card-desc { color: rgba(255,255,255,0.75); }


    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }

      to   { opacity: 1; transform: translateY(0); }

    }

    .page-index .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }

    .page-index .reveal.visible { opacity: 1; transform: translateY(0); }


    @media (max-width: 900px) {
      .page-index nav { height: 64px; padding: 0 4vw; }

      .page-index .nav-logo { font-size: 1.05rem; max-width: 70%; }

      .page-index .nav-cta { display: none; }

      .page-index .nav-links { display: none; }

      .page-index .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        padding: 1.5rem 5vw 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(0,0,0,0.08);
      }

      .page-index .nav-links > li { width: 100%; }

      .page-index .submenu {
        position: static;
        min-width: 0;
        padding: 0.35rem 0 0 0.9rem;
        background: transparent;
        border: 0;
        box-shadow: none;
        gap: 0.2rem;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .page-index .submenu a {
        padding: 0.2rem 0;
        color: rgba(27,31,35,0.75);
      }

      .page-index .nav-hamburger { display: flex; }

      .page-index .hero { min-height: auto; padding: 92px 0 2rem; }

      .page-index .hero-content { max-width: 100%; }

      .page-index .hero-eyebrow { margin-bottom: 1rem; }

      .page-index .hero-sub { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }

      .page-index section { padding: 1rem 6vw; }
      .page-index .industries { padding: 4rem 6vw; }
      .page-index .ind-content { padding: 2.2rem 0; }

      .page-index .about-inner, .page-index .careers { grid-template-columns: 1fr; }

      .page-index .about-visual { grid-template-columns: repeat(2, 1fr); }

      .page-index .careers-visual { display: none; }

      .page-index .practices-grid { grid-template-columns: 1fr 1fr; }

      .page-index .insights-grid { grid-template-columns: 1fr; }

      .page-index .footer-top { grid-template-columns: 1fr 1fr; }

      .page-index .hero-stats { display: none; }

      .page-index .ind-content.active { grid-template-columns: 1fr; }

      .page-index .ind-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
      }

      .page-index .ind-tab { white-space: nowrap; flex: 0 0 auto; }

      .page-index .academy-grid { grid-template-columns: 1fr; gap: 2rem; }

    }

    @media (max-width: 600px) {
      .page-index section { padding: 1rem 6vw; }
      .page-index .industries { padding: 1rem 6vw; }
      .page-index .ind-content { padding: 1.8rem 0; }
      .page-index .section-label {
        font-size: 0.85rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
        margin-bottom: 1rem;
      }
      .page-index .section-label::before { width: 22px; }
      .page-index .section-title { font-size: 1.6rem; line-height: 1.2; }
      .page-index .section-title br { display: none; }
      .page-index .practices .ind-text p { margin: 0 0 1.75rem; }
      .page-index .practices .ind-text p:last-child { margin-bottom: 0; }

      .page-index .hero { min-height: 100svh; }

      .page-index .hero-video iframe {
        width: 100vw; height: 56.25vw;
        min-width: 177.78vh; min-height: 100%;
      }

      .page-index .hero-actions .btn-primary,
      .page-index .hero-actions .btn-outline,
      .page-index .careers-actions .btn-primary,
      .page-index .careers-actions .btn-outline,
      .page-index .btn-dark {
        width: 100%;
        text-align: center;
      }

      .page-index .practices-grid { grid-template-columns: 1fr; }

      .page-index .footer-top { grid-template-columns: 1fr; }

      .page-index .cta { flex-direction: column; }

      .page-index .academy-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .page-index .academy-cards { gap: 0.75rem; background: transparent; }
      .page-index .academy-card { padding: 0.9rem; min-width: 0; }
      .page-index .academy-card-title {
        font-size: 1rem;
        line-height: 1.15;
      }
      .page-index .academy-card-desc {
        font-size: 0.75rem;
        line-height: 1.25;
        word-break: break-word;
        hyphens: auto;
      }

    }

  

/* Who we are page styles */

body.page-who {
  --forest-pale:#E6F2FB;
  --cream-deep:#DDE5F0;
  --gold-lt:#66C8FF;
  --sage:#2A8FE3;
  --sage-lt:#8FD8FF;
  --border:#D0D7DE;
  --gold:#00AEEF;
}

/* Base typography for Who page to align with Index defaults */
.page-who div,
.page-who section,
.page-who span {
  font-family: inherit;
  color: inherit;
}

.page-who h1,
.page-who h2,
.page-who h3,
.page-who h4,
.page-who h5,
.page-who h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-who p {
  font-size: 1rem;
  line-height: 1.4;
  color: #3A4047;
}

.page-who .valpoints {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-who .valpointsli{
  position: relative;
  padding-left: 1.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.page-who .valpointsli::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Experience block */
.page-who .experience-block {
  margin-top: 1.1rem;
  background: #F8FAFD;
  border: 1px solid var(--cream-deep);
  border-left: 4px solid #0B3A6B;
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 10px 24px rgba(0,44,95,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-right-color .2s ease;
}
.page-who .experience-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,44,95,0.12);
  border-right-color: #0054A6;
}
.page-who .experience-block h4 {
  font-size: 1rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.page-who .experience-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-who .experience-block li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.1;
  color: #3A4047;
}
.page-who .experience-block,
.page-who .experience-block li {
  text-align: justify;
}
.page-who .experience-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Centered heading + description section */
.page-who .center-intro {
  padding: 4.75rem 5vw 5.25rem;
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(0,104,181,0.08), transparent 60%),
    radial-gradient(700px 320px at 85% 100%, rgba(0,104,181,0.06), transparent 60%),
    var(--cream);
  position: relative;
}
.page-who .center-intro .center-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 24px 70px rgba(1,45,78,0.14), 0 2px 8px rgba(1,45,78,0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-who .center-intro .center-intro-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(0,104,181,0.16), transparent 62%);
  z-index: -1;
}
.page-who .center-intro .center-intro-inner::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 24px;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), transparent);
  border-radius: 999px;
  opacity: 0.8;
}
.page-who .center-intro .center-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-who .center-intro .center-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #3A4047;
  margin: 0 auto;
}
.page-who .center-intro .center-desc-list {
  list-style: none;
  margin: 1.2rem auto 0;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}
.page-who .center-intro .center-desc-list li {
  position: relative;
  padding: 0.95rem 1.15rem 0.95rem 2.6rem;
  font-size: 1.15rem;
  line-height: 1.45;
  color: #1F2730;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(1,45,78,0.08);
  border-left: 4px solid var(--forest);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(1,45,78,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.page-who .center-intro .center-desc-list li::before {
  content: '→';
  position: absolute;
  left: 0.85rem;
  top: 0.75rem;
  color: var(--forest);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}
.page-who .center-intro .center-desc-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(1,45,78,0.12);
  border-color: rgba(1,45,78,0.14);
}


/* ── TOPBAR ── */
.page-who .topbar {background:var(--forest);padding:.4rem 5vw;display:flex;align-items:center;justify-content:flex-end;gap:1.5rem;flex-wrap:wrap}

.page-who .topbar a {color:rgba(255,255,255,.5);font-size:.73rem;text-decoration:none;transition:color .2s}
.page-who .topbar a:hover {color:var(--sage-lt)}

.page-who .tsep {width:1px;height:11px;background:rgba(255,255,255,.2)}

/* ── NAV ── */
.page-who nav {position:sticky;top:0;z-index:200;background:var(--cream);border-bottom:1px solid var(--border);transition:box-shadow .3s}

.page-who .nav-inner {display:flex;align-items:center;justify-content:space-between;padding:0 5vw;height:70px;max-width:1320px;margin:0 auto}

.page-who .logo {display:flex;align-items:center;gap:.65rem;text-decoration:none}

.page-who .logo-leaf {width:38px;height:38px;background:var(--forest);border-radius:50% 50% 50% 0;display:flex;align-items:center;justify-content:center;color:var(--cream);font-size:1.05rem;flex-shrink:0}

.page-who .logo-name {font-family:var(--font-head);font-size:1.1rem;font-weight:700;color:var(--forest)}
.page-who .logo-name em {color:var(--gold);font-style:normal}

.page-who .nav-links {display:flex;align-items:center;list-style:none}

.page-who .nav-item {position:relative}

.page-who .nav-item>a {display:flex;align-items:center;gap:.3rem;padding:0 .95rem;height:70px;color:var(--text);text-decoration:none;font-size:.855rem;font-weight:500;white-space:nowrap;position:relative;transition:color .2s}

.page-who .nav-item>a:hover {color:var(--forest)}
.page-who .nav-item>a::after {content:'';position:absolute;bottom:0;left:.95rem;right:.95rem;height:2px;background:var(--forest);transform:scaleX(0);transition:transform .25s}
.page-who .nav-item:hover>a::after {transform:scaleX(1)}

.page-who .ch {width:7px;height:7px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translateY(-2px);display:inline-block;transition:transform .2s;flex-shrink:0}
.page-who .nav-item:hover .ch {transform:rotate(-135deg) translateY(-2px)}

.page-who .drop {position:absolute;top:100%;left:0;min-width:215px;background:var(--cream);border:1px solid var(--border);border-top:2px solid var(--forest);box-shadow:0 8px 28px rgba(0,0,0,0.12);opacity:0;visibility:hidden;transform:translateY(6px);transition:all .2s;z-index:300}
.page-who .nav-item:hover .drop {opacity:1;visibility:visible;transform:translateY(0)}

.page-who .drop a {display:block;padding:.7rem 1.15rem;font-size:.82rem;color:var(--text);text-decoration:none;border-bottom:1px solid rgba(213,207,196,.45);transition:background .15s,color .15s}
.page-who .drop a:last-child {border-bottom:none}
.page-who .drop a:hover {background:var(--forest-pale);color:var(--forest)}

.page-who .nav-cta {background:var(--forest);color:var(--cream);padding:.55rem 1.4rem;border-radius:30px;font-size:.8rem;font-weight:600;text-decoration:none;margin-left:1rem;white-space:nowrap;transition:background .2s,transform .2s}
.page-who .nav-cta:hover {background:var(--forest-light);transform:translateY(-1px)}

.page-who .burger {display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.page-who .burger span {display:block;width:22px;height:1.5px;background:var(--forest)}

/* ── SUBNAV ── */
.page-who .subnav {background:var(--forest-pale);border-bottom:1px solid var(--border);padding:0 5vw}

.page-who .subnav-inner {max-width:1320px;margin:0 auto;display:flex;overflow-x:auto}

.page-who .subnav a {display:block;padding:.7rem 1.35rem;font-size:.82rem;font-weight:500;color:var(--muted);text-decoration:none;white-space:nowrap;border-bottom:2px solid transparent;transition:color .2s,border-color .2s}
.page-who .subnav a:hover {color:var(--forest)}
.page-who .subnav a.on {color:var(--forest);border-bottom-color:var(--gold);font-weight:600}

/* ── MOBILE MENU ── */

/* ── HERO ── */
.page-who .hero {background:var(--forest);position:relative;overflow:hidden;padding:5rem 5vw 5rem;display:grid;grid-template-columns:1.15fr .85fr;gap:4rem;align-items:center;min-height:480px}
.page-who .hero--dark {background:var(--forest-dark)}
.page-who .hero--single {grid-template-columns:1fr}

.page-who .hero::before {content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 80% 30%,rgba(0,104,181,0.12) 0%,transparent 55%),radial-gradient(ellipse at 10% 90%,rgba(0,174,239,0.08) 0%,transparent 40%)}

.page-who .hero-deco1, .page-who .hero-deco2 {position:absolute;border-radius:50% 50% 50% 0;pointer-events:none}

.page-who .hero-deco1 {width:380px;height:380px;background:rgba(0,104,181,0.08);right:-90px;top:-70px;transform:rotate(10deg)}

.page-who .hero-deco2 {width:220px;height:220px;background:rgba(0,174,239,0.06);left:42%;bottom:-60px;transform:rotate(-20deg)}

.page-who .hero-text {position:relative;z-index:2}

.page-who .crumb {font-size:.72rem;color:var(--sage-lt);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1.25rem;display:flex;align-items:center;gap:.4rem;flex-wrap:wrap}

.page-who .crumb a {color:var(--sage-lt);text-decoration:none;transition:opacity .2s}
.page-who .crumb a:hover {opacity:.8}
.page-who .crumb span {opacity:.4}

.page-who .badge {display:inline-flex;align-items:center;gap:.45rem;background:var(--white);border:1px solid var(--white);padding:.32rem .85rem;border-radius:30px;font-size:.73rem;color:var(--forest);letter-spacing:.04em;margin-bottom:1.4rem; font-weight:700}

.page-who .hero h1 {font-family:var(--font-head);font-size:clamp(2.5rem,5vw,4.2rem);font-weight:700;color:var(--cream);line-height:1.08;margin-bottom:1.1rem}

.page-who .hero h1 em {font-style:italic;color:var(--gold-lt)}

.page-who .hero-desc {font-size:1.05rem;color:rgba(255,255,255,0.85);line-height:1.2;margin-bottom:1rem;text-align:justify}

.page-who .hero-stone {display:inline-flex;align-items:center;gap:.5rem;color:var(--gold-lt);font-size:.98rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;padding-bottom:2px;transition:gap .2s}

.page-who .hero-quote {display:block;align-items:center;gap:.5rem;color:var(--gold-lt);font-size:1.1rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;padding-bottom:2px;transition:gap .2s;max-width:100%;white-space:normal}

.page-who .hero-lead {font-size:1.05rem;color:rgba(255,255,255,0.85);max-width:500px;line-height:1.78;margin-bottom:2rem}

.page-who .hero-link {display:inline-flex;align-items:center;gap:.5rem;color:var(--gold-lt);font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;border-bottom:1px solid rgba(0,174,239,0.55);padding-bottom:2px;transition:gap .2s,border-color .2s}
.page-who .hero-link:hover {gap:.9rem;border-color:var(--gold-lt)}

.page-who .hero-panel {position:relative;z-index:2;display:flex;flex-direction:column;gap:1px;background:rgba(255,255,255,.08)}

.page-who .hstat {background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.09);padding:1.6rem 2rem;display:flex;align-items:center;gap:1.5rem;transition:background .2s}
.page-who .hstat:hover {background:rgba(255,255,255,.1)}

.page-who .hstat-num {font-family:var(--font-head);font-size:2.8rem;font-weight:700;color:var(--gold-lt);line-height:1;white-space:nowrap;min-width:90px}

.page-who .hstat-num sup {font-size:1rem;vertical-align:super}

.page-who .hstat-lbl {font-size:.82rem;color:rgba(255,255,255,0.75);line-height:1.45}

/* ── SECTIONS ── */
.page-who .sec {padding:5rem 5vw}
.page-who .sec-in {max-width:1320px;margin:0 auto}

.page-who .bg-cream {background:var(--cream)}
.page-who .bg-off {background:var(--forest-pale)}
.page-who .bg-pale {background:var(--forest-pale)}
.page-who .bg-forest {background:var(--cream)}

.page-who .lbl {display:flex;align-items:center;gap:.7rem;font-size:1rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}

.page-who .lbl::before {content:'';display:block;width:22px;height:2px;background:var(--gold)}

.page-who .lbl.lt {color:rgba(5, 97, 169)}
.page-who .lbl.lt::before {background:rgba(0,174,239,0.7)}

.page-who h2.title {font-family:var(--font-head);font-size:clamp(1.5rem,5.5vw,3rem);font-weight:700;color:var(--forest);line-height:1;margin-bottom:.9rem}

.page-who h2.title em {font-style:italic;color:var(--gold)}

.page-who h2.title.lt {color:var(--forest)}
.page-who h2.title.lt em {color:var(--gold-lt)}
.page-who .quote-forest {color:var(--forest)}

.page-who .lead {font-size:1.15rem;color:var(--muted);line-height:1.3;max-width:780px;text-align: justify;}

.page-who .lead.lt {
  color: var(--forest-mid);
}
.page-who .lead-tight {margin-top:.5rem}

.page-who p.bp {font-size:1.15rem;color:#3A4047;line-height:1.1;margin-top:1rem;text-align: justify;}
.page-who p.bp strong {color:var(--forest)}

.page-who .arr {display:inline-flex;align-items:center;gap:.5rem;margin-top:1.75rem;font-size:1rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:var(--forest);text-decoration:none;border-bottom:1px solid var(--gold);padding-bottom:2px;transition:gap .2s,color .2s}
.page-who .arr:hover {gap:.9rem;color:var(--gold)}

/* ── TWO-COL ── */
.page-who .two {display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}

.page-who .two.flip {direction:rtl}
.page-who .two.flip>* {direction:ltr}

/* Online image block */
.page-who .online-image {display:flex;flex-direction:column;gap:1rem}
.page-who .online-image-frame {
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,0.15);
  max-height: 320px;
}
.page-who .online-image-frame img {
  display:block;
  width:100%;
  height:100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}
.page-who .online-image-desc {font-size:0.95rem;color:#3A4047;line-height:1.6}

@media (max-width: 680px) {
  .page-who .online-image-frame,
  .page-who .online-image-frame img {
    max-height: 220px;
  }
}

/* ── VBOX ── */
.page-who .vbox {background:var(--forest-dark);padding:2.75rem;position:relative;overflow:hidden;min-height:300px;display:flex;flex-direction:column;justify-content:space-between}

.page-who .vbox::after {content:'';position:absolute;right:-35px;bottom:-35px;width:170px;height:170px;border-radius:50% 50% 50% 0;background:rgba(0,174,239,0.12);transform:rotate(-15deg);pointer-events:none}

.page-who .vbox-q {font-family:var(--font-head);font-size:1.25rem;font-style:italic;color:var(--cream);line-height:1.62;position:relative;z-index:1}

.page-who .vbox-q::before {content:'';font-size:5.5rem;color:rgba(0,174,239,0.18);font-family:var(--font-head);position:absolute;top:-1.8rem;left:-1rem;line-height:1;z-index:-1}

.page-who .vbox-stats {display:grid;grid-template-columns:1fr 1fr;gap:3px;margin-top:2rem;position:relative;z-index:1}

.page-who .vbox-sn {background: var(--cream); padding:1.2rem 1rem}

.page-who .vbox-num {font-family:var(--font-head);font-size:2.3rem;font-weight:700;color:var(--cream);line-height:1}

.page-who .vbox-slbl {font-size:.9rem; color:var(--forest-dark);letter-spacing:.1em;text-transform:uppercase;margin-top:.2rem}

.page-who .vbox-sn2 {background: var(--forest); padding:1.2rem 1rem}

.page-who .vbox-num2 {font-family:var(--font-head);font-size:2.3rem;font-weight:700;color:var(--forest-dark);line-height:1}

.page-who .vbox-slbl2 {font-size:.9rem;text-align: justify;color:var(--forest-pale);letter-spacing:.1em;text-transform:uppercase;margin-top:.2rem}

/* ── STATS BAR ── */
.page-who .sbar {display:flex;flex-wrap:wrap;gap:1px;background:var(--border);margin-top:3.5rem}

.page-who .sbox {flex:1;min-width:160px;background:var(--cream);padding:2.5rem 2rem;display:flex;flex-direction:column;gap:.4rem;transition:background .2s}
.page-who .sbox:hover {background:var(--cream-dark)}

.page-who .sn {font-family:var(--font-head);font-size:2.75rem;font-weight:700;color:var(--forest);line-height:1}

.page-who .sn sup {font-size:1rem}
.page-who .sl {font-size:.75rem;color:var(--muted);letter-spacing:.06em;text-transform:uppercase}

/* ── CARDS 3-col ── */
.page-who .cards3 {display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}

.page-who .card {background:var(--cream);border:1px solid var(--border);border-top:3px solid var(--forest);border-bottom:3px solid var(--forest);padding:2.25rem 2rem;transition:box-shadow .25s,border-top-color .25s}
.page-who .card:hover {box-shadow:0 10px 30px rgba(0,0,0,0.1);border-top-color:var(--gold)}

.page-who .card-ico {width:54px;height:54px;background:var(--forest-pale);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1.25rem}

.page-who .card-h {font-family:var(--font-head);font-size:1.15rem;font-weight:700;color:var(--forest);margin-bottom:.65rem}

.page-who .card-p {font-size:1rem;color:var(--muted);line-height:1.4;text-align: justify;}
.page-who .card p {text-align: justify;}

/* ── MILESTONE GRID ── */
.page-who .mgrid {display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--border)}

.page-who .mstone {padding:2.5rem 2rem}
.page-who .mstone--forest {background:var(--forest)}
.page-who .mstone--forest .m-yr {color:var(--gold-lt)}
.page-who .mstone--forest .m-tag {color:rgba(255,255,255,0.7)}
.page-who .mstone--forest .m-div {background:rgba(0,174,239,0.28)}
.page-who .mstone--forest .m-p {color:rgba(255,255,255,0.75)}
.page-who .mstone--cream {background:var(--cream)}
.page-who .mstone--cream .m-yr {color:var(--forest)}
.page-who .mstone--cream .m-tag {color:var(--muted)}
.page-who .mstone--cream .m-div {background:var(--cream-deep)}
.page-who .mstone--cream .m-p {color:var(--muted)}

.page-who .m-yr {font-family:var(--font-head);font-size:2.4rem;font-weight:700;line-height:1;margin-bottom:.3rem}

.page-who .m-tag {font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.75rem}

.page-who .m-tags {font-size:0.9rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.75rem;color: var(--forest)}

.page-who .m-div {height:1px;margin:.75rem 0}

.page-who .m-p {
  font-size: 1.10rem;
  line-height: 1.3;
  color: #3A4047;
  text-align: justify;
}

/* ── VALUES CARDS ── */
.page-who .vcards {display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem}

.page-who .vcard {background:var(--cream);border:1px solid var(--border);padding:2.75rem 2.25rem;position:relative;overflow:hidden;transition:transform .25s,box-shadow .25s}
.page-who .vcard:hover {transform:translateY(-5px);box-shadow:0 14px 40px rgba(0,0,0,0.1)}

.page-who .vcard::before {content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(to right,var(--forest),var(--gold))}

.page-who .v-num {font-family:var(--font-head);font-size:4rem;font-weight:700;color:var(--cream-dark);line-height:1;margin-bottom:1rem}

.page-who .v-h {font-family:var(--font-head);font-size:1.5rem;font-weight:700;color:var(--forest);margin-bottom:.75rem}

.page-who .v-p {font-size:1.2rem;color:var(--muted);line-height:1.3;text-align: justify;}

/* ── PILLARS ── */
.page-who .pgrid {display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:3rem}

.page-who .pillar {background:var(--cream);border:1px solid var(--border);padding:2rem;display:flex;gap:1.2rem;align-items:flex-start;transition:box-shadow .2s}
.page-who .pillar:hover {box-shadow:0 6px 24px rgba(0,0,0,0.08)}

.page-who .p-ico {width:50px;height:50px;flex-shrink:0;border-radius:8px;background:var(--forest-pale);display:flex;align-items:center;justify-content:center;font-size:1.4rem}

.page-who .p-h {font-family:var(--font-head);font-size:1.3rem;font-weight:700;color:var(--forest);margin-bottom:.45rem}

.page-who .p-p {font-size:1.1rem;color:var(--muted);line-height:1.3;text-align: justify;}

/* ── TIMELINE ── */
.page-who .tl {position:relative;padding-left:3rem;margin-top:3rem}

.page-who .tl::before {content:'';position:absolute;left:0;top:4px;bottom:0;width:2px;background:linear-gradient(to bottom,var(--forest),var(--border))}

.page-who .tlitem {position:relative;padding-bottom:3rem}

.page-who .tlitem::before {content:'';position:absolute;left:-3.35rem;top:.4rem;width:14px;height:14px;border-radius:50%;background:var(--forest);border:3px solid var(--cream);box-shadow:0 0 0 2px var(--forest)}

.page-who .tl-yr {font-family:var(--font-head);font-size:1.2rem;font-weight:700;color:var(--forest);letter-spacing:.06em;margin-bottom:.5rem}

.page-who .tl-h {font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--gold);margin-bottom:.55rem}

.page-who .tl-p {font-size:.9rem;color:var(--muted);line-height:1.8}

/* ── QUOTE BAND ── */
.page-who .qband {background:var(--forest-mid);padding:3.5rem 5vw;text-align:center}

.page-who .qband p {font-family:var(--font-head);font-size:clamp(1.1rem,2.3vw,1.8rem);font-style:italic;color:var(--cream);line-height:1.25;max-width:920px;margin:0 auto}

.page-who .qband strong {color:var(--gold-lt);font-style:normal}

/* ── LOCATIONS ── */
.page-who .locgrid {display:grid;grid-template-columns:repeat(3,1fr);gap:0.2rem;margin-top:2.5rem}

.page-who .loc {
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:220px;
  border:1px solid rgba(255,255,255,.14);
  padding:1.5rem;
  background:var(--forest);
  transition:transform .22s,border-color .22s;
  display:flex;
  flex-direction:column
}

.page-who .loc::before {
  content:'';position:absolute;inset:0;z-index:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.18) 100%)
}

.page-who .loc:hover {transform:translateY(-3px);border-color:rgba(0,174,239,0.55)}

.page-who .loc>div {position:relative;z-index:1}

.page-who .loc-fl {font-size:1.6rem;margin-bottom:.4rem}

.page-who .loc-cn {font-family:var(--font-head);font-size:1.25rem;font-weight:700;color:var(--cream);margin-bottom:.35rem;line-height:1.3}

.page-who .loc-ct {font-size:0.98rem;color:rgba(255,255,255,0.92);line-height:1.4;text-align: justify;}

.page-who .loc2 {
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:220px;
  border:1px solid rgba(255,255,255,.14);
  padding:1.5rem;
  background:var(--forest-pale);
  transition:transform .22s,border-color .22s;
  display:flex;
  flex-direction:column
}

.page-who .loc2::before {
  content:'';position:absolute;inset:0;z-index:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.18) 100%)
}

.page-who .loc2:hover {transform:translateY(-3px);border-color:var(--forest-pale);}

.page-who .loc2>div {position:relative;z-index:1}

.page-who .loc2-fl {font-size:1.6rem;margin-bottom:.4rem}

.page-who .loc2-cn {font-family:var(--font-head);font-size:1.25rem;font-weight:700;color:var(--forest);margin-bottom:.35rem;line-height:1.3}

.page-who .loc2-ct {font-size:0.98rem;color:var(--muted);line-height:1.4;text-align: justify;}

/* ── SUSTAINABILITY DOCS ── */
.page-who .doclinks {display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2rem}

.page-who .doclink {background:var(--cream);border:1px solid var(--border);padding:1.25rem 1.5rem;display:flex;align-items:center;gap:1rem;text-decoration:none;transition:box-shadow .2s,border-color .2s}
.page-who .doclink:hover {box-shadow:0 4px 18px rgba(0,0,0,0.08);border-color:var(--gold)}

.page-who .doc-icon {width:40px;height:40px;background:var(--forest-pale);border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}

.page-who .doc-lbl {font-size:.87rem;font-weight:600;color:var(--forest);line-height:1.35}

.page-who .doc-sub {font-size:.75rem;color:var(--muted);margin-top:.1rem}

/* ── CAREERS ── */
.csec {background:var(--forest);display:grid;grid-template-columns:1fr 1fr;min-height:420px}

.ctext {padding:5rem 5vw;display:flex;flex-direction:column;justify-content:center}

.ctext .lead {color:rgba(255,255,255,0.78);max-width:480px;margin-top:1.25rem}

.cbtns {display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem}

.btn-c {background:var(--cream);color:var(--forest);padding:.8rem 2rem;font-size:.79rem;font-weight:700;text-decoration:none;letter-spacing:.06em;text-transform:uppercase;border-radius:30px;transition:background .2s,transform .2s;display:inline-block}
.btn-c:hover {background:var(--cream-dark);transform:translateY(-2px)}

.btn-oc {background:transparent;color:var(--cream);padding:.8rem 2rem;font-size:.79rem;font-weight:500;text-decoration:none;letter-spacing:.04em;text-transform:uppercase;border:1.5px solid rgba(255,255,255,.3);border-radius:30px;transition:border-color .2s;display:inline-block}
.btn-oc:hover {border-color:rgba(255,255,255,.8)}

.cvis {display:flex;align-items:center;justify-content:center;background:var(--forest-mid);position:relative;overflow:hidden;--career-img:url("assets/img/career.webp")}
.page-index .cvis {--career-img:url("assets/img/index-career.webp")}
.cvis-media {position:absolute;inset:0;background:var(--career-img) center/cover no-repeat;z-index:0}

.cvis::before {content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(0,174,239,0.18) 0%,transparent 60%)}

.cdots {display:grid;grid-template-columns:repeat(8,1fr);gap:1.25rem;position:relative;z-index:1}

.cdot {width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.1);animation:dp 3.5s ease-in-out infinite}

.cdot:nth-child(3n) {background:rgba(0,174,239,0.6);animation-delay:.7s}

.cdot:nth-child(5n) {background:rgba(0,174,239,0.55);animation-delay:1.4s}

@media (max-width: 900px) {
  .csec {grid-template-columns:1fr}
  .cvis {min-height:240px}
  .csec .careers-text {padding:3rem 6vw}
}

@media (max-width: 600px) {
  .cvis {min-height:200px}
  .csec .careers-text {padding:2.5rem 6vw}
}

@keyframes dp{0%,100%{opacity:.2;transform:scale(1)}
50%{opacity:1;transform:scale(1.5)}
}

/* ── CTA BAND ── */
.page-who .ctaband {background:var(--cream);padding:4rem 5vw}

.page-who .ctaband-in {max-width:1320px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}

.page-who .ctaband h2 {font-family:var(--font-head);font-size:clamp(1.6rem,3vw,2.4rem);font-weight:700;color:var(--forest)}

.page-who .ctaband > .ctaband-in > div > p {color:rgba(27,31,35,0.7);margin-top:.35rem;font-size:.95rem}

.page-who .btn-f {background:var(--forest);color:var(--cream);padding:.9rem 2.2rem;font-size:.79rem;font-weight:700;text-decoration:none;letter-spacing:.06em;text-transform:uppercase;border-radius:30px;white-space:nowrap;transition:background .2s,transform .2s;display:inline-block}
.page-who .btn-f:hover {background:var(--forest-light);transform:translateY(-2px)}

/* ── FOOTER ── */
.page-who .foot {max-width:1320px;margin:0 auto}

.page-who .ftop {display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.1)}

.page-who .fn {font-family:var(--font-head);font-size:1.1rem;font-weight:700;color:var(--cream);margin-bottom:.75rem}
.page-who .fn em {color:var(--gold-lt);font-style:normal}

.page-who .fd {font-size:.84rem;color:rgba(255,255,255,0.65);line-height:1.8;max-width:240px;margin-bottom:1rem}

.page-who .fl {font-size:.77rem;color:rgba(255,255,255,0.6);line-height:1.9}

.page-who .fsoc {display:flex;gap:.45rem;margin-top:1rem}

.page-who .fsoc a {width:32px;height:32px;border:1px solid rgba(255,255,255,0.25);border-radius:50%;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.7);text-decoration:none;font-size:.7rem;font-weight:700;transition:all .2s}
.page-who .fsoc a:hover {border-color:var(--gold-lt);color:var(--gold-lt)}

.page-who .fcol h4 {font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-lt);margin-bottom:1.1rem}

.page-who .fcol ul {list-style:none;display:flex;flex-direction:column;gap:.55rem}

.page-who .fcol a {color:rgba(255,255,255,0.65);text-decoration:none;font-size:.85rem;transition:color .2s}
.page-who .fcol a:hover {color:var(--cream)}

.page-who .fbot {display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;padding:1.5rem 0}

.page-who .fcp {font-size:.77rem;color:rgba(255,255,255,0.5)}

.page-who .fleg {display:flex;gap:1.5rem}

.page-who .fleg a {font-size:.77rem;color:rgba(255,255,255,0.5);text-decoration:none;transition:color .2s}
.page-who .fleg a:hover {color:rgba(255,255,255,0.8)}

/* ── RESPONSIVE ── */
@media(max-width:1060px){.hero,.two{grid-template-columns:1fr}
.page-who .two.flip {direction:ltr}
.page-who .cards3 {grid-template-columns:1fr 1fr}
}

@media(max-width:900px){.nav-links,.nav-cta{display:none}
.page-who .burger {display:flex}
.page-who .topbar {display:none}
.page-who .csec {grid-template-columns:1fr}
.page-who .cvis {display:none}
.page-who .ftop {grid-template-columns:1fr 1fr}
.page-who .vcards {grid-template-columns:1fr}
.page-who .cards3 {grid-template-columns:1fr}
.page-who .locgrid {grid-template-columns:1fr}
.page-who .mgrid {grid-template-columns:1fr}
.page-who .pgrid {grid-template-columns:1fr}
}

@media(max-width:620px){.cards3,.vcards,.mgrid,.pgrid,.locgrid,.doclinks{grid-template-columns:1fr}
.page-who .ftop {grid-template-columns:1fr}
.page-who .sbar {flex-direction:row;flex-wrap:nowrap}
.page-who .sbox {flex:1 1 0;min-width:0;padding:1.4rem 0.75rem}
.page-who .sn {font-size:1.75rem;line-height:1.05}
.page-who .sn sup {font-size:.7rem}
.page-who .sl {font-size:.58rem;letter-spacing:.03em;line-height:1.2}
.page-who .ctaband-in {flex-direction:column;align-items:flex-start}
.page-who .hero {padding:3.25rem 6vw;min-height:0}
.page-who .hero h1 {font-size:clamp(2.1rem,8vw,2.7rem);overflow-wrap:anywhere}
.page-who .hero-desc {font-size:1rem;line-height:1.45;text-align:justify}
.page-who .hero-quote {font-size:0.95rem;letter-spacing:.04em}
.page-who .hero-panel {display:grid;grid-template-columns:1fr 1fr;gap:1px}
.page-who .subnav a {padding:.65rem 1.1rem}
.page-who .subnav-inner {-webkit-overflow-scrolling:touch}
.page-who .sec {padding:3.5rem 6vw}
.page-who .qband {padding:2.5rem 6vw}
.page-who .two {gap:2.5rem}
.page-who .sec.bg-cream .two {grid-template-columns:1fr;justify-items:stretch}
.page-who .sec.bg-cream .two > div {width:100%}
.page-who .sec.bg-off .two {grid-template-columns:1fr;justify-items:stretch}
.page-who .sec.bg-off .two > div {width:100%}
.page-who .sec.bg-pale .two {grid-template-columns:1fr;justify-items:stretch}
.page-who .sec.bg-pale .two > div {width:100%}
.page-who .vbox {padding:2rem;min-height:0}
.page-who .sbox {padding:2rem 1.5rem}
.page-who .card,.page-who .mstone {padding:1.75rem 1.5rem}
.page-who .m-yr {font-size:2rem;overflow-wrap:anywhere}
.page-who .sn {font-size:1.8rem}
.page-who .lbl {letter-spacing:.14em}
.page-who .loc-ct,.page-who .loc2-ct {text-align:left}
.page-who p.bp {text-align:justify}
.page-who .m-p {text-align:justify}
.page-who .cards3 .card-p,
.page-who .cards3 .card p {text-align:justify}
.page-who .sec.bg-pale .lead {text-align:justify}
//.page-who .sec.bg-cream h2.title {text-align:justify}
.page-who .m-tags {display:block;text-align:justify}
.page-who .sec.bg-pale .two > div:first-child > p {font-size:1.1rem;line-height:1.5}
.page-who .sec.bg-pale .two > div:first-child > p + p {margin-top:0.9rem}
.page-who .card-h,.page-who h2.title,.page-who .loc-cn,.page-who .vbox-q {overflow-wrap:anywhere}
.page-who .sec.bg-off .card-h {text-align:justify}
.page-who .loc,.page-who .loc2 {min-height:0}
.page-who .vbox-stats {grid-template-columns:1fr 1fr}
.page-who #header-placeholder + .sec {padding-top:calc(1.5rem + 72px)}
.page-who .mgrid .mstone:nth-child(3) {order:4}
.page-who .mgrid .mstone:nth-child(4) {order:3}
}

@media(max-width:520px){
.page-who .vbox-num,.page-who .vbox-num2 {font-size:2rem}
.page-who .vbox-slbl,.page-who .vbox-slbl2 {font-size:.8rem}
.page-who .hero-stone {letter-spacing:.06em}
}





/* Leadership page styles */
body.page-leadership { background: var(--cream); color: var(--text); overflow-x: hidden; --green-deep: #0068B5; --green-mid: #0B73C9; --green-light: #2A8FE3; --green-pale: #00AEEF; --cream: #F8FAFC; --cream-dark: #E3E9F0; --cream-deeper: #DDE5F0; --ink: #1B1F23; --muted: #5C6770; --white: #FFFFFF; font-family: var(--font-body); }

  /* ── NAV ─────────────────────────────────── */
  .page-leadership nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--green-deep);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .page-leadership .nav-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: .02em;
    text-decoration: none;
  }
  .page-leadership .nav-logo span { color: var(--green-pale); }

  .page-leadership .nav-links {
    display: flex; gap: 2.2rem; list-style: none;
  }
  .page-leadership .nav-links a {
    color: var(--cream-dark);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .85;
    transition: opacity .2s, color .2s;
  }
  .page-leadership .nav-links a:hover { opacity: 1; color: var(--green-pale); }

  .page-leadership .nav-cta {
    background: var(--green-pale);
    color: var(--green-deep) !important;
    padding: .55rem 1.4rem;
    border-radius: 100px;
    font-weight: 500 !important;
    opacity: 1 !important;
    transition: background .2s !important;
  }
  .page-leadership .nav-cta:hover { background: var(--cream) !important; }

  /* ── BREADCRUMB ───────────────────────────── */
  .page-leadership .breadcrumb {
    padding-top: 72px;
    background: var(--green-deep);
    display: flex; align-items: center;
    padding-left: 5vw;
    padding-bottom: 1rem;
    padding-top: calc(72px + 1rem);
    gap: .5rem;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green-pale);
  }
  .page-leadership .breadcrumb a { color: var(--green-pale); text-decoration: none; opacity: .7; }
  .page-leadership .breadcrumb a:hover { opacity: 1; }
  .page-leadership .breadcrumb span { opacity: .4; }

  /* ── HERO ─────────────────────────────────── */
  .page-leadership .hero {
    background: var(--forest-dark);
    padding: 5rem 5vw 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    min-height: 540px;
    position: relative;
    overflow: hidden;
  }

  /* organic leaf bg texture */
  .page-leadership .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 80% 110%, rgba(0,104,181,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% -10%, rgba(0,104,181,0.22) 0%, transparent 55%);
    pointer-events: none;
  }

  /* decorative ring */
  .page-leadership .hero::after {
    content: '';
    position: absolute;
    right: -120px; bottom: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(0,174,239,0.12);
  }

  .page-leadership .hero-text { position: relative; z-index: 1; padding-bottom: 4rem; }

  .page-leadership .hero-eyebrow {
    display: inline-block;
    background: rgba(0,174,239,0.18);
    border: 1px solid rgba(0,174,239,0.28);
    color: var(--green-pale);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.6rem;
  }

  .page-leadership .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.6rem;
  }

  .page-leadership .hero h1 em {
    font-style: italic;
    color: var(--green-pale);
  }

  .page-leadership .hero-sub {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.3;
    color: var(--cream-dark);
    opacity: .85;
    max-width: 480px;
    margin-bottom: 1.5rem;
  }

  .page-leadership .hero-sub strong { color: var(--cream); opacity: 1; font-style: normal; }

  .page-leadership .btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .85rem 2rem;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
  }
  .page-leadership .btn-primary {
    background: var(--green-pale);
    color: var(--cream);
  }
  .page-leadership .btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

  .page-leadership .btn-outline {
    background: transparent;
    border: 1px solid rgba(0,174,239,0.4);
    color: var(--cream-dark);
  }
  .page-leadership .btn-outline:hover { border-color: var(--green-pale); color: var(--green-pale); }

  .page-leadership .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* hero image panel */
  .page-leadership .hero-img {
    position: relative; z-index: 1;
    align-self: end;
  }
  .page-leadership .hero-img-frame {
    background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-light) 100%);
    border-radius: 24px 24px 0 0;
    height: 420px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .page-leadership .hero-img-frame::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .page-leadership .hero-img-icon {
    font-size: 7rem;
    opacity: .18;
    user-select: none;
  }

  /* stat badges */
  .page-leadership .hero-stats {
    position: absolute;
    bottom: 2rem; left: 2rem; right: 2rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }
  .page-leadership .stat-card {
    background: rgba(0,104,181,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,174,239,0.2);
    border-radius: 14px;
    padding: 1rem 1.2rem;
  }
  .page-leadership .stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: .2rem;
  }
  .page-leadership .stat-label {
    font-size: .72rem;
    color: var(--cream-dark);
    opacity: .7;
    letter-spacing: .04em;
  }

  /* ── WHAT WE DO ───────────────────────────── */
  .page-leadership .section { padding: 6rem 5vw; }
  .page-leadership .section-alt { background: var(--white); }

  .page-leadership .section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
  }

  .page-leadership .section-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: .8rem;
  }

  .page-leadership .section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--green-deep);
    margin-bottom: 1.2rem;
  }
  .page-leadership .section-title em { font-style: italic; color: var(--green-light); }

  .page-leadership .section-.section-body strong { color: var(--green-deep); font-weight: 500; }

  /* two-col layout */
  .page-leadership .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  /* leadership split layout */
  .page-leadership .leaders-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
  }
  .page-leadership .leaders-grid .leader-card {
    height: 100%;
  }
  .page-leadership .leaders-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
    height: 100%;
  }
  .page-leadership .leader-card.compact {
    padding: 1.6rem 1.8rem 1.7rem;
  }
  .page-leadership .leader-card.compact h4 {
    font-size: 0.98rem;
  }

  /* leader profile card */
  .page-leadership .leader-card {
    background: var(--cream);
    border: 1px solid var(--cream-deeper);
    border-left: 4px solid var(--green-pale);
    border-radius: 22px;
    padding: 2.4rem 6.5rem 2.4rem 2.2rem;
    box-shadow: 0 14px 34px rgba(30,58,47,.08);
    position: relative;
  }
  .page-leadership .leader-card::after {
    content: '';
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35) 0%, transparent 55%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Crect width='120' height='120' rx='60' fill='%230054A6'/%3E%3Cpath d='M60 62c13 0 24-11 24-24S73 14 60 14 36 25 36 38s11 24 24 24zm0 10c-20 0-36 10-36 22v12h72V94c0-12-16-22-36-22z' fill='%23EAF4FF'/%3E%3C/svg%3E") center/cover no-repeat;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    border: 3px solid var(--cream);
  }
  .page-leadership .leader-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-mid);
    margin: .2rem 0 1rem;
  }
  .page-leadership .leader-card ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }
  .page-leadership .leader-card li {
    position: relative;
    padding-left: 1.5rem;
  }
  .page-leadership .leader-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-pale);
    font-weight: 800;
  }
  .page-leadership .leader-card .section-body {
    font-size: .98rem;
    line-height: 1.7;
    color: var(--muted);
  }
  .page-leadership .leader-card .section-body strong {
    color: var(--ink);
    font-weight: 600;
  }
  .page-leadership .leader-card > p {
    font-size: .96rem;
    color: var(--muted);
    line-height: 1.7;
  }

  @media (max-width: 680px) {
    .page-leadership .leader-card {
      padding: 2.2rem 2rem;
    }
    .page-leadership .leader-card::after {
      width: 56px;
      height: 56px;
      top: 1.2rem;
      right: 1.2rem;
    }
  }

  .page-leadership .what-visual {
    background: var(--green-deep);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }
  .page-leadership .what-visual::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,174,239,0.35) 0%, transparent 70%);
  }

  .page-leadership .what-visual-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 1.2rem;
    position: relative; z-index: 1;
  }
  .page-leadership .what-visual-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: .95rem;
    line-height: 1.5;
  }
  .page-leadership .wvl-dot {
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--green-pale);
    border-radius: 50%;
    margin-top: 6px;
  }

  /* ── HOW WE WORK ─────────────────────────── */
  .page-leadership .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .page-leadership .card {
    background: var(--cream);
    border: 1px solid var(--cream-deeper);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }

  .page-leadership .section-alt .card {
    background: var(--cream-dark);
  }

  .page-leadership .card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30,58,47,.1); }

  .page-leadership .card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-pale));
    opacity: 0;
    transition: opacity .25s;
  }
  .page-leadership .card:hover::before { opacity: 1; }

  .page-leadership .card-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cream-deeper);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .page-leadership .card-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: .7rem;
  }
  .card-/* ── INSIGHTS ─────────────────────────────── */
  .page-leadership .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .page-leadership .insight-card {
    background: var(--white);
    border: 1px solid var(--cream-deeper);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
  }
  .page-leadership .insight-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30,58,47,.1); }

  .page-leadership .insight-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    opacity: .35;
    position: relative;
    overflow: hidden;
  }

  .page-leadership .insight-thumb-1 { background: linear-gradient(135deg, #0B73C9, #0068B5); }
  .page-leadership .insight-thumb-2 { background: linear-gradient(135deg, #1F86D9, #0B73C9); }
  .page-leadership .insight-thumb-3 { background: linear-gradient(135deg, #2A8FE3, #1F86D9); }

  .page-leadership .insight-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20Z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .page-leadership .insight-.insight-tags {
    display: flex; gap: .4rem; flex-wrap: wrap;
    margin-bottom: .8rem;
  }
  .page-leadership .tag {
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--green-light);
    background: rgba(0,174,239,0.12);
    padding: .25rem .7rem;
    border-radius: 100px;
  }

  .page-leadership .insight-title {
    font-family: var(--font-body);
    font-size: .97rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--green-deep);
    flex: 1;
  }

  .page-leadership .insight-arrow {
    margin-top: 1rem;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-light);
    display: flex; align-items: center; gap: .4rem;
  }

  .page-leadership .insights-more {
    margin-top: 2.5rem;
    text-align: center;
  }

  /* ── CTA BAND ─────────────────────────────── */
  .page-leadership .cta-band {
    background: var(--green-deep);
    padding: 5rem 5vw;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
  }
  .page-leadership .cta-band::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,174,239,0.25) 0%, transparent 65%);
  }
  .page-leadership .cta-tag { color: var(--green-pale); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem; }
  .page-leadership .cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.2;
  }
  .page-leadership .cta-title em { font-style: italic; color: var(--green-pale); }

  /* ── FOOTER ──────────────────────────────── */
  .page-leadership footer {
    background: var(--ink);
    padding: 4rem 5vw 2rem;
    color: var(--cream-dark);
  }
  .page-leadership .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .page-leadership .footer-brand {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 1rem;
  }
  .page-leadership .footer-brand span { color: var(--green-pale); }
  .page-leadership .footer-desc { font-size: .88rem; line-height: 1.7; color: var(--cream-dark); opacity: .6; max-width: 280px; }

  .page-leadership .footer-col h4 {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 1rem;
  }
  .page-leadership .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
  .page-leadership .footer-col a { color: var(--cream-dark); opacity: .55; text-decoration: none; font-size: .88rem; transition: opacity .2s; }
  .page-leadership .footer-col a:hover { opacity: 1; }

  .page-leadership .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem; color: var(--cream-dark); opacity: .35;
  }
  .page-leadership .footer-bottom a { color: inherit; text-decoration: none; }
  .page-leadership .footer-bottom a:hover { opacity: .8; }

  /* ── DECORATIVE LEAF SVG ─────────────────── */
  .page-leadership .leaf-accent {
    position: absolute;
    opacity: .06;
    pointer-events: none;
    user-select: none;
  }

  /* ── RESPONSIVE ───────────────────────────── */
  @media (max-width: 900px) {
    .page-leadership .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; }
    .page-leadership .hero-img { display: none; }
    .page-leadership .two-col { grid-template-columns: 1fr; gap: 3rem; }
    .page-leadership .leaders-grid { grid-template-columns: 1fr; }
    .page-leadership .leaders-side { grid-template-columns: 1fr; height: auto; }
    .page-leadership .cards-grid { grid-template-columns: 1fr 1fr; }
    .page-leadership .insights-grid { grid-template-columns: 1fr 1fr; }
    .page-leadership .footer-top { grid-template-columns: 1fr 1fr; }
    .page-leadership .cta-band { grid-template-columns: 1fr; text-align: center; }
    .page-leadership .nav-links { display: none; }
  }

  @media (max-width: 580px) {
    .page-leadership .leaders-side { grid-template-columns: 1fr; }
    .page-leadership .cards-grid { grid-template-columns: 1fr; }
    .page-leadership .insights-grid { grid-template-columns: 1fr; }
    .page-leadership .footer-top { grid-template-columns: 1fr; }
  }

  /* ── SCROLL ANIMATIONS ─────────────────────── */
  .page-leadership .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .page-leadership .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }




/* Spectrum page styles */
body.page-spectrum { background: var(--white); color: var(--text); overflow-x: hidden; font-family: var(--font-body); --ff-display: var(--font-head); --ff-body: var(--font-body); --green-deep: #0068B5; --green-mid: #0B73C9; --green-light: #2A8FE3; --green-pale: #00AEEF; --cream: #F8FAFC; --cream-warm: #E9EFF5; --cream-dark: #DDE5F0; --accent: #00AEEF; --accent-dark: #007DC2; --text-dark: #1B1F23; --text-mid: #4A5560; --text-light: #7A8793; --white: #FFFFFF; }

/* Base typography for Spectrum page to align with Index defaults */
.page-spectrum div,
.page-spectrum section,
.page-spectrum span {
  font-family: inherit;
  color: inherit;
}

.page-spectrum h1,
.page-spectrum h2,
.page-spectrum h3,
.page-spectrum h4,
.page-spectrum h5,
.page-spectrum h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-spectrum p {
  font-size: 1.10rem;
  line-height: 1.85;
  color: #3A4047;
}

  /* ─── NAV ─── */
  .page-spectrum nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .page-spectrum .nav-logo {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .page-spectrum .nav-logo span { color: var(--accent-dark); }

  .page-spectrum .nav-links {
    display: flex; align-items: center; gap: 2.2rem;
    list-style: none;
  }
  .page-spectrum .nav-links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-mid);
    text-decoration: none; transition: color .2s;
  }
  .page-spectrum .nav-links a:hover { color: var(--green-deep); }

  .page-spectrum .nav-cta {
    background: var(--green-deep); color: var(--cream) !important;
    padding: 0.6rem 1.4rem; border-radius: 2px;
    letter-spacing: 0.12em !important;
    transition: background .2s !important;
  }
  .page-spectrum .nav-cta:hover { background: var(--green-mid) !important; }

  @media (max-width: 1200px) {
    .page-spectrum .nav-links { gap: 1.2rem; }
    .page-spectrum .nav-links a { font-size: 0.74rem; letter-spacing: 0.06em; }
    .page-spectrum .nav-cta { padding: 0.5rem 1.1rem; font-size: 0.72rem; }
  }

      /* CLIENTS */
    .page-spectrum .clients { background: var(--white); padding: 5rem 5vw; }
    .page-spectrum .clients-label { 
          font-family: var(--font-head);
          font-size: clamp(2rem, 4vw, 2rem);
          font-weight: 700;
          letter-spacing: -0.02em;
          text-transform: uppercase;
          color: var(--forest);
          text-align: center;
          margin-bottom: 3rem;
    }
    .page-spectrum .clients-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 4rem; }
    .page-spectrum .client-logo { font-size: 0.85rem; font-weight: 600; color: #c5c0b5; letter-spacing: 0.08em; transition: color 0.2s; }
    .page-spectrum .client-logo:hover { color: var(--forest); }
    
  /* ─── HERO ─── */
  .page-spectrum .hero {
    min-height: 50vh;
    background: var(--forest-dark);
    position: relative; overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 4rem 6rem;
  }

  .page-spectrum .hero-texture {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,104,181,0.22) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0,174,239,0.14) 0%, transparent 60%);
  }

  /* organic leaf shapes */
  .page-spectrum .hero-leaf {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0.07;
  }
  .page-spectrum .hero-leaf-1 {
    width: 600px; height: 600px;
    background: var(--green-pale);
    top: -80px; right: -80px;
    transform: rotate(25deg);
    animation: float1 8s ease-in-out infinite;
  }
  .page-spectrum .hero-leaf-2 {
    width: 400px; height: 400px;
    background: var(--accent);
    bottom: 100px; right: 200px;
    border-radius: 0 50% 0 50%;
    opacity: 0.06;
    animation: float2 10s ease-in-out infinite;
  }

  @keyframes float1 { 0%,100%{transform:rotate(25deg) translateY(0)} 50%{transform:rotate(25deg) translateY(-20px)} }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(15px)} }

  .page-spectrum .hero-tag {
    position: relative;
    top: 1.2rem;
    left: auto;
    font-size: 1.1rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .page-spectrum .hero-tag::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--accent);
  }

  .page-spectrum .hero-content { position: relative; z-index: 2; max-width: 800px; }

  .page-spectrum .hero-content h1 {
    font-family: var(--ff-display);
    font-size: clamp(3.5rem, 4vw, 6.5rem);
    font-weight: 700;
    line-height: 0.9;
    color: var(--cream);
    margin-bottom: 1.2rem;
  }
  .page-spectrum .hero-content h1 em {
    font-style: italic; color: var(--accent);
  }

  .page-spectrum .hero-content p {
    font-size: 1.35rem; 
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 520px; margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .page-spectrum .hero-cta {
    display: inline-flex; align-items: center; gap: 1rem;
    background: var(--accent); color: var(--green-deep);
    padding: .9rem 2.2rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 2px;
    transition: background .25s, transform .25s;
  }
  .page-spectrum .hero-cta:hover { background: var(--cream); transform: translateY(-2px); }
  .page-spectrum .hero-cta svg { width: 16px; height: 16px; }

  .page-spectrum .hero-scroll {
    position: absolute; bottom: 2.5rem; right: 4rem;
    writing-mode: vertical-rl; text-orientation: mixed;
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green-pale); opacity: .6;
    display: flex; align-items: center; gap: .8rem;
  }
  .page-spectrum .hero-scroll::after {
    content: ''; display: block; width: 1px; height: 50px; background: var(--green-pale); opacity: .4;
  }

  /* ─── INTRO BAND ─── */
  .page-spectrum .intro-band {
    background: var(--cream-warm);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .page-spectrum .intro-band-text {
    padding: 2rem 5rem 2rem 4rem;
    border-right: 1px solid var(--cream-dark);
  }
  .page-spectrum .intro-band-text .eyebrow {
    font-size: 1.10rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--green-light);
    margin-bottom: 1.2rem;
  }
  .page-spectrum .intro-band-text h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 600; line-height: 1;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
  }
  .page-spectrum .intro-band-text h2 strong { font-weight: 700; }
  .page-spectrum .intro-band-text p {
    font-size: 1.15rem; font-weight: 300;
    color: var(--forest-dark); line-height: 1.2;
    margin-bottom: 1rem;
  }
  .page-spectrum .intro-band-text a.link-arrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green-mid);
    text-decoration: none; margin-top: 1rem;
    border-bottom: 1px solid var(--green-pale);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
  }
  .page-spectrum .intro-band-text a.link-arrow .link-arrow-icon {
    display: inline-block;
  }
  .page-spectrum .intro-band-text a.link-arrow:hover { color: var(--accent-dark); border-color: var(--accent-dark); }

  .page-spectrum .intro-band-visual {
    background: var(--green-mid);
    position: relative; overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-spectrum .intro-band-visual .visual-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 30% 60%, rgba(74,124,94,0.6) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(200,169,110,0.3) 0%, transparent 40%);
  }
  .page-spectrum .intro-band-visual .stat-block {
    position: absolute; bottom: 3rem; left: 3rem;
    z-index: 2;
  }
  .page-spectrum .stat-number {
    font-family: var(--ff-display);
    font-size: 5rem; font-weight: 700;
    color: var(--cream); line-height: 1;
  }
  .page-spectrum .stat-label {
    font-size: 1.3rem; font-weight: 400; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.78); margin-top: .3rem;
  }

  .page-spectrum .about-visual {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0;
    width: min(520px, 90%);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .page-spectrum .about-card {
    background: rgba(255,255,255,0.06);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--cream);
  }
  .page-spectrum .about-card.accent {
    background: rgba(255,255,255,0.12);
  }
  .page-spectrum .about-card-num {
    font-family: var(--ff-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
  }
  .page-spectrum .about-card-num span { color: var(--cream); }
  .page-spectrum .about-card-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    font-weight: 400;
  }

  /* ─── LOGOS ─── */
  .page-spectrum .logos-section {
    padding: 4rem 4rem;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
  }
  .page-spectrum .logos-eyebrow {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--text-light);
    text-align: center; margin-bottom: 2.5rem;
  }
  .page-spectrum .logos-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1.5rem 3rem; align-items: center;
  }
  .page-spectrum .logo-pill {
    padding: .5rem 1.5rem;
    background: var(--cream-warm);
    border: 1px solid var(--cream-dark);
    border-radius: 30px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
    color: var(--text-mid);
    white-space: nowrap;
    transition: border-color .2s, color .2s;
  }
  .page-spectrum .logo-pill:hover { border-color: var(--green-pale); color: var(--green-deep); }

  /* ─── SERVICES ─── */
  .page-spectrum .services-section {
    padding: 2rem 4rem;
    background: linear-gradient(135deg, var(--cream-warm) 0%, #c9c8c8 100%);
    position: relative; overflow: hidden;
  }
  .page-spectrum .services-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }

  /* Competence grid variant (matches sustainable-business style) */
  .page-spectrum .services-section--competence .services-grid {
    background: transparent;
    border: none;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-spectrum .services-section--competence .service-card,
  .page-spectrum .services-section--competence .service-card2 {
    background: var(--cream);
    border: 1px solid rgba(1,45,78,0.12);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 10px 24px rgba(0,44,95,0.08);
  }
  .page-spectrum .services-section--competence .service-card h3,
  .page-spectrum .services-section--competence .service-card2 h3 {
    color: var(--forest-dark);
    font-size: 1.2rem;
    min-height: auto;
  }
  .page-spectrum .services-section--competence .service-card p,
  .page-spectrum .services-section--competence .service-card2 p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
  }
  .page-spectrum .services-section--competence .service-cta {
    background: var(--forest);
    color: var(--cream);
    border-color: rgba(1,45,78,0.18);
  }

  .page-spectrum .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem;
  }
  .page-spectrum .services-header .eyebrow {
    font-size: 1.10rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--forest);
    margin-bottom: 1.2rem;
  }
  .page-spectrum .services-header h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700; color: var(--forest-dark);
    line-height: 1.1;
  }
  .page-spectrum .services-header p {
    max-width: 480px; font-size: 1.1rem; font-weight: 700;
    color: #1e4059; line-height: 1.2;
    text-align: right; text-align: justify;
  }

  .page-spectrum .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5px;
    background: rgba(0,104,181,0.18);
    border: 1px solid rgba(0,104,181,0.18);
  }
  .page-spectrum .services-grid.services-grid--five {
    grid-template-columns: repeat(6, 1fr);
  }
  .page-spectrum .services-grid.services-grid--five > a {
    grid-column: span 2;
  }
  .page-spectrum .services-grid.services-grid--five > a:nth-last-child(2),
  .page-spectrum .services-grid.services-grid--five > a:last-child {
    grid-column: span 3;
  }

  .page-spectrum .service-card2 {
    background: rgb(138 161 181);
    padding: 2.8rem 2.5rem;
    position: relative; overflow: hidden;
    transition: background .3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }

  .page-spectrum .service-card {
    background: rgba(30,46,59, 0.75);
    padding: 2.8rem 2.5rem;
    position: relative; overflow: hidden;
    transition: background .3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }
  //.page-spectrum .service-card:hover { background: rgba(174,218,251,0.85); }
  //.page-spectrum .service-card:hover .service-arrow { transform: translate(4px,-4px); opacity: 1; }
  //.page-spectrum .service-card:hover h3,
  /* .page-spectrum .service-card:hover p {
    font-weight: 400;
    color: var(--green-deep);
  } */

  .page-spectrum .service-card-num {
    font-family: var(--ff-display);
    font-size: 3.5rem; font-weight: 700;
    color: rgba(174,218,251,0.75);
    position: absolute; top: 1.5rem; right: 1.5rem;
    line-height: 1;
  }

  .page-spectrum .service-icon {
    width: 44px; height: 44px;
    background: #9cd2fb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
  }
  .page-spectrum .service-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

  .page-spectrum .service-card h3,
  .page-spectrum .service-card2 h3 {
    font-family: var(--ff-display);
    font-size: 1.25rem; font-weight: 600;
    color: var(--cream); margin-bottom: .9rem;
    line-height: 1.2;
    min-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
   
  }
  .page-spectrum .service-card p,
  .page-spectrum .service-card2 p {
    font-size: 1.15rem; font-weight: 300;
    color: rgba(255, 255, 255, 0.7); line-height: 1.4;
  }

  .page-spectrum .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 10px 22px rgba(0,45,78,0.18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    align-self: flex-start;
  }
  .page-spectrum .service-card .service-cta,
  .page-spectrum .service-card2 .service-cta {
    margin-top: auto;
  }
  .page-spectrum .service-card2 .service-cta {
    background: var(--green-deep);
    color: var(--cream);
    border-color: rgba(1,45,78,0.18);
  }
  .page-spectrum .service-card:hover .service-cta,
  .page-spectrum .service-card2:hover .service-cta {
    transform: translateY(-1px);
  }

  .page-spectrum .service-arrow {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    opacity: .4; transition: transform .25s, opacity .25s;
    color: var(--accent);
  }

  .page-spectrum .motive-ribbon {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #dbdfe1, #dbdfe1);
    padding: 1.4rem 4rem;
  }
  .page-spectrum .motive-ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
  }
  .page-spectrum .motive-ribbon-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--cream);
  }
  .page-spectrum .motive-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: var(--forest-dark);
    white-space: nowrap;
  }
  .page-spectrum .motive-text {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest-dark);
    text-align: right;
  }

  /* ─── INSIGHTS ─── */
  .page-spectrum .insights-section {
    padding: 7rem 4rem;
    background: var(--cream-warm);
  }
  .page-spectrum .section-header-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 3.5rem;
  }
  .page-spectrum .section-header-row .eyebrow {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--green-light);
    margin-bottom: .6rem;
  }
  .page-spectrum .section-header-row h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600; color: var(--green-deep);
  }
  .page-spectrum .section-header-row a {
    font-size: .8rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green-mid);
    text-decoration: none; border-bottom: 1px solid var(--green-pale);
    padding-bottom: 2px; white-space: nowrap;
    transition: color .2s;
  }
  .page-spectrum .section-header-row a:hover { color: var(--accent-dark); }

  .page-spectrum .insights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--cream-dark);
  }
  /* first card spans 2 rows */
  .page-spectrum .insights-grid .insight-card:first-child {
    grid-row: span 2;
  }

  .page-spectrum .insight-card {
    background: var(--cream);
    padding: 2rem;
    position: relative; overflow: hidden;
    cursor: pointer;
    transition: background .25s;
  }
  .page-spectrum .insight-card:hover { background: white; }
  .page-spectrum .insight-card:hover .insight-read { color: var(--accent-dark); }

  .page-spectrum .insight-img {
    width: 100%; aspect-ratio: 16/9;
    background: var(--green-light);
    border-radius: 2px; margin-bottom: 1.2rem;
    overflow: hidden; position: relative;
  }
  .page-spectrum .insight-img-inner {
    position: absolute; inset: 0;
    background-image: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(122,171,138,0.5) 0%, transparent 70%);
  }
  .page-spectrum .insight-card:first-child .insight-img { aspect-ratio: 4/3; }

  .page-spectrum .insight-tag {
    font-size: .68rem; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: var(--green-light);
    margin-bottom: .5rem;
  }
  .page-spectrum .insight-card h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--text-dark); line-height: 1.35;
    margin-bottom: .8rem;
  }
  .page-spectrum .insight-card:first-child h3 { font-size: 1.45rem; }

  .page-spectrum .insight-read {
    font-size: .75rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-light);
    transition: color .2s;
  }

  /* ─── CAREERS ─── */
  .page-spectrum .careers-section {
    background: var(--green-mid);
    padding: 7rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    position: relative; overflow: hidden;
  }
  .page-spectrum .careers-section::after {
    content: 'GROW';
    position: absolute; right: -1rem; top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-display);
    font-size: 14rem; font-weight: 700; line-height: 1;
    color: rgba(255,255,255,0.04);
    pointer-events: none; user-select: none;
  }

  .page-spectrum .careers-text .eyebrow {
    font-size: .7rem; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1rem;
  }
  .page-spectrum .careers-text h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; color: var(--cream);
    line-height: 1.15; margin-bottom: 1.5rem;
  }
  .page-spectrum .careers-text p {
    font-size: .95rem; font-weight: 300;
    color: rgba(255,255,255,0.78); line-height: 1.8;
    margin-bottom: 2rem;
  }
  .page-spectrum .careers-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .page-spectrum .btn-primary {
    background: var(--accent); color: var(--green-deep);
    padding: .85rem 2rem;
    font-size: .8rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 2px; transition: background .2s, transform .2s;
    display: inline-block;
  }
  .page-spectrum .btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

  .page-spectrum .btn-outline {
    background: transparent; color: var(--cream);
    padding: .85rem 2rem; border: 1px solid rgba(255,255,255,0.35);
    font-size: .8rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 2px; transition: border-color .2s, background .2s;
    display: inline-block;
  }
  .page-spectrum .btn-outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.08); }

  .page-spectrum .careers-perks {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .page-spectrum .perk {
    background: rgba(26,58,42,0.3);
    border: 1px solid rgba(0,174,239,0.22);
    border-radius: 4px; padding: 1.5rem;
  }
  .page-spectrum .perk-icon {
    font-size: 1.6rem; margin-bottom: .6rem;
  }
  .page-spectrum .perk h4 {
    font-size: .9rem; font-weight: 600;
    color: var(--cream); margin-bottom: .3rem;
  }
  .page-spectrum .perk p {
    font-size: .8rem; font-weight: 300;
    color: rgba(255,255,255,0.7); line-height: 1.5;
    margin: 0;
  }

  /* ─── CTA BAND ─── */
  .page-spectrum .cta-band {
    background: #9cd2fb;
    padding: 4.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .page-spectrum .cta-band h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--green-deep);
    line-height: 1.15;
  }
  .page-spectrum .cta-band h2 em { font-style: italic; }
  .page-spectrum .cta-band-btn {
    background: var(--green-deep); color: var(--cream);
    padding: 1rem 2.5rem;
    font-size: .82rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 2px; white-space: nowrap;
    transition: background .2s;
  }
  .page-spectrum .cta-band-btn:hover { background: var(--green-mid); }

  /* ─── FOOTER ─── */
  .page-spectrum footer {background:var(--forest);padding:4rem 5vw 0}
.page-spectrum .foot {max-width:1320px;margin:0 auto}
.page-spectrum .ftop {display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.1)}
.page-spectrum .fn {font-family:var(--fh);font-size:1.1rem;font-weight:700;color:var(--cream);margin-bottom:.75rem}.fn em{color:var(--gold-lt);font-style:normal}
.page-spectrum .fd {font-size:.84rem;color:rgba(245,240,230,.48);line-height:1.8;max-width:240px;margin-bottom:1rem}
.page-spectrum .fl {font-size:.77rem;color:rgba(245,240,230,.38);line-height:1.9}
.page-spectrum .fsoc {display:flex;gap:.45rem;margin-top:1rem}
.page-spectrum .fsoc a {width:32px;height:32px;border:1px solid rgba(245,240,230,.18);border-radius:50%;display:flex;align-items:center;justify-content:center;color:rgba(245,240,230,.45);text-decoration:none;font-size:.7rem;font-weight:700;transition:all .2s}.fsoc a:hover{border-color:var(--gold-lt);color:var(--gold-lt)}
.page-spectrum .fcol h4 {font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-lt);margin-bottom:1.1rem}
.page-spectrum .fcol ul {list-style:none;display:flex;flex-direction:column;gap:.55rem}
.page-spectrum .fcol a {color:rgba(245,240,230,.43);text-decoration:none;font-size:.85rem;transition:color .2s}.fcol a:hover{color:var(--cream)}
.page-spectrum .fbot {display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;padding:1.5rem 0}
.page-spectrum .fcp {font-size:.77rem;color:rgba(245,240,230,.28)}
.page-spectrum .fleg {display:flex;gap:1.5rem}
.page-spectrum .fleg a {font-size:.77rem;color:rgba(245,240,230,.28);text-decoration:none;transition:color .2s}.fleg a:hover{color:rgba(245,240,230,.7)}

  /* ─── ANIMATIONS ─── */
  .page-spectrum .fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
  .page-spectrum .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .page-spectrum nav { padding: 1rem 1.5rem; }
    .page-spectrum .nav-links { display: none; }
    .page-spectrum .services-section { padding: 2.4rem 1.5rem; }
    .page-spectrum .hero {
      padding: 4.5rem 1.5rem 4.5rem;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 1rem;
    }
    .page-spectrum .hero-tag {
      position: static;
      margin-bottom: 1rem;
    }
    .page-spectrum .hero-content h1 { line-height: 1.05; }
    .page-spectrum .intro-band { grid-template-columns: 1fr; }
    .page-spectrum .intro-band-text { padding: 2rem 1.5rem; border-right: 0; }
    .page-spectrum .intro-band-visual { min-height: 240px; }
    .page-spectrum .about-visual { grid-template-columns: repeat(2, 1fr); width: min(520px, 100%); }
    .page-spectrum .services-grid { grid-template-columns: 1fr; }
    .page-spectrum .services-grid.services-grid--five { grid-template-columns: 1fr; }
    .page-spectrum .services-grid.services-grid--five > a { grid-column: span 1; }
    .page-spectrum .services-grid.services-grid--five > a:nth-last-child(2),
    .page-spectrum .services-grid.services-grid--five > a:last-child { grid-column: span 1; }
    .page-spectrum .services-section--competence .services-grid { grid-template-columns: 1fr; }
    .page-spectrum .insights-grid { grid-template-columns: 1fr; }
    .page-spectrum .insights-grid .insight-card:first-child { grid-row: auto; }
    .page-spectrum .careers-section { grid-template-columns: 1fr; gap: 3rem; }
    .page-spectrum .careers-section::after { display: none; }
    .page-spectrum .footer-top { grid-template-columns: 1fr 1fr; }
    .page-spectrum .services-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .page-spectrum .services-header p { text-align: left; }
    .page-spectrum .cta-band { flex-direction: column; }
    .page-spectrum .motive-ribbon-inner { flex-direction: column; align-items: flex-start; }
    .page-spectrum .motive-text { text-align: left; font-size: 1.05rem; }
    .page-spectrum .service-card,
    .page-spectrum .service-card2 { padding: 2.2rem 2rem; }
    .page-spectrum .service-card h3,
    .page-spectrum .service-card2 h3 { font-size: 1.08rem; min-height: auto; }
    .page-spectrum .service-card p,
    .page-spectrum .service-card2 p { font-size: 1rem; }
    .page-spectrum .services-section--competence .service-card,
    .page-spectrum .services-section--competence .service-card2 { padding: 2rem; }
  }

  @media (max-width: 680px) {
    .page-spectrum .services-section { padding: 2.1rem 1.1rem; }
    .page-spectrum .service-card,
    .page-spectrum .service-card2 { padding: 2rem 1.6rem; }
    .page-spectrum .service-card h3,
    .page-spectrum .service-card2 h3 {
      display: block;
      -webkit-line-clamp: unset;
      -webkit-box-orient: initial;
      overflow: visible;
      line-height: 1.25;
    }
    .page-spectrum .service-card p,
    .page-spectrum .service-card2 p { font-size: 0.98rem; line-height: 1.5; }
    .page-spectrum .service-arrow { display: none; }
    .page-spectrum .services-grid.services-grid--five { grid-template-columns: 1fr; }
    .page-spectrum .services-section--competence .service-card,
    .page-spectrum .services-section--competence .service-card2 { padding: 1.8rem; }
    .page-spectrum .services-section--competence .service-card h3,
    .page-spectrum .services-section--competence .service-card2 h3 { font-size: 1.1rem; }
    .page-spectrum .services-header { gap: 1rem; }
    .page-spectrum .services-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .page-spectrum .ind-features { gap: 0.5rem; }
    .page-spectrum .ind-features li { font-size: 0.98rem; line-height: 1.45; }
    .page-spectrum .ind-features li::before { font-size: 1.4rem; line-height: 1; margin-top: 0.1rem; }
    .page-spectrum .intro-band-text a.link-arrow {
      flex-direction: row;
      align-items: center;
      gap: 0.6rem;
    }
    .page-spectrum .intro-band-text a.link-arrow .link-arrow-icon { display: inline-block; }
  }

/* ===============================
   Intel-inspired delivery/core pages
   =============================== */
.page-intel {
  font-family: var(--font-body);
  background: var(--off);
  color: var(--text);
  overflow-x: hidden;
  --green-deep:    #003B78;
  --green-mid:     var(--forest);
  --green-soft:    var(--forest-light);
  --green-light:   var(--accent);
  --green-pale:    var(--forest-pale);
  --cream:         var(--off);
  --cream-warm:    #F0F4F8;
  --cream-deep:    var(--cream-dark);
  --text-dark:     var(--text);
  --text-mid:      #3C4856;
  --text-light:    #6B7682;
  --white:         #ffffff;
}

/* Top bar */
.page-intel .top-bar {
  background: #002C5F;
  color: #DCEBFA;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 4vw;
  display: flex;
  justify-content: flex-end;
  gap: 2.2rem;
}
.page-intel .top-bar a { color: #DCEBFA; text-decoration: none; opacity: 0.85; transition: opacity .2s; }
.page-intel .top-bar a:hover { opacity: 1; }

/* Navbar */
.page-intel nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.3s;
}

.page-intel .nav-logo {
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  color: var(--forest); letter-spacing: -0.01em; text-decoration: none;
}
.page-intel .nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--forest);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.page-intel .nav-logo-mark svg { width: 20px; height: 20px; fill: var(--white); }
.page-intel .nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.page-intel .nav-logo-text span { color: var(--forest-mid); }

.page-intel .nav-links { display: flex; gap: 4rem; list-style: none; font-size: 1.10rem;}
.page-intel .nav-links > li { position: relative; }
.page-intel .nav-links > li > a {
      color: rgba(27,31,35,0.7); text-decoration: none;
      font-weight: 500; transition: color 0.2s;
}
.page-intel .nav-links > li > a:hover,
.page-intel .nav-links > li > a.active { color: var(--forest); }

.page-intel .nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .25s, transform .2s !important;
}
.page-intel .nav-cta:hover { background: var(--forest-mid) !important; transform: translateY(-1px); }

/* Breadcrumb */
.page-intel .breadcrumb {
  background: #F2F6FB;
  padding: 0.95rem 4vw;
  border-bottom: 1px solid var(--cream-deep);
}
.page-intel .breadcrumb a,
.page-intel .breadcrumb span {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.page-intel .breadcrumb a:hover { color: var(--forest); }
.page-intel .breadcrumb .sep { margin: 0 0.5rem; color: var(--forest-light); }
.page-intel .breadcrumb .current { color: var(--forest); font-weight: 600; }

/* Hero */
.page-intel .hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(120deg, #15467c 0%, #2667a8 52%, #2c85ca 100%);
}

.page-intel .hero-content {
  padding: 5.5rem 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: var(--white);
}

.page-intel .hero-content::before,
.page-intel .hero-content::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146,208,250,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-intel .hero-content::before {
  bottom: -120px; left: -120px;
  width: 420px; height: 420px;
}
.page-intel .hero-content::after {
  top: -120px; right: -80px;
  width: 320px; height: 320px;
}

.page-intel .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #EAF4FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.8rem;
  width: fit-content;
}
.page-intel .hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #9CD2FB;
  border-radius: 50%;
}

.page-intel .hero-title {
  font-family: var(--white);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.page-intel .hero-title em {
  font-style: normal;
  color: #9CD2FB;
}

.page-intel .hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.4rem;
  max-width: 520px;
}

.page-intel .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  width: fit-content;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}
.page-intel .hero-btn:hover {
  background: #EAF4FF;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}
.page-intel .hero-btn svg { width: 16px; height: 16px; }

.page-intel .hero-visual {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.page-intel .hero-visual-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(74,124,94,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(200,222,206,0.35) 0%, transparent 55%),
    linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-intel .hero-illustration { width: 78%; max-width: 420px; opacity: 0.9; }

.page-intel .float-node {
  position: absolute;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green-soft);
  opacity: 0.6;
  animation: floatUp 6s ease-in-out infinite;
}
.page-intel .float-node:nth-child(1) { width:18px;height:18px; top:15%;left:20%; animation-delay:0s; }
.page-intel .float-node:nth-child(2) { width:12px;height:12px; top:60%;left:65%; animation-delay:2s; }
.page-intel .float-node:nth-child(3) { width:24px;height:24px; top:75%;left:25%; animation-delay:4s; }
.page-intel .float-node:nth-child(4) { width:10px;height:10px; top:30%;left:75%; animation-delay:1.5s; }

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Section shared */
.page-intel section { padding: 2.5rem 4vw; }

.page-intel .section-label {
  font-size: 0.90rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.page-intel .section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--forest);
}

.page-intel .section-heading {
  font-family: var(--cream);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}
.page-intel .section-heading em {
  font-style: normal;
  color: var(--forest);
}

/* What we do */
.page-intel .what-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.page-intel .what-text p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.page-intel .what-text p:first-of-type {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.page-intel .what-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1.4rem;
  transition: gap .2s, color .2s;
}
.page-intel .what-link:hover { gap: 1rem; color: var(--forest-mid); }
.page-intel .what-link svg { width:16px; height:16px; }

.page-intel .what-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.page-intel .stat-card {
  background: #F8FAFD;
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.page-intel .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,44,95,0.1); }
.page-intel .stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--forest), var(--forest-light));
  border-radius: 4px 0 0 4px;
}
.page-intel .stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.page-intel .stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.page-intel .stat-card.featured {
  background: #003B78;
  border-color: #003B78;
  grid-column: span 2;
}
.page-intel .stat-card.featured::before { background: #9CD2FB; }
.page-intel .stat-card.featured .stat-num { color: var(--white); }
.page-intel .stat-card.featured .stat-label { color: rgba(255,255,255,0.75); }

/* How we work */
.page-intel .how-section {
  background: #c6ebfe;
  position: relative;
  overflow: hidden;
}
.page-intel .how-section::before {
  content: '';
  position: absolute;
  right: -150px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,104,181,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-intel .how-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.page-intel .how-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.page-intel .how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.page-intel .how-card {
  background: #ebf8ff;
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.page-intel .how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px #a3d1fb;
  border-color: var(--forest-pale);
}
.page-intel .how-card-number {
  font-family: var(--font-head);
  font-size: 3.1rem;
  font-weight: 800;
  color: #a3d1fb;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color .3s;
}
.page-intel .how-card:hover .how-card-number { color: #a3d1fb; }
.page-intel .how-card-icon {
  width: 44px; height: 44px;
  background: var(--forest-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .3s;
}
.page-intel .how-card:hover .how-card-icon { background: var(--forest); }
.page-intel .how-card-icon svg { width:22px; height:22px; fill: var(--forest); transition: fill .3s; }
.page-intel .how-card:hover .how-card-icon svg { fill: var(--white); }
.page-intel .how-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}
.page-intel .how-card p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Insights */
.page-intel .insights-section {
  background: #002B5C;
  position: relative;
  overflow: hidden;
}
.page-intel .insights-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(156,210,251,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-intel .insights-section .section-label { color: #9CD2FB; }
.page-intel .insights-section .section-label::before { background: #9CD2FB; }
.page-intel .insights-section .section-heading { color: var(--white); }

.page-intel .insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.page-intel .insights-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9CD2FB;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.page-intel .insights-link:hover { gap: 0.9rem; color: var(--white); }

.page-intel .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.page-intel .insight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(156,210,251,0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, background .3s, border-color .3s;
  cursor: pointer;
}
.page-intel .insight-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(156,210,251,0.45);
}
.page-intel .insight-img {
  width: 100%; aspect-ratio: 5/3;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-intel .insight-img-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.page-intel .insight-img-leaf {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 120px; height: 120px;
  opacity: 0.12;
}
.page-intel .insight-body { padding: 1.6rem; }
.page-intel .insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.page-intel .insight-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CD2FB;
  background: rgba(156,210,251,0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
}
.page-intel .insight-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.page-intel .insight-title:hover { color: #CFE7FF; }

/* CTA */
.page-intel .cta-section {
  background: #EAF3FB;
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  padding: 5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.page-intel .cta-section::before {
  content: '';
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,104,181,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-intel .cta-text .section-heading { margin-bottom: 0.6rem; }
.page-intel .cta-text p {
  font-size: 1rem;
  color: var(--text-light);
}
.page-intel .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 22px rgba(0,44,95,0.2);
}
.page-intel .cta-btn:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,44,95,0.28);
}

/* Footer */
.page-intel footer {
  background: #00234B;
  color: var(--white);
  padding: 4.5rem 6vw 2.5rem;
}
.page-intel .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.page-intel .footer-brand .nav-logo { margin-bottom: 1.2rem; }
.page-intel .footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
}
.page-intel .footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9CD2FB;
  margin-bottom: 1.2rem;
}
.page-intel .footer-col ul { list-style: none; }
.page-intel .footer-col ul li { margin-bottom: 0.6rem; }
.page-intel .footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s;
}
.page-intel .footer-col ul li a:hover { color: var(--white); }
.page-intel .footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.page-intel .footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9CD2FB;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color .2s;
}
.page-intel .footer-contact a:hover { color: var(--white); }

.page-intel .footer-bottom {
  border-top: 1px solid rgba(156,210,251,0.18);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-intel .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.page-intel .footer-bottom-links { display: flex; gap: 1.5rem; }
.page-intel .footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color .2s;
}
.page-intel .footer-bottom-links a:hover { color: var(--white); }

/* Animations */
.page-intel .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.page-intel .fade-in.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .page-intel section { padding: 4.5rem 4vw; }
  .page-intel .hero { grid-template-columns: 1fr; }
  .page-intel .hero-visual { min-height: 300px; }
  .page-intel .what-section { grid-template-columns: 1fr; gap: 3rem; }
  .page-intel .how-grid { grid-template-columns: 1fr 1fr; }
  .page-intel .insights-grid { grid-template-columns: 1fr 1fr; }
  .page-intel .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-intel .cta-section { flex-direction: column; text-align: center; }
}
@media (max-width: 680px) {
  .page-intel nav { padding: 0 1.5rem; }
  .page-intel section { padding: 3.5rem 1.5rem; }
  .page-intel .hero-content { padding: 4rem 1.5rem; }
  .page-intel .hero-title { font-size: clamp(2.2rem, 7vw, 2.9rem); line-height: 1.1; }
  .page-intel .hero-subtitle { font-size: 1rem; line-height: 1.6; }
  .page-intel .section-heading { font-size: clamp(1.7rem, 6vw, 2.3rem); }
  .page-intel .how-grid { grid-template-columns: 1fr; }
  .page-intel .how-card { padding: 1.6rem; }
  .page-intel .how-card p { font-size: 1rem; line-height: 1.45; }
  .page-intel .insights-grid { grid-template-columns: 1fr; }
  .page-intel .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-intel .cta-section { padding: 3.5rem 1.5rem; }
  .page-intel footer { padding: 3.5rem 1.5rem 2.5rem; }
  .page-intel .what-stats { grid-template-columns: 1fr; }
  .page-intel .stat-label { font-size: 1rem; }
  .page-intel .stat-card.featured { grid-column: auto; }
  .page-intel .breadcrumb { padding: 0.95rem 1.5rem; }
  .page-intel .top-bar { padding: 0.6rem 1.5rem; gap: 1.5rem; }
  .page-intel .insights-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .page-intel .justify-mobile { text-align: justify; }
  .page-intel .justify-mobile li { text-align: justify; }
}

/* ===============================
   Delivery Excellence (forest green + cream)
   =============================== */
body.page-delivery {
  --forest: #1F4D3A;
  --forest-mid: #2E6B50;
  --forest-light: #4B8A6A;
  --forest-pale: #E4F0E7;
  --cream: #F7F2E9;
  --cream-dark: #E6DED2;
  --accent: #9ED1B6;
  --text: #1F2A23;
  --muted: #5C6B62;
  --gold: #C7A66A;

  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

.page-delivery .delivery-hero {
  position: relative;
  background: linear-gradient(135deg, #1F4D3A 0%, #295E46 55%, #2E6B50 100%);
  padding: 5.5rem 5vw 6rem;
  overflow: hidden;
}
.page-delivery .delivery-hero::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  left: -120px; bottom: -160px;
  background: radial-gradient(circle, rgba(158,209,182,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.page-delivery .delivery-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(199,166,106,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.page-delivery .hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.page-delivery .crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.page-delivery .crumbs span { color: rgba(255,255,255,0.4); }

.page-delivery .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.page-delivery .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F3FAF6;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.page-delivery .hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #F8FAF8;
  margin-bottom: 1rem;
}
.page-delivery .hero-title em {
  font-style: italic;
  color: var(--accent);
}
.page-delivery .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2rem;
}
.page-delivery .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
}
.page-delivery .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.page-delivery .hero-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 2rem;
  backdrop-filter: blur(6px);
}
.page-delivery .hero-panel h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #F7FBF8;
  margin-bottom: 1rem;
}
.page-delivery .hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.page-delivery .hero-panel li {
  display: flex;
  gap: 0.8rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}
.page-delivery .hero-panel li span {
  color: var(--accent);
  font-weight: 700;
}

.page-delivery section.delivery-section {
  padding: 5rem 5vw;
}
.page-delivery .section-head {
  max-width: 820px;
  margin-bottom: 2.5rem;
}
.page-delivery .section-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.7rem;
}
.page-delivery .section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.page-delivery .section-head p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.page-delivery .what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.page-delivery .what-card {
  background: #FFFFFF;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(31,77,58,0.08);
}
.page-delivery .what-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.page-delivery .what-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-delivery .approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.page-delivery .approach-card {
  background: #FFFFFF;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 1.8rem;
  transition: transform .2s, box-shadow .2s;
}
.page-delivery .approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(31,77,58,0.12);
}
.page-delivery .approach-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.page-delivery .approach-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-delivery .insights-strip {
  background: var(--forest);
  color: #F7FBF8;
  padding: 5rem 5vw;
}
.page-delivery .insights-strip .section-head h2 { color: #F7FBF8; }
.page-delivery .insights-strip .section-head p { color: rgba(255,255,255,0.72); }

.page-delivery .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.page-delivery .insight-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
}
.page-delivery .insight-body {
  padding: 1.5rem;
}
.page-delivery .insight-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.page-delivery .insight-title {
  font-size: 1rem;
  font-weight: 700;
  color: #F7FBF8;
  line-height: 1.5;
}

.page-delivery .cta-band {
  background: #F1EBDD;
  padding: 4rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.page-delivery .cta-band h3 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
}
.page-delivery .cta-band a {
  background: var(--forest);
  color: #F7FBF8;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 6px;
  transition: background .2s, transform .2s;
}
.page-delivery .cta-band a:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .page-delivery .hero-grid { grid-template-columns: 1fr; }
  .page-delivery .what-grid { grid-template-columns: 1fr; }
  .page-delivery .approach-grid { grid-template-columns: 1fr 1fr; }
  .page-delivery .insights-grid { grid-template-columns: 1fr 1fr; }
  .page-delivery .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .page-delivery .delivery-hero { padding: 4.5rem 6vw 5rem; }
  .page-delivery section.delivery-section { padding: 4rem 6vw; }
  .page-delivery .approach-grid { grid-template-columns: 1fr; }
  .page-delivery .insights-grid { grid-template-columns: 1fr; }
}

/* ===============================
   Sectors Real Estate (Intel-inspired)
   =============================== */
body.page-sectors {
  background: #F5F7FA;
  color: #1B1F23;
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

.page-sectors .delivery-hero {
  position: relative;
  background: var(--forest-dark);
  padding: 5.5rem 5vw 6rem;
  overflow: hidden;
}
.page-sectors .delivery-hero::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  left: -140px; bottom: -180px;
  background: radial-gradient(circle, rgba(146,208,250,0.28) 0%, transparent 70%);
  border-radius: 50%;
}
.page-sectors .delivery-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  right: -90px; top: -120px;
  background: radial-gradient(circle, rgba(156,210,251,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-sectors .hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.page-sectors .crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.page-sectors .crumbs span { color: rgba(255,255,255,0.45); }

.page-sectors .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.page-sectors .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #EAF4FF;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.page-sectors .hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 5.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #F8FAFF;
  margin-bottom: 0.9rem;
}
.page-sectors .hero-title em {
  font-style: normal;
  color: #9CD2FB;
}
.page-sectors .hero-sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  max-width: 560px;
  margin-bottom: 2rem;
}
.page-sectors .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  color: #0054A6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
}
.page-sectors .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.page-sectors section.delivery-section {
  padding: 3rem 5vw;
}
.page-sectors .section-head {
  max-width: 860px;
  margin-bottom: 2.3rem;
}
.page-sectors .section-head .eyebrow {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0054A6;
  margin-bottom: 0.7rem;
}
.page-sectors .section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.page-sectors .what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.page-sectors .what-card {
  background: #FFFFFF;
  border: 1px solid #E3E9F0;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 8px 22px rgba(0,84,166,0.08);
}
.page-sectors .what-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0054A6;
  margin-bottom: 0.6rem;
}
.page-sectors .what-card p {
  font-size: 1.1rem;
  color: #4E5A66;
  line-height: 1.65;
}

.page-sectors .approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.page-sectors .approach-card {
  background: #FFFFFF;
  border: 1px solid #E3E9F0;
  border-radius: 16px;
  padding: 1.7rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.page-sectors .approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0,84,166,0.12);
  border-color: #CFE4F7;
}
.page-sectors .approach-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.page-sectors .approach-card p {
  font-size: 1.2rem;
  color: var(--forest-dark);
  line-height: 1.6;
}

.page-sectors .section-quote {
  margin-top: 2.2rem;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #0054A6;
  text-align: center;
}

/* Sector detail card (orgs-style) */
.page-sectors .approach-grid .tlitem {
  grid-column: 1 / -1;
  background: #FFFFFF;
  border: 1px solid #E3E9F0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 26px rgba(0,84,166,0.08);
}
.page-sectors .tl-yr {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0054A6;
  margin-bottom: 0.5rem;
}
.page-sectors .tl-h {
  font-size: 1rem;
  font-weight: 600;
  color: #23364A;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.page-sectors .tlitem p {
  font-size: 0.95rem;
  color: #4E5A66;
  line-height: 1.6;
}

.page-sectors .experience-block {
  margin-top: 1rem;
  background: #F8FAFD;
  border: 1px solid #E3E9F0;
  border-right: 4px solid #0054A6;
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
}
.page-sectors .experience-block h4 {
  font-size: 1rem;
  color: #0054A6;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-sectors .experience-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-sectors .experience-block li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3A4047;
}
.page-sectors .experience-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #0054A6;
  font-weight: 700;
}

/* Sustainable business list arrows */
.page-sectors .ind-features,
.page-who .ind-features {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-sectors .ind-features li,
.page-who .ind-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3A4047;
}
.page-sectors .ind-features li::before,
.page-who .ind-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: #0054A6;
  font-weight: 800;
  font-size: 1.1rem;
}
.page-who .ind-features--tight li { line-height: 1.4; }

/* Index-style bullets for spectrum page */
.page-spectrum .ind-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.60rem;
}
.page-spectrum .ind-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--forest);
  font-weight: 700;
}
.page-spectrum .ind-features li::before {
  content: "→";
  color: var(--forest);
  font-weight: 800;
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 0.6;
}

@media (max-width: 1024px) {
  .page-sectors .what-grid { grid-template-columns: 1fr; }
  .page-sectors .approach-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .page-sectors .delivery-hero { padding: 4.5rem 6vw 5rem; }
  .page-sectors section.delivery-section { padding: 4rem 6vw; }
  .page-sectors .approach-grid { grid-template-columns: 1fr; }
}
