
    /* ─── PAGE HERO ─── */
    .wwa-hero {
      position: relative;
      padding: calc(var(--nav-height) + 5rem) 0 5rem;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background: linear-gradient(135deg, #060f2e 0%, #0a1a4a 45%, #0d2158 70%, #0a1a4a 100%);
    }
    .wwa-hero::before {
      content: none;
    }
    .wwa-hero-inner { position: relative; z-index: 2; }
    .wwa-hero .breadcrumb {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5);
      margin-bottom: 1rem;
    }
    .wwa-hero .breadcrumb a { color: #79c7ff; }
    .wwa-hero h1 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 1.25rem; }
    .wwa-hero h1 span { color: #79c7ff; }
    .wwa-hero p  {
      font-size: 1.05rem; color: rgba(255,255,255,0.75);
      max-width: 640px; margin: 0 auto 2.5rem;
      line-height: 1.8;
    }
    .wwa-hero-pills {
      display: flex; flex-wrap: wrap; gap: 0.75rem;
      justify-content: center;
    }
    .wwa-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 50px;
      padding: 10px 22px;
      font-size: 0.875rem; font-weight: 600; color: #fff;
      backdrop-filter: blur(6px);
    }
    .wwa-pill i { color: #79c7ff; }

    /* ─── STATS BAND ─── */
    .stats-band {
      background: #092660;
    }
    .stats-band-inner {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      width: 96%; max-width: 1400px; margin: 0 auto;
    }
    .sband-item {
      padding: 2rem 1rem; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .sband-item:last-child { border-right: none; }
    .sband-num {
      display: block; font-size: 2.4rem; font-weight: 800;
      color: #79c7ff; line-height: 1; margin-bottom: 6px;
    }
    .sband-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.58); font-weight: 500; }

    /* ─── PILLARS ─── */
    .pillars-sec { padding: 5rem 0; background: #fff; }

    .pillar-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(4,97,255,0.1);
      box-shadow: 0 8px 40px rgba(9,38,96,0.1);
      margin-bottom: 3rem;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .pillar-block:hover {
      box-shadow: 0 20px 60px rgba(9,38,96,0.16);
      transform: translateY(-4px);
    }
    .pillar-block:last-child { margin-bottom: 0; }

    /* Image side */
    .pillar-img-side {
      position: relative;
      overflow: hidden;
      min-height: 420px;
    }
    .pillar-img-side img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .pillar-block:hover .pillar-img-side img { transform: scale(1.04); }
    .pillar-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(6,24,71,0.7) 0%, rgba(4,97,255,0.35) 100%);
      display: flex; flex-direction: column;
      align-items: flex-start; justify-content: flex-end;
      padding: 2rem;
    }
    .pillar-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(4,97,255,0.85);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.78rem; font-weight: 700;
      color: #fff; letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
      backdrop-filter: blur(4px);
    }
    .pillar-img-overlay h3 {
      color: #fff; font-size: 1.5rem; font-weight: 800;
      line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .pillar-img-overlay h3 span { color: #79c7ff; }

    /* Content side */
    .pillar-content {
      padding: 3rem 3.5rem;
      display: flex; flex-direction: column; justify-content: center;
      background: #fff;
    }
    .pillar-content .section-tag { margin-bottom: 1rem; }
    .pillar-content p {
      color: #4a5e7a; font-size: 0.95rem; line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .pillar-features {
      display: flex; flex-direction: column; gap: 0.625rem;
      margin-bottom: 2rem;
    }
    .pillar-feature {
      display: flex; align-items: center; gap: 0.875rem;
      padding: 10px 14px;
      background: #f0f7ff;
      border-radius: 10px;
      font-size: 0.875rem; font-weight: 500;
      color: #1e3a6e;
      border-left: 3px solid #0461ff;
    }
    .pillar-feature i { color: #0461ff; font-size: 0.875rem; width: 16px; flex-shrink: 0; }

    /* Reverse layout: use order instead of direction:rtl to avoid overflow */
    .pillar-block.flip { }
    .pillar-block.flip .pillar-img-side { order: 2; }
    .pillar-block.flip .pillar-content  { order: 1; background: #f8faff; }

    /* ─── WHY PILLARS MATTER ─── */
    .why-matter-sec {
      padding: 5rem 0;
      background: url('assets/cta-bg.jpg') center / cover no-repeat;
      position: relative;
    }
    .why-matter-sec::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(6,24,71,0.88);
    }
    .why-matter-inner { position: relative; z-index: 2; }
    .why-matter-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .why-matter-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 2.25rem 2rem;
      text-align: center;
      transition: all 0.3s;
    }
    .why-matter-card:hover {
      background: rgba(4,97,255,0.18);
      border-color: rgba(4,97,255,0.4);
      transform: translateY(-6px);
    }
    .wmc-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: #fff;
      margin: 0 auto 1.25rem;
      box-shadow: 0 8px 24px rgba(4,97,255,0.45);
    }
    .why-matter-card h4 { color: #fff; margin-bottom: 0.75rem; font-size: 1rem; }
    .why-matter-card p  { color: rgba(255,255,255,0.62); font-size: 0.875rem; line-height: 1.75; }

    /* ─── PROCESS ─── */
    .process-sec { padding: 5rem 0; background: #fff; }
    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 3rem;
    }
    .process-img {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(9,38,96,0.15);
      position: relative;
    }
    .process-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .process-img-badge {
      position: absolute; bottom: 24px; right: 24px;
      background: #fff; border-radius: 14px;
      padding: 14px 18px;
      box-shadow: 0 8px 28px rgba(9,38,96,0.18);
      display: flex; align-items: center; gap: 10px;
    }
    .pib-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1rem;
    }
    .pib-num  { font-size: 1.1rem; font-weight: 800; color: #092660; line-height: 1; }
    .pib-lbl  { font-size: 0.72rem; color: #6b84a8; }
    .process-steps-list {
      display: flex; flex-direction: column; gap: 1rem;
    }
    .process-step-item {
      display: flex; gap: 1.25rem; align-items: flex-start;
      padding: 1.25rem 1.5rem;
      background: #f8faff;
      border-radius: 16px;
      border: 1px solid rgba(4,97,255,0.08);
      border-left: 4px solid #0461ff;
      transition: all 0.3s;
    }
    .process-step-item:hover {
      background: #fff;
      box-shadow: 0 8px 28px rgba(9,38,96,0.1);
      transform: translateX(4px);
    }
    .psi-num {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      color: #fff; font-weight: 800; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(4,97,255,0.35);
    }
    .psi-body h5 { color: #092660; font-size: 0.95rem; margin-bottom: 4px; }
    .psi-body p  { color: #5a7295; font-size: 0.85rem; margin: 0; line-height: 1.65; }

    /* ─── INDUSTRIES ─── */
    .industries-sec { padding: 5rem 0; background: #ebf7ff; }
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }
    .industry-card {
      background: #fff;
      border-radius: 18px;
      padding: 1.75rem 1.25rem;
      text-align: center;
      border: 2px solid rgba(4,97,255,0.08);
      transition: all 0.3s;
      cursor: default;
    }
    .industry-card:hover {
      border-color: #0461ff;
      box-shadow: 0 12px 36px rgba(9,38,96,0.12);
      transform: translateY(-6px);
    }
    .industry-card:hover .ic-icon-wrap {
      background: linear-gradient(135deg, #0461ff, #3a85ff);
    }
    .industry-card:hover .ic-icon-wrap span { filter: brightness(10); }
    .ic-icon-wrap {
      width: 60px; height: 60px; border-radius: 16px;
      background: #ebf7ff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin: 0 auto 1rem;
      transition: all 0.3s;
    }
    .industry-card h5 {
      color: #092660; font-size: 0.875rem; font-weight: 600;
      line-height: 1.3;
    }

    /* ─── APPROACH SPLIT ─── */
    .approach-sec { padding: 5rem 0; background: #fff; }
    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .approach-img {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(9,38,96,0.15);
    }
    .approach-img img { width: 100%; height: 440px; object-fit: cover; }
    .approach-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
    .approach-point {
      display: flex; gap: 1.25rem; align-items: flex-start;
    }
    .ap-icon {
      width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem;
      box-shadow: 0 6px 18px rgba(4,97,255,0.3);
    }
    .ap-text h5 { color: #092660; margin-bottom: 4px; font-size: 0.975rem; }
    .ap-text p  { color: #5a7295; font-size: 0.875rem; margin: 0; line-height: 1.65; }

    /* ─── CTA BOTTOM ─── */
    .wwa-cta {
      padding: 5rem 0;
      background: linear-gradient(135deg, #061847, #092660 60%, #0e3a8c);
      text-align: center;
    }
    .wwa-cta h2 { color: #fff; margin-bottom: 1rem; }
    .wwa-cta p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
    .wwa-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .pillar-block { grid-template-columns: 1fr; }
      .pillar-block.flip { direction: ltr; }
      .pillar-img-side { min-height: 280px; }
      .pillar-content { padding: 2.5rem 2rem; }
      .why-matter-grid { grid-template-columns: 1fr 1fr; }
      .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .process-img img { height: 320px; }
      .industry-grid { grid-template-columns: repeat(3, 1fr); }
      .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .approach-img img { height: 300px; }
      .stats-band-inner { grid-template-columns: repeat(3, 1fr); }
      .sband-item:nth-child(3) { border-right: none; }
      .sband-item:nth-child(4),
      .sband-item:nth-child(5) { border-bottom: none; }
    }
    @media (max-width: 768px) {
      .wwa-hero { padding: calc(var(--nav-height) + 3rem) 0 3rem; }
      .wwa-hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
      .wwa-hero p  { font-size: 0.925rem; }
      .wwa-hero-pills { gap: 0.5rem; }
      .wwa-pill { font-size: 0.8rem; padding: 8px 16px; }
      .stats-band-inner { grid-template-columns: 1fr 1fr; }
      .sband-item:nth-child(2) { border-right: none; }
      .sband-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
      .sband-item:nth-child(4),
      .sband-item:nth-child(5) { border-bottom: none; }
      .pillar-img-side { min-height: 240px; }
      .pillar-content { padding: 2rem 1.5rem; }
      .why-matter-grid { grid-template-columns: 1fr; }
      .industry-grid { grid-template-columns: 1fr 1fr; }
      .wwa-cta-btns { flex-direction: column; align-items: center; }
      .wwa-cta-btns a { width: 100%; max-width: 300px; justify-content: center; }
      .pillar-features { gap: 0.5rem; }
      .pillar-feature { font-size: 0.825rem; padding: 8px 12px; }
    }
    @media (max-width: 480px) {
      .stats-band-inner { grid-template-columns: 1fr 1fr; }
      .industry-grid { grid-template-columns: 1fr 1fr; }
      .pillar-img-side { min-height: 200px; }
      .sband-num { font-size: 1.9rem; }
      .process-img img { height: 240px; }
    }