
   
    /* ── STORY SECTION ── */
    .story-section { background: #f8fafc; padding: 80px 0; }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 60px;
    }

    /* ── IMAGE COLLAGE (desktop) ── */
    .image_pyramid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap: 14px;
      padding: 0;
      min-height: unset;
    }

    /* Large image spans full left column, both rows */
    .bg_image {
      grid-column: 1;
      grid-row: 1 / 3;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.13);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }
    
    .bg_image:hover {
      transform: scale(1.02);
      box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    }
    .bg_image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Top-right image */
    .small_landscape {
      grid-column: 2;
      grid-row: 1;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 36px var(--red-shadow);
      border: none;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }
    .small_landscape:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px var(--red-shadow);
    }
    .small_landscape img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Third image — bottom right */
    .third_image {
      grid-column: 2;
      grid-row: 2;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }
    .third_image:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.16);
    }
    .third_image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Red accent bar on the tall image */
    .bg_image::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: var(--primary-red);
      border-radius: 0 0 20px 20px;
    }

    /* Small year badge */
    .image-badge {
      position: absolute;
      bottom: 14px; right: 14px;
      background: var(--primary-red);
      color: var(--white);
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-weight: 800;
      font-size: 0.75rem;
      padding: 6px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      z-index: 2;
      pointer-events: none;
    }

    /* approach circle + floating elements */
    .approach-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 20px 60px;
      
    }

    .approach-visual h2 {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 40px;
      line-height: 1.3;
    }

    .story-highlight { color: var(--primary-red); }

    /* Wrapper that keeps floating badges within bounds */
    .approach-circle-wrapper {
      position: relative;
      width: 360px;
      max-width: calc(100vw - 80px);
      height: 360px;
      flex-shrink: 0;
    }

    .approach-circle {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(135deg, #fef2f2 0%, #f9fafb 50%, #ffffff 100%);
      border: 3px solid var(--red-border);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      padding: 30px;
      position: relative;
      box-shadow: 0 10px 25px var(--red-shadow);
    }

    .approach-circle-inner {
      overflow: hidden;
      max-width: 100%;
    }
    

    .floating-elements {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      pointer-events: none;
    }

    .floating-element {
      position: absolute;
      background: var(--white);
      padding: 10px 16px;
      border-radius: 25px;
      box-shadow: 0 10px 25px var(--red-shadow);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-primary);
      border: 1px solid var(--red-border);
      pointer-events: auto;
      white-space: nowrap;
    }

    /* Place badges outside the circle edges */
    .floating-element:nth-child(1) { top: -1%; left:  -10%; }
    .floating-element:nth-child(2) { top: -1%; right: -10%; }
    .floating-element:nth-child(3) { bottom: -4%; left:  -4%; }
    .floating-element:nth-child(4) { bottom: -4%; right: -8%; }

    /* ── MISSION & VISION ── */
    .mission-section { background: var(--off-white); }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .mv-card {
      background: var(--white);
      border-radius: 22px;
      padding: 46px 44px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }

    .mv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--primary-red);
    }

    .card-label {
      display: inline-block;
      background: var(--primary-red);
      color: var(--white);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .card-title {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 18px;
      line-height: 1.25;
    }

    .card-desc {
      font-size: 1.02rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 26px;
    }

    .mission-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mission-points li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.98rem;
      color: var(--text-secondary);
    }

    .mission-points li::before {
      content: '✓';
      width: 22px;
      height: 22px;
      background: var(--red-light);
      color: var(--primary-red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 800;
      flex-shrink: 0;
    }

   /* Primary CTA Button */
    .primary_btn {
        display: inline-block;
        padding: 16px 40px;
        background: var(--primary-red);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
        position: relative;
        overflow: hidden;
        margin-top: 16px;
    }

    .primary_btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .primary_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
    }

    .primary_btn:hover::before {
        left: 100%;
    }

    /* ── ECOSYSTEM ── */
    .ecosystem-section { background: var(--white); padding: 80px 20px; }

    .ecosystem-header { text-align: center; margin-bottom: 80px; }

    .partnership-network {
      position: relative;
      margin: 0 0 20px;
      height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 30px;
      overflow: hidden;
      background: linear-gradient(135deg, #fdf6f6 0%, #f5eeee 50%, #fbeaea 100%);
    }

    /* Animated grid lines background */
    .partnership-network::before {
      content: '';
      position: absolute;
      inset: -50%;
      background-image:
        linear-gradient(rgba(220,38,38,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,38,38,0.1) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridDrift 18s linear infinite;
      z-index: 0;
    }

    @keyframes gridDrift {
      0%   { transform: translate(0, 0); }
      100% { transform: translate(60px, 60px); }
    }

    /* Outer orbit ring */
    .partnership-network::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 380px; height: 380px;
      border: 1.5px solid rgba(220,38,38,0.3);
      border-radius: 50%;
      box-shadow: 0 0 40px rgba(220,38,38,0.08) inset, 0 0 40px rgba(220,38,38,0.06);
      z-index: 2;
    }

    /* Inner orbit ring */
    .orbit-ring-inner {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 220px; height: 220px;
      border: 1px dashed rgba(220,38,38,0.25);
      border-radius: 50%;
      z-index: 2;
      pointer-events: none;
    }

    .network-hub {
      width: 110px; height: 110px;
      background: linear-gradient(135deg, var(--primary-red) 0%, #7f1d1d 100%);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-weight: 900;
      font-size: 1.05rem;
      text-align: center;
      line-height: 1.1;
      /*box-shadow: 0 0 0 8px rgba(220,38,38,0.15), 0 0 0 16px rgba(220,38,38,0.07), 0 15px 40px rgba(0,0,0,0.6);*/
      z-index: 10;
      position: relative;
      border: 3px solid rgba(255,255,255,0.2);
    }

    .network-hub-sub {
      font-size: 0.58rem;
      font-weight: 500;
      opacity: 0.75;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* SVG connector lines */
    .network-svg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      z-index: 3;
      pointer-events: none;
    }

    
    @keyframes dashMove {
      to { stroke-dashoffset: -50; }
    }

    .network-partner {
      position: absolute;
      width: 100px; height: 100px;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(6px);
      border: 1.5px solid rgba(220,38,38,0.3);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.72rem;
      text-align: center;
      padding: 40px;
      color: var(--text-primary);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      transition: border-color 0.3s, background 0.3s, color 0.3s;
      cursor: pointer;
      animation: orbitPartner 24s linear infinite;
      z-index: 5;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

  

    .network-partner:hover {
      border-color: var(--primary-red);
      background: rgba(220,38,38,0.08);
      color: var(--red);
      animation-play-state: paused;
    }

    .network-partner:nth-child(3)  { animation-delay: 0s; }
    .network-partner:nth-child(4)  { animation-delay: -4s; }
    .network-partner:nth-child(5)  { animation-delay: -8s; }
    .network-partner:nth-child(6)  { animation-delay: -12s; }
    .network-partner:nth-child(7)  { animation-delay: -16s; }
    .network-partner:nth-child(8)  { animation-delay: -20s; }

    :root { --orbit-r: 170px; }

    @keyframes orbitPartner {
      0%   { transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg); }
      100% { transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg); }
    }

    @media (max-width: 900px) { :root { --orbit-r: 130px; } }
    @media (max-width: 640px) { :root { --orbit-r: 105px; } }
    @media (max-width: 400px) { :root { --orbit-r:  85px; } }

    /* ── OUTREACH CAROUSEL ── */
    .outreach-section { background: var(--off-white); }

    .outreach-carousel-wrapper {
      position: relative;
      overflow: hidden;
    }

    .outreach-track {
      display: flex;
      gap: 28px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .outreach-card {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.35s ease;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
      flex: 0 0 calc(33.333% - 19px);
      min-width: 0;
    }

    .outreach-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px var(--red-shadow);
      border-color: var(--red-border);
    }

    .outreach-nav {
      margin-bottom: 8px;
    }

    .outreach-nav-arrows {
      display: flex;
      gap: 12px;
    }

    .outreach-arrow {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 2px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.22s ease;
      color: var(--text-secondary);
      flex-shrink: 0;
    }

    .outreach-arrow:hover {
      border-color: var(--primary-red);
      background: var(--primary-red);
      color: var(--white);
      box-shadow: 0 6px 18px var(--red-shadow);
    }

    .outreach-arrow:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }

    .outreach-arrow svg { width: 18px; height: 18px; }

    .outreach-dots {
      display: flex;
      gap: 8px;
    }

    .outreach-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: all 0.22s ease;
      border: none;
    }

    .outreach-dot.active {
      background: var(--primary-red);
      width: 24px;
      border-radius: 4px;
    }

    .outreach-image {
      width: 100%; height: 220px;
      overflow: hidden;
      position: relative;
    }

    .outreach-image img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease;
    }

    .outreach-card:hover .outreach-image img { transform: scale(1.08); }

    .outreach-image::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50px;
      background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    }

    .outreach-content { padding: 26px; }

    .outreach-category {
      display: inline-block;
      background: var(--primary-red);
      color: var(--white);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .outreach-title {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-primary);
      line-height: 1.35;
    }

    .outreach-desc {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .outreach-stats {
      display: flex;
      gap: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .outreach-stat { flex: 1; text-align: center; }
    .stat-num {
      display: block;
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--primary-red);
    }
    .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ══════════════════════════════════════════════════
       TEAM SECTION — unified card grid (desktop + mobile)
       ══════════════════════════════════════════════════ */
    .team-section {
      background: #0f172a;           /* deep navy for drama */
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }

    /* Subtle diagonal-line texture */
    .team-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        rgba(220,38,38,0.04) 0px,
        rgba(220,38,38,0.04) 1px,
        transparent 1px,
        transparent 28px
      );
      pointer-events: none;
      z-index: 0;
    }

    /* Red glow blob top-right */
    .team-section::after {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .team-section .container { position: relative; z-index: 1; }

    /* Section header — light text on dark bg */
    .team-section .section-header .section-title {
      color: #ffffff;
      background: none;
      -webkit-text-fill-color: #ffffff;
    }
    .team-section .section-header .section-title .accent {
      color: var(--red);
      -webkit-text-fill-color: var(--primary-red);
    }
    .team-section .section-header .section-subtitle {
      color: rgba(255,255,255,0.6);
    }
    .team-section .section-header::after { background: var(--primary-red); }

    /* ── Card grid ── */
    .team-cards-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      margin-top: 16px;
    }

    /* ── Individual card ── */
    .team-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 0 28px;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
      cursor: default;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-10px);
      border-color: rgba(220,38,38,0.5);
      background: rgba(220,38,38,0.06);
      box-shadow: 0 24px 56px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.3);
    }

    /* Top red accent bar */
    .team-card::before {
      content: '';
      display: block;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--red), #7f1d1d);
      flex-shrink: 0;
    }

    /* Featured card — slightly elevated by default */
    .team-card.featured {
      border-color: rgba(220,38,38,0.3);
      background: rgba(220,38,38,0.07);
    }
    .team-card.featured::before {
      height: 4px;
      background: var(--primary-red);
    }

    /* ── Photo wrapper ── */
    .team-card-photo {
      width: 96px; height: 96px;
      border-radius: 50%;
      overflow: hidden;
      margin: 28px auto 18px;
      border: 3px solid rgba(220,38,38,0.35);
      box-shadow: 0 8px 28px rgba(0,0,0,0.35);
      flex-shrink: 0;
      position: relative;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }

    .team-card:hover .team-card-photo {
      border-color: var(--primary-red);
      box-shadow: 0 0 0 5px rgba(220,38,38,0.2), 0 12px 32px rgba(0,0,0,0.4);
      transform: scale(1.06);
    }

    .team-card-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(20%) brightness(0.95);
      transition: filter 0.35s ease;
    }

    .team-card:hover .team-card-photo img {
      filter: grayscale(0%) brightness(1);
    }

    /* Featured pulse ring */
    .team-card.featured .team-card-photo::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(220,38,38,0.5);
      animation: cardPulse 2.4s ease-out infinite;
      z-index: 2;
    }

    @keyframes cardPulse {
      0%   { transform: scale(0.9); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* Online indicator */
    .team-card-photo::after {
      content: '';
      position: absolute;
      bottom: 5px; right: 5px;
      width: 13px; height: 13px;
      border-radius: 50%;
      background: #22c55e;
      border: 2px solid #0f172a;
      z-index: 3;
    }

    /* ── Text ── */
    .team-card-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 5px;
      padding: 0 16px;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .team-card-role {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 14px;
      padding: 0 14px;
      line-height: 1.4;
    }

    .team-card-dept {
      display: inline-block;
      background: rgba(220,38,38,0.18);
      color: #fca5a5;
      border: 1px solid rgba(220,38,38,0.3);
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .team-card:hover .team-card-dept {
      background: var(--primary-red);
      color: #fff;
      border-color: var(--primary-red);
    }

    /* ─────────────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────────────── */

    /* Tablet: 2–3 cols */
    @media (max-width: 1024px) {
      .team-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
    }

    @media (max-width: 700px) {
      .team-section { padding: 72px 0; }

      .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }

      .team-card-photo {
        width: 80px; height: 80px;
        margin: 22px auto 14px;
      }

      .team-card-name  { font-size: 0.9rem; }
      .team-card-role  { font-size: 0.72rem; }
      .team-card-dept  { font-size: 0.62rem; padding: 3px 11px; }
    }

    @media (max-width: 400px) {
      .team-cards-grid { gap: 10px; }
      .team-card { padding-bottom: 20px; }
      .team-card-photo {
        width: 70px; height: 70px;
        margin: 18px auto 12px;
      }
    }

    
    /* ── LinkedIn link on team cards ── */
    .team-card-linkedin {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      margin-top: 14px;
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
      flex-shrink: 0;
    }

    .team-card-linkedin:hover {
      background: #0a66c2;
      border-color: #0a66c2;
      color: #fff;
      transform: scale(1.12);
    }

    .team-card-linkedin svg {
      width: 15px; height: 15px;
      fill: currentColor;
      display: block;
    }

    /* placeholder state — dashed border, dimmer */
    .team-card-linkedin[href="#"] {
      opacity: 0.35;
      cursor: default;
      pointer-events: none;
    }

    /* ── CTA ── */
    .cta-section { background: var(--off-white); }

    .cta-card {
      background: var(--gradient-primary);
      padding: 70px 60px;
      border-radius: 28px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta-title {
      font-family: var(--font-display, 'Playfair Display', Georgia, serif);
      font-size: 2.6rem;
      font-weight: 900;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .cta-text {
      font-size: 1.1rem;
      margin-bottom: 38px;
      opacity: 0.9;
      position: relative;
      z-index: 2;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .btn-cta-white {
      background: var(--white);
      color: var(--primary-red);
      padding: 15px 38px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      font-size: 0.98rem;
      transition: all 0.25s ease;
    }

    .btn-cta-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    }

    .btn-cta-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.7);
      padding: 15px 38px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      font-size: 0.98rem;
      transition: all 0.25s ease;
    }

    .btn-cta-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
      transform: translateY(-3px);
    }


    /* ── RESPONSIVE ── */

    /* Tablet ≤ 900px */
    @media (max-width: 900px) {
      
      /* Story */
      .story-grid { grid-template-columns: 1fr; gap: 40px; }
      .image_pyramid { 
        grid-template-rows: 200px 200px; 
        gap: 12px;
      }

      /* Approach circle */
      .approach-circle-wrapper { width: 360px; height: 360px;}
      .approach-circle { padding: 44px; font-size: 0.84rem; }
      .approach-visual { padding: 80px 20px 80px; }
      .approach-visual h2 { font-size: 2rem; }

      /* Mission */
      .mv-grid { grid-template-columns: 1fr; gap: 24px; }

      /* Ecosystem — shrink orbit */
      .partnership-network { height: 420px; }
      .partnership-network::after { width: 300px; height: 300px; }
      .orbit-ring-inner { width: 170px; height: 170px; }
      .network-partner { width: 70px; height: 70px; font-size: 0.62rem; }
     
      .network-hub { width: 90px; height: 90px; font-size: 0.9rem; }

      /* Outreach */
      .outreach-card { flex: 0 0 calc(50% - 14px) !important; }
      
    }

    /* Mobile ≤ 640px */
    @media (max-width: 640px) {

      /* Story */
      .story-section { background: #f8fafc; padding: 60px 0 0 0;}
      .story-grid { gap: 32px; }
      .image_pyramid { 
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        gap: 10px;
      }

      /* Approach */
      .approach-visual { padding: 40px 16px 20px; align-items: center; }
      .approach-visual h2 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
      .approach-circle-wrapper { 
        width: min(300px, calc(100vw - 60px)); 
        height: min(300px, calc(100vw - 60px)); 
      }
      .approach-circle { padding: 28px; font-size: 0.82rem; }
      .floating-element { padding: 7px 12px; font-size: 0.72rem; }

      

      /* Mission */
      .mv-card { padding: 32px 20px; }
      .card-title { font-size: 1.5rem; }
      .section-title { font-size: 2rem; }

      /* Ecosystem */
      .partnership-network { height: 360px; }
      .partnership-network::after { width: 240px; height: 240px; }
      .orbit-ring-inner { width: 140px; height: 140px; }
      .network-partner { width: 60px; height: 60px; font-size: 0.55rem; }
      .network-hub { width: 76px; height: 76px; font-size: 0.78rem; }
      .network-hub-sub { font-size: 0.48rem; }

      /* Outreach */
      .outreach-card { flex: 0 0 100% !important; }
      .outreach-nav { flex-direction: column; gap: 12px; }

      /* CTA */
      .cta-card { padding: 40px 20px; }
      .cta-title { font-size: 1.8rem; }
      .cta-text { font-size: 1rem; }
      .btn-cta-white, .btn-cta-outline { 
        padding: 13px 28px; 
        font-size: 0.92rem;
        width: 100%;
        text-align: center;
      }
      .cta-buttons { flex-direction: column; align-items: stretch; }

     
    }

    /* Small mobile ≤ 400px */
    @media (max-width: 400px) {
      .approach-circle-wrapper { 
        width: calc(100vw - 48px); 
        height: calc(100vw - 48px); 
      }
      .floating-element { padding: 6px 10px; font-size: 0.68rem; }

      .cta-title { font-size: 1.6rem; }

      /* Ecosystem — very small */
      .partnership-network { height: 300px; }
      .partnership-network::after { width: 200px; height: 200px; }
      .orbit-ring-inner { width: 120px; height: 120px; }
     

    }
  