 /* ─── ABOUT HERO ─── */
      #about-hero {
        min-height: 72vh;
        padding-top: 72px;
        background: linear-gradient(160deg, #ffffff 0%, #eef6ff 40%, #f0f9ff 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
      }
      .hero-bg-shapes {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.18;
      }
      .blob1 {
        width: 600px;
        height: 600px;
        background: var(--primary);
        top: -200px;
        right: -100px;
        animation: floatBlob 8s ease-in-out infinite;
      }
      .blob2 {
        width: 400px;
        height: 400px;
        background: var(--secondary);
        bottom: -100px;
        left: -100px;
        animation: floatBlob 10s ease-in-out infinite reverse;
      }
      .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
        background-size: 48px 48px;
      }
      @keyframes floatBlob {
        0%, 100% { transform: translateY(0) scale(1); }
        50%       { transform: translateY(-30px) scale(1.06); }
      }

      .about-hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 80px 5%;
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(37, 99, 235, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.15);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 24px;
        animation: fadeInUp 0.6s ease both;
      }
      .badge-dot {
        width: 7px;
        height: 7px;
        background: var(--secondary);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0%, 100% { opacity: 1; }
        50%       { opacity: 0.4; }
      }
      .about-hero-title {
        font-family: "Manrope", sans-serif;
        font-size: clamp(36px, 5vw, 64px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1.5px;
        color: var(--text);
        margin-bottom: 22px;
        animation: fadeInUp 0.7s ease 0.1s both;
      }
      .about-hero-title .grad {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .about-hero-sub {
        font-size: 18px;
        color: var(--muted);
        line-height: 1.75;
        max-width: 640px;
        margin: 0 auto 40px;
        animation: fadeInUp 0.7s ease 0.2s both;
      }
      .about-hero-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInUp 0.7s ease 0.3s both;
      }
      .btn-hero-primary {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        padding: 14px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 6px 24px rgba(37, 99, 235, 0.38);
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
      }
      .btn-hero-ghost {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: rgba(255, 255, 255, 0.8);
        color: var(--text);
        font-weight: 600;
        font-size: 15px;
        padding: 13px 26px;
        border-radius: 12px;
        border: 1.5px solid var(--border);
        cursor: pointer;
        text-decoration: none;
        backdrop-filter: blur(10px);
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-hero-ghost:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--bg3);
      }

      @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      
      /* ─── WHO WE ARE ─── */
      #who-we-are {
        background: var(--bg2);
      }
      .who-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .who-content p {
        font-size: 15.5px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 20px;
      }
      .who-content p:last-child {
        margin-bottom: 0;
      }
      .who-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
      }
      .who-stat {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px 24px;
        text-align: center;
        transition: all 0.3s;
        box-shadow: var(--shadow);
      }
      .who-stat:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.2);
      }
      .who-stat.featured {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-color: transparent;
        grid-column: span 2;
      }
      .who-stat.featured .ws-number,
      .who-stat.featured .ws-label {
        color: #fff;
      }
      .ws-number {
        font-family: "Manrope", sans-serif;
        font-size: 40px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 8px;
      }
      .ws-label {
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
        line-height: 1.4;
      }
      
      /* ─── WHAT WE BELIEVE ─── */
      #what-we-believe {
        background: #fff;
      }
      .believe-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 0;
      }
      .believe-card {
        background: linear-gradient(145deg, var(--bg2), var(--bg3));
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 36px 28px;
        transition: all 0.3s;
      }
      .believe-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.2);
      }
      .believe-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 20px;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
      }
      .believe-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 18px;
        color: var(--text);
        margin-bottom: 12px;
      }
      .believe-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
      }

      /* ─── OUR APPROACH ─── */
      #our-approach {
        background: var(--bg2);
      }
      .approach-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        position: relative;
      }
      .approach-steps::before {
        content: "";
        position: absolute;
        top: 56px;
        left: calc(16.66% + 28px);
        right: calc(16.66% + 28px);
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        opacity: 0.25;
        z-index: 0;
      }
      .approach-step {
        padding: 40px 28px;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .step-number {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 20px;
        color: #fff;
        margin: 0 auto 20px;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
      }
      .step-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 20px;
        color: var(--text);
        margin-bottom: 12px;
      }
      .step-desc {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 280px;
        margin: 0 auto;
      }
      .approach-step-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 36px 28px;
        text-align: center;
        transition: all 0.3s;
        box-shadow: var(--shadow);
      }
      .approach-step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.2);
      }

      /* ─── INDUSTRIES ─── */
      #about-industries {
        background: #fff;
      }
      .industries-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .industry-card {
        background: linear-gradient(145deg, var(--bg2), var(--bg3));
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px 28px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: all 0.3s;
      }
      .industry-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.2);
      }
      .ind-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
      }
      .ind-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: var(--text);
        margin-bottom: 8px;
      }
      .ind-desc {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
      }
      .ind-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 14px;
      }
      .ind-tag {
        font-size: 11.5px;
        font-weight: 600;
        color: var(--primary);
        background: rgba(37, 99, 235, 0.08);
        padding: 3px 10px;
        border-radius: 20px;
      }

      /* ─── TECHNOLOGY EXPERTISE ─── */
      #tech-expertise {
        background: var(--bg2);
      }
      .tech-expertise-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .tech-group-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px 28px;
        transition: all 0.3s;
        box-shadow: var(--shadow);
      }
      .tech-group-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.2);
      }
      .tg-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 22px;
      }
      .tg-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
      }
      .tg-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: var(--text);
      }
      .tg-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .tg-tag {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--primary);
        background: var(--bg3);
        border: 1px solid rgba(37, 99, 235, 0.15);
        padding: 5px 12px;
        border-radius: 20px;
        transition: all 0.2s;
      }
      .tg-tag:hover {
        background: var(--primary);
        color: #fff;
      }

      /* ─── COMPLIANCE ─── */
      #compliance {
        background: #fff;
      }
      .compliance-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .compliance-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .compliance-badge {
        background: linear-gradient(145deg, var(--bg2), var(--bg3));
        border: 1px solid rgba(37, 99, 235, 0.15);
        border-radius: 16px;
        padding: 24px 20px;
        text-align: center;
        transition: all 0.3s;
      }
      .compliance-badge:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(37, 99, 235, 0.3);
      }
      .cb-label {
        font-family: "Manrope", sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 6px;
      }
      .cb-desc {
        font-size: 12.5px;
        color: var(--muted);
        font-weight: 500;
      }
      .compliance-content p {
        font-size: 15.5px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 20px;
      }

      /* ─── PARTNER PROMISE ─── */
      #partner-promise {
        background: var(--bg2);
      }
      .promise-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .promise-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 28px 22px;
        text-align: center;
        transition: all 0.3s;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
      }
      .promise-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        opacity: 0;
        transition: opacity 0.3s;
      }
      .promise-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
      }
      .promise-card:hover::before {
        opacity: 1;
      }
      .promise-card:hover .pc-icon,
      .promise-card:hover .pc-title,
      .promise-card:hover .pc-desc {
        position: relative;
        z-index: 1;
      }
      .promise-card:hover .pc-icon {
        background: rgba(255, 255, 255, 0.2);
      }
      .promise-card:hover .pc-title,
      .promise-card:hover .pc-desc {
        color: #fff;
      }
      .pc-content {
        position: relative;
        z-index: 1;
      }
      .pc-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: var(--bg3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin: 0 auto 18px;
        transition: background 0.3s;
      }
      .pc-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: var(--text);
        margin-bottom: 10px;
        transition: color 0.3s;
      }
      .pc-desc {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
        transition: color 0.3s;
      }
      
      
      
      /* ─── RESPONSIVE ─── */
      @media (max-width: 1100px) {
        .tech-expertise-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .promise-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-top {
          grid-template-columns: 1fr 1fr 1fr;
        }
      }
      @media (max-width: 900px) {
        .who-grid,
        .compliance-inner {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .believe-grid,
        .approach-steps {
          grid-template-columns: 1fr 1fr;
        }
        .industries-grid {
          grid-template-columns: 1fr 1fr;
        }
        .cta-inner {
          flex-direction: column;
          text-align: center;
        }
        .cta-sub {
          max-width: 100%;
        }
      }
      @media (max-width: 700px) {
        .nav-links {
          display: none;
        }
        .nav-cta {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .believe-grid,
        .approach-steps,
        .industries-grid,
        .tech-expertise-grid,
        .promise-grid {
          grid-template-columns: 1fr;
        }
        .who-visual {
          grid-template-columns: 1fr 1fr;
        }
        .who-stat.featured {
          grid-column: span 2;
        }
        .compliance-badges {
          grid-template-columns: 1fr 1fr;
        }
        section {
          padding: 70px 5%;
        }
        .cta-inner {
          padding: 40px 28px;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }
        .approach-steps::before {
          display: none;
        }
      }
