    /* ─── Reset ──────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }

    /* ─── Brand Palette (from logo) ─────── */
    :root {
      --green:      #7DC242;
      --green-d:    #5fa030;
      --green-light:#e8f5d9;
      --orange:     #F7941E;
      --orange-d:   #d97a0a;
      --orange-light:#fff0d9;
      --pink:       #E83E8C;
      --pink-d:     #c52a72;
      --pink-light: #fce4f0;
      --dark:       #1a1a2e;
      --dark2:      #2d2d44;
      --gray-50:    #f9fafb;
      --gray-100:   #f3f4f6;
      --gray-200:   #e5e7eb;
      --gray-500:   #6b7280;
      --gray-700:   #374151;
      --white:      #ffffff;
      --radius:     14px;
      --shadow:     0 4px 24px rgba(26,26,46,0.08);
      --shadow-lg:  0 8px 40px rgba(26,26,46,0.14);
    }

    /* ─── Utilities ──────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
    .section    { padding: 96px 0; }
    .section-dark { background: var(--dark); }
    .section-gray { background: var(--gray-50); }

    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 800; letter-spacing: 1.8px;
      text-transform: uppercase; padding: 6px 16px;
      border-radius: 50px; margin-bottom: 14px;
    }
    .tag-green  { background: var(--green-light);  color: var(--green-d); }
    .tag-orange { background: var(--orange-light); color: var(--orange-d); }
    .tag-pink   { background: var(--pink-light);   color: var(--pink-d); }
    .tag-white  { background: rgba(255,255,255,0.12); color: #fff; }

    .section-title {
      font-size: clamp(28px,4vw,44px); font-weight: 900;
      line-height: 1.15; margin-bottom: 14px; color: var(--dark);
    }
    .section-title-white { color: #fff; }
    .section-title .hi-green  { color: var(--green); }
    .section-title .hi-orange { color: var(--orange); }
    .section-title .hi-pink   { color: var(--pink); }
    .section-sub { font-size: 17px; color: var(--gray-500); line-height: 1.75; max-width: 600px; }
    .section-sub-white { color: rgba(255,255,255,0.65); }
    .section-header { margin-bottom: 60px; }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px; border-radius: 10px; font-size: 15px;
      font-weight: 700; cursor: pointer; text-decoration: none;
      transition: all 0.25s ease; border: none; outline: none;
    }
    .btn-green  { background: var(--green);  color: #fff; }
    .btn-green:hover  { background: var(--green-d);  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(125,194,66,0.4); }
    .btn-orange { background: var(--orange); color: #fff; }
    .btn-orange:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(247,148,30,0.4); }
    .btn-pink   { background: var(--pink);   color: #fff; }
    .btn-pink:hover   { background: var(--pink-d);   transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,62,140,0.4); }
    .btn-outline-white {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,0.35);
    }
    .btn-outline-white:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
    .btn-dark { background: var(--dark); color: #fff; }
    .btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

    /* ─── Scroll reveal ──────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ════════════════════════════════════════
       LOGO SVG (inline, reusable via <use>)
    ════════════════════════════════════════ */

    /* ─── NAVBAR ─────────────────────────── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      transition: all 0.3s ease;
    }
    #navbar.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(14px);
      box-shadow: 0 2px 24px rgba(26,26,46,0.08);
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between; height: 74px;
    }
    .nav-logo { text-decoration: none; display: flex; align-items: center; }
    .nav-logo img { height: 48px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      color: #fff; text-decoration: none;
      font-size: 14px; font-weight: 600; transition: color .2s;
    }
    .nav-links a:hover { color: var(--green); }
    #navbar.scrolled .nav-links a { color: var(--dark); }
    #navbar.scrolled .nav-links a:hover { color: var(--green); }
    .nav-cta { margin-left: 12px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
    #navbar.scrolled .hamburger span { background: var(--dark); }
    #mobile-nav {
      position: fixed; top: 74px; left: 0; right: 0;
      background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
      padding: 20px 28px 32px; z-index: 999;
      flex-direction: column; gap: 0; display: none; border-top: 1px solid var(--gray-200);
    }
    #mobile-nav.open { display: flex; }
    #mobile-nav a {
      color: var(--dark); text-decoration: none;
      font-size: 16px; font-weight: 600;
      padding: 14px 0; border-bottom: 1px solid var(--gray-100); transition: color .2s;
    }
    #mobile-nav a:hover { color: var(--green); }
    @media (max-width: 900px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

    /* ─── HERO ───────────────────────────── */
    #hero {
      min-height: 100vh;
      background: var(--dark);
      position: relative; overflow: hidden;
      display: flex; align-items: center; padding: 74px 0 64px;
    }
    /* Blob shapes */
    .hero-blob {
      position: absolute; border-radius: 50%;
      filter: blur(70px); opacity: 0.18;
    }
    .hero-blob-1 { width: 480px; height: 480px; background: var(--green);  top: -80px; right: -100px; }
    .hero-blob-2 { width: 360px; height: 360px; background: var(--orange); bottom: -60px; left: 30%; }
    .hero-blob-3 { width: 300px; height: 300px; background: var(--pink);   top: 40%;  right: 20%; }
    /* Canvas particles */
    #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.2; }
    .hero-content { position: relative; z-index: 2; max-width: 720px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50px; padding: 8px 20px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
      margin-bottom: 28px;
    }
    .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
    .hero-title {
      font-size: clamp(40px, 5.5vw, 70px); font-weight: 900;
      color: #fff; line-height: 1.08; margin-bottom: 24px; letter-spacing: -1.5px;
    }
    .hero-title .g  { color: var(--green); }
    .hero-title .o  { color: var(--orange); }
    .hero-title .p  { color: var(--pink); }
    .hero-desc { font-size: 18px; color: rgba(255,255,255,0.68); line-height: 1.78; margin-bottom: 40px; max-width: 580px; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
    .hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
    .stat-num { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
    .stat-num .g { color: var(--green); }
    .stat-num .o { color: var(--orange); }
    .stat-num .p { color: var(--pink); }
    .stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

    /* ─── TICKER ────────────────────────── */
    #ticker-section {
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      padding: 0;
      margin-top: 56px;
      overflow: hidden;
    }
    .ticker-wrapper {
      display: flex;
      align-items: stretch;
    }
    .ticker-label {
      flex-shrink: 0;
      display: flex; align-items: center;
      padding: 0 28px;
      font-size: 11px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gray-500);
      background: var(--gray-50);
      border-right: 1px solid var(--gray-200);
      white-space: nowrap;
      height: 72px;
    }
    .ticker-track-wrap { overflow: hidden; flex: 1; }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker-scroll 38s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      padding: 0 34px; height: 72px;
      white-space: nowrap;
      border-right: 1px solid var(--gray-100);
      flex-shrink: 0;
    }
    /* Styled company logo badges */
    .logo-badge {
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 900; border-radius: 8px;
      padding: 5px 10px; letter-spacing: 0.5px; flex-shrink: 0;
    }
    /* Real client logo images */
    .client-logo-img {
      height: 40px; width: auto; max-width: 150px; object-fit: contain;
      flex-shrink: 0; display: block;
      filter: grayscale(1) opacity(0.55);
      transition: filter 0.25s ease;
    }
    .ticker-item:hover .client-logo-img { filter: grayscale(0) opacity(1); }
    .ticker-company-name {
      /* Logo-only ticker — company name kept in the DOM for accessibility/SEO context but visually hidden */
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    /* EY */
    .logo-ey     { background: #FFE600; color: #2e2e2e; font-size: 14px; font-weight: 900; border-radius: 4px; padding: 4px 8px; }
    /* Manpower */
    .logo-mp     { background: #CC0000; color: #fff; font-size: 9px; border-radius: 4px; padding: 4px 8px; letter-spacing:0; }
    /* QI Spine */
    .logo-qi     { background: #0098A6; color: #fff; font-size: 9px; border-radius: 4px; padding: 4px 8px; }
    /* NL Dalmia */
    .logo-nld    { background: #1b3a5c; color: #fff; font-size: 9px; border-radius: 4px; padding: 4px 8px; }
    /* Lawdit */
    .logo-law    { background: #1a1a1a; color: #fff; font-size: 9px; border-radius: 4px; padding: 4px 8px; }

    /* ─── ABOUT ─────────────────────────── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    @media(max-width:768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
    .about-visual-wrap { position: relative; }
    .about-main-card {
      background: var(--dark); border-radius: 24px;
      padding: 44px; color: #fff; position: relative; overflow: hidden;
    }
    .about-main-card::before {
      content:''; position:absolute; top:-80px; right:-80px;
      width:260px; height:260px;
      background: radial-gradient(circle, rgba(125,194,66,.25), transparent 70%);
    }
    .about-years { font-size: 88px; font-weight: 900; color: var(--green); line-height: 1; }
    .about-years-label { font-size: 20px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 24px; }
    .domain-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top: 4px; }
    .domain-chip {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
      border-radius: 50px; padding: 5px 14px; font-size: 13px; color: rgba(255,255,255,.8);
    }
    .about-float-a {
      position: absolute; bottom: -18px; right: -18px;
      background: var(--orange); border-radius: 16px;
      padding: 18px 22px; color: #fff;
    }
    .about-float-b {
      position: absolute; top: -18px; left: -18px;
      background: var(--pink); border-radius: 16px;
      padding: 18px 22px; color: #fff;
    }
    .float-num { font-size: 26px; font-weight: 900; line-height: 1; }
    .float-lbl { font-size: 11px; font-weight: 700; margin-top: 3px; opacity: .85; }
    .about-text p { font-size: 16.5px; color: var(--gray-500); line-height: 1.8; margin-bottom: 20px; }
    .about-features { display:flex; flex-direction:column; gap:16px; margin-top: 8px; }
    .af-item { display:flex; align-items:flex-start; gap:14px; }
    .af-icon {
      width:42px; height:42px; border-radius:10px; flex-shrink:0;
      display:flex; align-items:center; justify-content:center; font-size:17px;
    }
    .af-icon-g { background:var(--green-light); color:var(--green-d); }
    .af-icon-o { background:var(--orange-light); color:var(--orange-d); }
    .af-icon-p { background:var(--pink-light); color:var(--pink-d); }
    .af-text strong { display:block; font-size:14.5px; font-weight:700; color:var(--dark); margin-bottom:2px; }
    .af-text span { font-size:13.5px; color:var(--gray-500); }

    /* ─── SERVICES ──────────────────────── */
    #services { background: var(--dark); position: relative; overflow: hidden; }
    #services::before {
      content:''; position:absolute; inset:0;
      background-image: radial-gradient(circle, rgba(125,194,66,.06) 1px, transparent 1px);
      background-size: 42px 42px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
      gap: 20px; position: relative;
    }
    .svc-card {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius); padding: 30px 26px;
      transition: all .3s ease; cursor: default;
    }
    .svc-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
    .svc-card:nth-child(1):hover { border-color: rgba(125,194,66,.4); }
    .svc-card:nth-child(2):hover { border-color: rgba(247,148,30,.4); }
    .svc-card:nth-child(3):hover { border-color: rgba(232,62,140,.4); }
    .svc-card:nth-child(4):hover { border-color: rgba(125,194,66,.4); }
    .svc-card:nth-child(5):hover { border-color: rgba(247,148,30,.4); }
    .svc-card:nth-child(6):hover { border-color: rgba(232,62,140,.4); }
    .svc-card:nth-child(7):hover { border-color: rgba(125,194,66,.4); }
    .svc-card:nth-child(8):hover { border-color: rgba(247,148,30,.4); }
    .svc-card:nth-child(9):hover { border-color: rgba(232,62,140,.4); }
    .svc-card:nth-child(10):hover { border-color: rgba(125,194,66,.4); }
    .svc-icon {
      width: 50px; height: 50px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin-bottom: 18px;
    }
    .si-g { background: rgba(125,194,66,.18); color: var(--green); }
    .si-o { background: rgba(247,148,30,.18); color: var(--orange); }
    .si-p { background: rgba(232,62,140,.18); color: var(--pink); }
    .svc-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .svc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .svc-list li { font-size: 13px; color: rgba(255,255,255,.58); display:flex; align-items:center; gap:8px; }
    .svc-list li::before { content:''; width:5px; height:5px; border-radius:50%; flex-shrink:0; }
    .svc-card:nth-child(odd) .svc-list li::before { background: var(--green); }
    .svc-card:nth-child(even) .svc-list li::before { background: var(--orange); }

    /* ─── TECH STACK ────────────────────── */
    #techstack { background: var(--gray-50); }
    .tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px,1fr)); gap: 14px; }
    .tech-card {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: var(--radius); padding: 22px 14px; text-align: center;
      transition: all .25s;
    }
    .tech-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 4px 18px rgba(125,194,66,.15); }
    .tech-icon { font-size: 26px; margin-bottom: 8px; }
    .tech-name { font-size: 11.5px; font-weight: 700; color: var(--gray-700); }

    /* ─── CASE STUDIES ──────────────────── */
    .cases-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 26px;
    }
    @media(max-width:768px) { .cases-grid { grid-template-columns: 1fr; } }
    .case-card {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: 18px; overflow: hidden; transition: all .3s;
      display: flex; flex-direction: column;
    }
    .case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .case-card:nth-child(3n+1):hover { border-color: var(--green); }
    .case-card:nth-child(3n+2):hover { border-color: var(--orange); }
    .case-card:nth-child(3n+3):hover { border-color: var(--pink); }
    .case-head {
      padding: 26px 26px 20px; border-bottom: 1px solid var(--gray-100);
      display: flex; align-items: center; gap: 14px;
    }
    .case-ico {
      width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 21px;
    }
    .ci-g { background: var(--green-light); color: var(--green-d); }
    .ci-o { background: var(--orange-light); color: var(--orange-d); }
    .ci-p { background: var(--pink-light); color: var(--pink-d); }
    .case-name { font-size: 17px; font-weight: 800; color: var(--dark); }
    .case-type { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }
    .case-body { padding: 22px 26px; flex: 1; }
    .case-desc { font-size: 14px; color: var(--gray-700); line-height: 1.72; margin-bottom: 14px; }
    .case-tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .ctag {
      background: var(--gray-100); color: var(--gray-700);
      font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 6px;
    }
    .case-foot {
      padding: 14px 26px; border-top: 1px solid var(--gray-100);
      font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px;
    }
    .case-card:nth-child(3n+1) .case-foot { color: var(--green-d); }
    .case-card:nth-child(3n+2) .case-foot { color: var(--orange-d); }
    .case-card:nth-child(3n+3) .case-foot { color: var(--pink-d); }

    /* ─── WHY US ────────────────────────── */
    #whyus { background: var(--dark); overflow: hidden; position: relative; }
    #whyus::after {
      content:''; position:absolute; bottom:-120px; right:-120px;
      width:450px; height:450px;
      background: radial-gradient(circle, rgba(125,194,66,.1), transparent 70%);
    }
    .why-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
    }
    @media(max-width:900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:520px) { .why-grid { grid-template-columns: 1fr; } }
    .why-card {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
      border-radius: 16px; padding: 30px 26px; transition: all .3s;
    }
    .why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
    .why-card:nth-child(3n+1):hover { border-color: rgba(125,194,66,.3); }
    .why-card:nth-child(3n+2):hover { border-color: rgba(247,148,30,.3); }
    .why-card:nth-child(3n+3):hover { border-color: rgba(232,62,140,.3); }
    .why-icon-wrap {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin-bottom: 16px;
    }
    .why-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .why-desc { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; }

    /* ─── CLIENTS GRID ──────────────────── */
    #clients-section { background: var(--gray-50); }
    .clients-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(158px,1fr)); gap: 14px;
    }
    .cli-card {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: 12px; padding: 26px 16px; text-align: center;
      font-size: 14px; font-weight: 800; color: var(--gray-700);
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      transition: all .25s;
    }
    .cli-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
    .cli-card:nth-child(3n+1):hover { border-color: var(--green); color: var(--green-d); }
    .cli-card:nth-child(3n+2):hover { border-color: var(--orange); color: var(--orange-d); }
    .cli-card:nth-child(3n+3):hover { border-color: var(--pink); color: var(--pink-d); }
    .cli-card i { font-size: 22px; color: var(--gray-500); transition: color .25s; }
    .cli-card:hover i { color: inherit; }

    /* ─── TESTIMONIALS ──────────────────── */
    .testi-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(460px,1fr)); gap: 26px;
    }
    @media(max-width:600px) { .testi-grid { grid-template-columns: 1fr; } }
    .testi-card {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: 20px; padding: 38px; transition: all .3s;
    }
    .testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .testi-card:nth-child(1):hover { border-color: var(--green); }
    .testi-card:nth-child(2):hover { border-color: var(--orange); }
    .quote-big { font-size: 72px; font-family: Georgia, serif; line-height: .75; margin-bottom: 14px; display: block; }
    .testi-card:nth-child(1) .quote-big { color: var(--green); opacity: .5; }
    .testi-card:nth-child(2) .quote-big { color: var(--orange); opacity: .5; }
    .testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
    .testi-card:nth-child(1) .testi-stars i { color: var(--green); }
    .testi-card:nth-child(2) .testi-stars i { color: var(--orange); }
    .testi-text { font-size: 15.5px; color: var(--gray-700); line-height: 1.78; margin-bottom: 26px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .author-av {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; font-weight: 900; color: #fff;
    }
    .testi-card:nth-child(1) .author-av { background: linear-gradient(135deg, var(--green), #a8e063); }
    .testi-card:nth-child(2) .author-av { background: linear-gradient(135deg, var(--orange), #ffbf69); }
    .author-name { font-size: 15px; font-weight: 800; color: var(--dark); }
    .author-co   { font-size: 13px; font-weight: 600; margin-top: 2px; }
    .testi-card:nth-child(1) .author-co { color: var(--green-d); }
    .testi-card:nth-child(2) .author-co { color: var(--orange-d); }

    /* ─── TEAM ──────────────────────────── */
    #team { background: var(--dark); }
    .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
    @media(max-width:900px) { .team-grid { grid-template-columns: 1fr; max-width:380px; margin:0 auto; } }
    .team-card {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px; padding: 36px 26px; text-align: center; transition: all .3s;
    }
    .team-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
    .team-card:nth-child(1):hover { border-color: rgba(125,194,66,.35); }
    .team-card:nth-child(2):hover { border-color: rgba(247,148,30,.35); }
    .team-card:nth-child(3):hover { border-color: rgba(232,62,140,.35); }
    .team-av {
      width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 900; color: #fff;
    }
    .team-card:nth-child(1) .team-av { background: linear-gradient(135deg,var(--green),#a8e063); border: 3px solid rgba(125,194,66,.4); }
    .team-card:nth-child(2) .team-av { background: linear-gradient(135deg,var(--orange),#ffbf69); border: 3px solid rgba(247,148,30,.4); }
    .team-card:nth-child(3) .team-av { background: linear-gradient(135deg,var(--pink),#f48fb1); border: 3px solid rgba(232,62,140,.4); }
    .team-name { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 4px; }
    .team-role  { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
    .team-card:nth-child(1) .team-role { color: var(--green); }
    .team-card:nth-child(2) .team-role { color: var(--orange); }
    .team-card:nth-child(3) .team-role { color: var(--pink); }
    .team-desc { font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.7; }

    /* ─── ENGAGEMENT ────────────────────── */
    #engagement { }
    .engage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    @media(max-width:768px) { .engage-grid { grid-template-columns: 1fr; } }
    .engage-card {
      background: #fff; border: 1.5px solid var(--gray-200);
      border-radius: 18px; padding: 36px 30px; transition: all .3s; position: relative; overflow: hidden;
    }
    .engage-card.featured { background: var(--dark); border-color: var(--dark); }
    .engage-card:not(.featured):hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .engage-card:nth-child(1):not(.featured):hover { border-color: var(--green); }
    .engage-card:nth-child(3):not(.featured):hover { border-color: var(--pink); }
    .engage-card.featured:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,26,46,.3); }
    .engage-num { font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 16px; opacity: .15; }
    .engage-card:nth-child(1) .engage-num { color: var(--green); opacity: .25; }
    .engage-card:nth-child(2) .engage-num { color: var(--orange); }
    .engage-card:nth-child(3) .engage-num { color: var(--pink); opacity: .25; }
    .engage-icon {
      width: 52px; height: 52px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 20px;
    }
    .engage-card:nth-child(1) .engage-icon { background: var(--green-light); color: var(--green-d); }
    .engage-card:nth-child(2) .engage-icon { background: rgba(247,148,30,.15); color: var(--orange); }
    .engage-card:nth-child(3) .engage-icon { background: var(--pink-light); color: var(--pink-d); }
    .engage-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
    .engage-card.featured .engage-title { color: #fff; }
    .engage-desc { font-size: 14.5px; line-height: 1.72; color: var(--gray-500); }
    .engage-card.featured .engage-desc { color: rgba(255,255,255,.62); }

    /* ─── CONTACT ────────────────────────── */
    #contact { background: var(--dark); position: relative; overflow: hidden; }
    #contact::before {
      content:''; position:absolute; top:-150px; left:-150px;
      width:500px; height:500px;
      background: radial-gradient(circle, rgba(125,194,66,.12), transparent 70%);
    }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 72px; align-items: start; position: relative;
    }
    @media(max-width:900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
    .offices { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
    .office {
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px; padding: 22px 24px;
      display: flex; gap: 14px; align-items: flex-start;
    }
    .office-ico {
      width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 17px;
    }
    .office:nth-child(1) .office-ico { background: rgba(125,194,66,.15); color: var(--green); }
    .office:nth-child(2) .office-ico { background: rgba(247,148,30,.15); color: var(--orange); }
    .office:nth-child(3) .office-ico { background: rgba(232,62,140,.15); color: var(--pink); }
    .office-city { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .office-addr { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
    .office-ph { font-size: 13px; font-weight: 600; margin-top: 4px; }
    .office:nth-child(1) .office-ph { color: var(--green); }
    .office:nth-child(2) .office-ph { color: var(--orange); }
    .office:nth-child(3) .office-ph { color: var(--pink); }
    .form-wrap { background: #fff; border-radius: 20px; padding: 42px 38px; }
    .form-title { font-size: 21px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
    .form-sub { font-size: 13.5px; color: var(--gray-500); margin-bottom: 26px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media(max-width:480px) { .form-row { grid-template-columns: 1fr; } }
    .fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
    .fg label { font-size: 12.5px; font-weight: 700; color: var(--dark); }
    .fg input, .fg select, .fg textarea {
      padding: 11px 14px; border: 1.5px solid var(--gray-200);
      border-radius: 8px; font-size: 14px; font-family: inherit;
      color: var(--dark); background: var(--gray-50); outline: none; transition: border-color .2s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); background: #fff; }
    .fg textarea { resize: vertical; min-height: 106px; }
    .form-btn { width: 100%; padding: 14px; font-size: 15px; font-weight: 700; }
    .form-note { font-size: 11.5px; color: var(--gray-500); text-align: center; margin-top: 12px; }

    /* ─── FOOTER ─────────────────────────── */
    #footer { background: #0d0d1a; padding: 60px 0 30px; color: rgba(255,255,255,.55); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    @media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media(max-width:500px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand-p { font-size: 13.5px; line-height: 1.75; margin-top: 14px; color: rgba(255,255,255,.45); max-width: 280px; }
    .footer-col h4 { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
    .footer-links { display:flex; flex-direction:column; gap:9px; }
    .footer-links a { font-size: 13.5px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--green); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 26px; display:flex; justify-content:center;
      align-items:center; flex-wrap:wrap; gap:14px; font-size: 12.5px;
    }

    /* ─── Sticky CTA ─────────────────────── */
    .sticky-cta {
      position:fixed; bottom:26px; right:26px; z-index:900;
      display:flex; flex-direction:column; align-items:flex-end; gap:12px;
    }
    .sticky-cta a {
      display:flex; align-items:center; gap:8px;
      font-size: 13.5px; font-weight: 800;
      padding: 13px 22px; border-radius: 50px;
      text-decoration: none; white-space: nowrap;
      transition: all .25s;
    }
    /* ─── WhatsApp floating button ────────── */
    .wa-fab {
      background: #25D366; color: #fff;
      box-shadow: 0 6px 22px rgba(37,211,102,.5);
      position: relative;
    }
    .wa-fab .wa-ico { width: 20px; height: 20px; flex: none; }
    .wa-fab:hover { background: #1DA851; color:#fff; transform: translateY(-2px); }
    .wa-fab::before {
      content: ''; position: absolute; inset: 0; border-radius: 50px;
      border: 2px solid rgba(37,211,102,.55);
      animation: wa-pulse 2.4s ease-out infinite; pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);    opacity: .8; }
      70%  { transform: scale(1.14); opacity: 0;  }
      100% { transform: scale(1.14); opacity: 0;  }
    }
    @media (prefers-reduced-motion: reduce) { .wa-fab::before { animation: none; } }
    @media (max-width: 640px) {
      .sticky-cta { bottom: 18px; right: 18px; gap: 10px; }
      .wa-fab { width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }
      .wa-fab .wa-ico { width: 26px; height: 26px; }
      .wa-fab-text { display: none; }
    }

    /* ─── WhatsApp submit button ──────────── */
    .btn-whatsapp { background: #25D366; color: #fff; }
    .btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
    .btn-whatsapp .wa-ico { width: 17px; height: 17px; flex: none; }

    /* ─── WhatsApp contact card ───────────── */
    .office-ico-wa { background: rgba(37,211,102,.16) !important; color: #25D366 !important; }
    .office-ico-wa .wa-ico { width: 18px; height: 18px; }
    .footer-links .wa-ico { width: 13px; height: 13px; vertical-align: -2px; margin-right: 5px; }
    .office-wa-link { color: #25D366; text-decoration: none; font-weight: 700; transition: color .2s; }
    .office-wa-link:hover { color: #4ae08a; }

    /* ════════════════════════════════════════
       HERO ANIMATION & CREATIVE LAYER
    ════════════════════════════════════════ */

    /* ─── Animated backdrop ──────────────── */
    .hero-glow {
      position: absolute; top: 50%; left: 60%; width: 1000px; height: 1000px;
      margin: -500px 0 0 -500px; border-radius: 50%;
      background: conic-gradient(from 0deg,
        rgba(125,194,66,.14), rgba(247,148,30,.10),
        rgba(232,62,140,.14), rgba(125,194,66,.14));
      filter: blur(90px);
      animation: glowSpin 26s linear infinite;
      pointer-events: none;
    }
    @keyframes glowSpin { to { transform: rotate(360deg); } }

    .hero-grid-overlay {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
      background-size: 54px 54px;
      -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 78%);
      mask-image: radial-gradient(ellipse at 50% 40%, #000 25%, transparent 78%);
    }

    .hero-blob { animation: blobFloat 13s ease-in-out infinite alternate; will-change: transform; }
    .hero-blob-2 { animation-duration: 17s; animation-delay: -5s; }
    .hero-blob-3 { animation-duration: 11s; animation-delay: -2s; }
    @keyframes blobFloat {
      0%   { transform: translate(0,0) scale(1); }
      100% { transform: translate(46px,-34px) scale(1.18); }
    }

    /* ─── Two-column hero layout ─────────── */
    .hero-grid {
      display: grid; grid-template-columns: 1.06fr .94fr;
      gap: 56px; align-items: center;
      position: relative; z-index: 2; width: 100%;
    }
    @media(max-width:1020px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
    }

    /* ─── Gradient headline + typewriter ─── */
    .gradient-text {
      background: linear-gradient(90deg, var(--green), var(--orange), var(--pink), var(--green));
      background-size: 300% 100%;
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
      animation: gradientShift 7s linear infinite;
    }
    @keyframes gradientShift { to { background-position: 300% 0; } }
    .type-caret {
      display: inline-block; width: 5px; height: .82em;
      background: var(--green); margin-left: 8px; border-radius: 3px;
      animation: caretBlink 1s step-end infinite; vertical-align: baseline;
      transform: translateY(.08em);
    }
    @keyframes caretBlink { 50% { opacity: 0; } }

    /* ─── Floating code window ───────────── */
    .hero-visual { position: relative; }
    .code-window {
      background: rgba(255,255,255,.045);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 18px; overflow: hidden;
      box-shadow: 0 34px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03) inset;
      animation: floatY 7s ease-in-out infinite;
      will-change: transform;
    }
    @keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
    .code-bar {
      display: flex; align-items: center; gap: 8px;
      padding: 14px 18px;
      background: rgba(255,255,255,.05);
      border-bottom: 1px solid rgba(255,255,255,.09);
    }
    .code-dot { width: 12px; height: 12px; border-radius: 50%; }
    .cd-r { background: #ff5f57; } .cd-y { background: #febc2e; } .cd-g { background: #28c840; }
    .code-file {
      margin-left: 10px; font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,.45); letter-spacing: .5px;
      font-family: 'Consolas','Monaco',monospace;
    }
    .code-body {
      padding: 24px 24px 28px; min-height: 272px;
      font-family: 'Consolas','Monaco','Courier New',monospace;
      font-size: 13.5px; line-height: 2.05; color: rgba(255,255,255,.82);
    }
    .code-line { opacity: 0; transform: translateX(-8px); transition: opacity .35s ease, transform .35s ease; white-space: pre-wrap; }
    .code-line.shown { opacity: 1; transform: translateX(0); }
    .ck { color: #E83E8C; }
    .cf { color: #7DC242; }
    .cs { color: #F7941E; }
    .cc { color: rgba(255,255,255,.34); font-style: italic; }
    .code-success { color: #7DC242; font-weight: 700; }

    /* ─── Orbiting tech chips ────────────── */
    .orbit-chip {
      position: absolute; z-index: 3;
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(20,20,38,.88);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border-radius: 50px; padding: 10px 18px;
      font-size: 12.5px; font-weight: 800; color: #fff; letter-spacing: .3px;
      box-shadow: 0 10px 34px rgba(0,0,0,.45);
      animation: floatY 5.5s ease-in-out infinite;
      white-space: nowrap;
    }
    .orbit-chip i { font-size: 14px; }
    .chip-1 { top: -24px; left: -34px; animation-delay: -1.2s; }
    .chip-1 i { color: var(--pink); }
    .chip-2 { top: 34%; right: -44px; animation-delay: -2.6s; animation-duration: 6.5s; }
    .chip-2 i { color: #61dafb; }
    .chip-3 { bottom: -20px; left: 8%; animation-delay: -4s; animation-duration: 6s; }
    .chip-3 i { color: var(--orange); }
    .chip-4 { bottom: 26%; left: -52px; animation-delay: -3.2s; animation-duration: 7s; }
    .chip-4 i { color: var(--green); }

    /* ─── Scroll indicator ───────────────── */
    .hero-scroll {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 9px;
      color: rgba(255,255,255,.45); font-size: 10.5px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none;
      transition: color .25s;
    }
    .hero-scroll:hover { color: rgba(255,255,255,.8); }
    .mouse {
      width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.32);
      border-radius: 14px; position: relative;
    }
    .mouse::after {
      content: ''; position: absolute; top: 6px; left: 50%;
      width: 4px; height: 9px; margin-left: -2px; border-radius: 2px;
      background: var(--green); animation: wheel 1.7s ease infinite;
    }
    @keyframes wheel {
      0% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(13px); }
    }
    @media(max-height:700px) { .hero-scroll { display: none; } }

    /* ─── Button shine sweep ─────────────── */
    .btn { position: relative; overflow: hidden; }
    .btn::after {
      content: ''; position: absolute; top: 0; left: -90%;
      width: 45%; height: 100%;
      background: linear-gradient(115deg, transparent, rgba(255,255,255,.4), transparent);
      transform: skewX(-22deg); transition: left .55s ease;
      pointer-events: none;
    }
    .btn:hover::after { left: 140%; }

    /* ─── Pulse dot on section tags ──────── */
    .tag::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: currentColor; animation: pulse 2.2s infinite;
    }
    .tag-white::before { background: var(--green); }

    /* ─── 3D tilt on case cards ──────────── */
    .case-card { will-change: transform; transform-style: preserve-3d; }
    .case-card.tilting { transition: transform .08s linear, box-shadow .3s; }
    .case-card .case-head, .case-card .case-body, .case-card .case-foot { transform: translateZ(20px); }

    /* ─── Logo swaps on scroll ───────────── */
    #navbar .logo-on-light { display: none; }
    #navbar.scrolled .logo-on-light { display: block; }
    #navbar.scrolled .logo-on-dark { display: none; }

    /* ─── Respect reduced-motion ─────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .code-line { opacity: 1; transform: none; }
    }
