/* ─────────────────────────────────────
     CORPORATE FONT STACK (Helvetica Neue / Inter)
  ───────────────────────────────────── */
  :root {
    --font: "Helvetica Neue", HelveticaNeue, Helvetica, "Inter", Arial, sans-serif;
    --accent: #78ba17;
    --accent-light: #4d7d05;
    --dark: #0A0A0A;
    --grey-1: #1A1A1A;
    --grey-2: #3D3D3D;
    --grey-3: #6B7280;
    --grey-4: #9CA3AF;
    --border: #E4E6E8;
    --bg-soft: #F5F5F3;
    --bg-white: #FFFFFF;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 12px 40px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.10), 0 24px 64px rgba(0,0,0,.10);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font);
    background: var(--bg-white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
  }

  /* ─────────────────────────────────────
     CUSTOM CURSOR
  ───────────────────────────────────── */
  #cur-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform .15s ease, width .2s, height .2s;
  }
  #cur-ring {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--accent);
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, opacity .25s, border-color .25s;
    opacity: .5;
  }
  body.cursor-hover #cur-ring { width: 54px; height: 54px; opacity: .2; }
  body.cursor-hover #cur-dot  { transform: translate(-50%,-50%) scale(1.6); }

  /* ─────────────────────────────────────
     HEADING MASK HOVER
     Works on BLOCK elements — uses an
     absolutely-positioned <span> child
     that is visible text matching the parent,
     revealed via radial-gradient clip.
  ───────────────────────────────────── */
  .mh {
    position: relative;
    /* Keep normal text colour — override only the mask span */
  }
  .mh .ml {
    /* Mirror text, sits on top, masked via gradient clip */
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle 160px at var(--cx, -200px) var(--cy, 50%), var(--accent) 0%, var(--accent-light) 35%, transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity .3s ease;
    /* Exact same font as parent */
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: pre-wrap;
  }
  .mh:hover .ml { opacity: 1; }
  a.logo-brand img{
    width: 160px;
  }

  /* ─────────────────────────────────────
     KEYFRAMES
  ───────────────────────────────────── */
  @keyframes fadeUp   { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeDown { from { opacity:0; transform:translateY(-28px);} to { opacity:1; transform:translateY(0); } }
  @keyframes fadeLeft { from { opacity:0; transform:translateX(52px); } to { opacity:1; transform:translateX(0); } }
  @keyframes navIn    { from { opacity:0; transform:translateY(-100%);} to { opacity:1; transform:translateY(0); } }
  @keyframes floatImg { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
  @keyframes floatB   { 0%,100%{transform:translateY(0) rotate(-1.5deg);} 50%{transform:translateY(-8px) rotate(1.5deg);} }
  @keyframes spin     { to { transform:rotate(360deg); } }
  @keyframes dotsBg   { to { background-position: 36px 36px; } }
  @keyframes orbit    { from{transform:rotate(0deg) translateX(72px) rotate(0deg);} to{transform:rotate(360deg) translateX(72px) rotate(-360deg);} }
  @keyframes ripple   { to { transform:scale(5); opacity:0; } }
  @keyframes wordSlide { from { opacity:0; transform:translateY(105%); } to { opacity:1; transform:translateY(0); } }
  @keyframes lineGrow  { from { width:0; } to { width:60px; } }

  /* ─────────────────────────────────────
     SCROLL REVEAL
  ───────────────────────────────────── */
  .reveal         { opacity:0; transform:translateY(40px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
  .reveal.in      { opacity:1; transform:none; }
  .rl             { opacity:0; transform:translateX(-48px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
  .rl.in          { opacity:1; transform:none; }
  .rr             { opacity:0; transform:translateX(48px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
  .rr.in          { opacity:1; transform:none; }
  .d1{transition-delay:.07s!important} .d2{transition-delay:.14s!important}
  .d3{transition-delay:.21s!important} .d4{transition-delay:.28s!important}
  .d5{transition-delay:.35s!important}

  /* ─────────────────────────────────────
     SECTION HEADER — FIXED LAYOUT
     Tag is LEFT-ALIGNED inside centered wrapper
  ───────────────────────────────────── */
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-header .sh-inner { display: inline-block; text-align: left; }
  .stag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(119,235,84,.07); color: var(--accent);
    border: 1px solid rgba(119,235,84,.15);
    border-radius: var(--radius-sm); padding: 5px 12px;
    font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: 14px;
    font-family: var(--font);
  }
  .section-header h2 {
    font-family: var(--font);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--dark);
    margin-bottom: 0;
  }
  .section-header .sh-line {
    width: 0; height: 2px; background: var(--accent);
    margin-top: 14px; border-radius: 2px;
    transition: width 1s cubic-bezier(.22,1,.36,1);
  }
  .section-header.in .sh-line { width: 60px; }
  .section-header p {
    color: var(--grey-3); max-width: 540px;
    margin: 16px auto 0; line-height: 1.75; font-size: .975rem;
    font-weight: 400;
  }

  /* Section left-aligned header variant */
  .section-header.left { text-align: left; }
  .section-header.left p { margin-left: 0; }

  /* ─────────────────────────────────────
     NAVBAR
  ───────────────────────────────────── */
  .navbar {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0; position: sticky; top: 0; z-index: 1000;
    animation: navIn .55s ease both;
    transition: box-shadow .3s;
  }
  .navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.07); }
  .navbar .container { height: 64px; display: flex; align-items: center; }
  .navbar-brand {
    font-family: var(--font); font-weight: 800; font-size: 1.4rem;
    color: var(--dark) !important; letter-spacing: -.04em;
    text-decoration: none;
  }
  .navbar-brand .a { color: var(--accent); }
  .nav-link {
    font-family: var(--font); font-weight: 500; color: var(--grey-2) !important;
    font-size: .845rem; padding: 6px 13px !important; letter-spacing: -.01em;
    position: relative; transition: color .2s;
  }
  .nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 13px; right: 13px;
    height: 1.5px; background: var(--accent); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform .25s;
  }
  .nav-link:hover { color: var(--accent) !important; }
  .nav-link:hover::after { transform: scaleX(1); }
  .btn-nav {
    background: var(--accent); color: #fff !important; border-radius: var(--radius-sm);
    padding: 9px 20px !important; font-weight: 600; font-size: .845rem;
    transition: all .22s; letter-spacing: -.01em; white-space: nowrap;
  }
  .btn-nav:hover { background: #4aad29; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(119,235,84,.3); }

  /* Navbar mobile collapse menu */
  @media (max-width: 991px) {
    .navbar .container { height: 58px; }
    .navbar-collapse {
      background: #fff; border-top: 1px solid var(--border);
      padding: 14px 0 18px; position: absolute;
      top: 58px; left: 0; right: 0;
      box-shadow: 0 8px 28px rgba(0,0,0,.09);
    }
    .navbar-nav { padding: 0 16px; gap: 2px !important; }
    .nav-link { padding: 10px 14px !important; border-radius: var(--radius-sm); }
    .nav-link:hover { background: var(--bg-soft); }
    .nav-link::after { display: none !important; }
    .navbar-nav .btn-nav {
      margin: 12px 14px 0 !important; width: calc(100% - 28px);
      display: flex; justify-content: center;
      border-radius: var(--radius-sm) !important;
      padding: 11px 20px !important;
    }
    .navbar-toggler { padding: 4px 8px; border-radius: 6px; }
    .navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(119,235,84,.2); }
    .navbar-toggler-icon { width: 1.2em; height: 1.2em; }
  }

  /* BREADCRUMB */
  .bc-bar { background: var(--dark); padding: 9px 0; }
  .bc {
    list-style: none; padding: 0; margin: 0;
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    font-family: var(--font); font-size: .72rem; color: #666;
  }
  .bc a { color: #666; text-decoration: none; transition: color .2s; }
  .bc a:hover { color: var(--accent); }
  .bc .sep { color: #333; }
  .bc .cur { color: #ccc; }

  /* ─────────────────────────────────────
     HERO
  ───────────────────────────────────── */
  .hero {
    background: var(--bg-soft);
    padding: 96px 0 72px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(119,235,84,.08) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: dotsBg 10s linear infinite;
    pointer-events: none; z-index: 0;
  }
  .hero .container { position: relative; z-index: 1; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid rgba(119,235,84,.2);
    border-radius: var(--radius-sm); padding: 6px 14px;
    font-size: .72rem; font-weight: 600; color: var(--accent);
    margin-bottom: 22px; animation: fadeDown .55s .1s both;
    letter-spacing: .02em;
  }
  .hero h1 {
    font-family: var(--font);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800; line-height: 1.06;
    letter-spacing: -.05em; color: var(--dark);
    margin-bottom: 22px;
    animation: fadeUp .7s .2s both;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero-p {
    color: var(--grey-3); font-size: 1.02rem; max-width: 480px;
    line-height: 1.75; margin-bottom: 32px;
    animation: fadeUp .7s .32s both;
  }
  .hero-btns { animation: fadeUp .7s .44s both; }
  .hero-stats {
    animation: fadeUp .7s .58s both;
    display: flex; gap: 28px; flex-wrap: wrap;
    margin-top: 36px; padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,.08);
  }
  .hs-num {
    font-family: var(--font); font-size: 1.9rem; font-weight: 800;
    color: var(--accent); line-height: 1;
  }
  .hs-lbl {
    font-size: .68rem; font-weight: 600; color: var(--grey-3);
    margin-top: 4px; text-transform: uppercase; letter-spacing: .06em;
  }

  /* Buttons */
  .btn-p {
    background: var(--accent); color: #fff;
    border-radius: var(--radius-sm); padding: 13px 24px;
    font-family: var(--font); font-weight: 600; font-size: .9rem;
    border: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all .22s; text-decoration: none;
    position: relative; overflow: hidden; letter-spacing: -.01em;
  }
  .btn-p::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.12); opacity: 0; transition: opacity .2s; }
  .btn-p:hover::after { opacity: 1; }
  .btn-p:hover { background: #4aad29; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(119,235,84,.32); color: #fff; }
  .btn-o {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--dark); border-radius: var(--radius-sm);
    padding: 12px 22px; font-family: var(--font); font-weight: 600;
    font-size: .9rem; display: inline-flex; align-items: center; gap: 8px;
    transition: all .22s; text-decoration: none; letter-spacing: -.01em;
  }
  .btn-o:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
  .btn-white {
    background: #fff; color: var(--accent); border-radius: var(--radius-sm);
    padding: 13px 28px; font-family: var(--font); font-weight: 700;
    font-size: .9rem; border: none; display: inline-flex; align-items: center;
    gap: 8px; transition: all .22s; text-decoration: none; letter-spacing: -.01em;
  }
  .btn-white:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }

  /* Hero image column */
  .hero-img-col { position: relative; animation: fadeLeft .85s .28s both; }
  .hero-img {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 440px; position: relative;
  }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; animation: floatImg 7s ease-in-out infinite; }
  .hero-img-scrim { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,10,10,.25) 0%, transparent 55%); }
  .hero-float-1 {
    position: absolute; bottom: 22px; left: -18px;
    background: #fff; border-radius: 12px; padding: 14px 18px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
    animation: floatB 4.5s ease-in-out infinite;
  }
  .hero-float-1 .fn { font-family: var(--font); font-size: 1.55rem; font-weight: 800; color: var(--accent); }
  .hero-float-1 .fl { font-size: .7rem; color: var(--grey-3); font-weight: 500; }
  .hero-float-2 {
    position: absolute; top: 20px; right: -4px;
    background: #fff; border-radius: 10px; padding: 12px 16px;
    box-shadow: var(--shadow-md); animation: floatB 5.5s ease-in-out 1.5s infinite;
  }
  .hero-orbit { position: absolute; top: 50%; left: 50%; width: 0; height: 0; pointer-events: none; }
  .hero-orb-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); position: absolute; animation: orbit 9s linear infinite; }

  /* ─────────────────────────────────────
     COUNTER STRIP
  ───────────────────────────────────── */
  .ctr-strip { padding: 80px 0; background: var(--dark); position: relative; overflow: hidden; }
  .ctr-strip::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(119,235,84,.06) 1px, transparent 1px);
    background-size: 22px 22px;
  }
  .ctr-item { text-align: center; position: relative; }
  .ctr-item + .ctr-item::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 44px; background: #1E1E1E;
  }
  .ctr-item .cn { font-family: var(--font); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
  .ctr-item .cl { font-size: .7rem; color: #777; margin-top: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

  /* ─────────────────────────────────────
     WHY HIRE
  ───────────────────────────────────── */
  .why-sec { padding: 96px 0; background: var(--bg-white); }
  .stat-card {
    background: var(--bg-soft); border-radius: var(--radius); padding: 32px 28px;
    height: 100%; border-left: 3px solid var(--accent);
    transition: transform .3s, box-shadow .3s;
  }
  .stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .stat-card .sb { font-family: var(--font); font-size: 2.75rem; font-weight: 800; color: var(--accent); margin-bottom: 10px; line-height: 1; }
  .stat-card p { color: var(--grey-3); font-size: .9rem; line-height: 1.7; margin: 0; }

  /* Photo grid */
  .photo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; height: 300px; margin: 52px 0; }
  .pg-item { border-radius: var(--radius); overflow: hidden; position: relative; }
  .pg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .pg-item:hover img { transform: scale(1.04); }
  .pg-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: linear-gradient(to top, rgba(10,10,10,.72), transparent); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

  .impact-card {
    background: var(--bg-soft); border-radius: var(--radius); padding: 28px 24px;
    height: 100%; transition: transform .3s, box-shadow .3s;
  }
  .impact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .imp-ico {
    width: 44px; height: 44px; background: rgba(119,235,84,.09); border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.25rem; margin-bottom: 14px;
    transition: all .3s;
  }
  .impact-card:hover .imp-ico { background: var(--accent); color: #fff; }
  .impact-card h6 { font-family: var(--font); font-weight: 700; margin-bottom: 8px; font-size: 1.2rem; letter-spacing: -.02em; }
  .impact-card p { color: var(--grey-3); font-size: .84rem; line-height: 1.65; margin: 0; }

  /* ─────────────────────────────────────
     USP
  ───────────────────────────────────── */
  .usp-sec { padding: 96px 0; background: var(--bg-soft); }
  .usp-card {
    background: var(--bg-white); border-radius: var(--radius); padding: 32px 28px;
    height: 100%; border: 1px solid var(--border);
    position: relative; overflow: hidden; transition: all .3s;
  }
  .usp-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%;
    background: var(--accent); transform: scaleY(0); transform-origin: bottom;
    transition: transform .35s;
  }
  .usp-card:hover::before { transform: scaleY(1); }
  .usp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(119,235,84,.15); }
  .usp-n {
    width: 38px; height: 38px; background: var(--accent); border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font); font-weight: 800; font-size: .9rem;
    margin-bottom: 16px; transition: border-radius .3s;
  }
  .usp-card:hover .usp-n { border-radius: 50%; }
  .usp-card h5 { font-family: var(--font); font-weight: 700; margin-bottom: 10px; font-size: 1.2rem; letter-spacing: -.02em; }
  .usp-card p { color: var(--grey-3); font-size: .84rem; line-height: 1.7; margin: 0; }

  /* ─────────────────────────────────────
     INDUSTRIES SLIDER
  ───────────────────────────────────── */
  .ind-sec { padding: 96px 0; background: var(--bg-white); }
  .ind-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
  .ind-header .ih-left h2 { font-family: var(--font); font-size: clamp(1.85rem,3.5vw,2.6rem); font-weight: 800; letter-spacing: -.04em; }
  .ind-arrow-btns { display: flex; gap: 9px; }
  .ind-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--bg-white); color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    cursor: none; transition: all .22s; font-size: .95rem;
  }
  .ind-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .ind-track { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .ind-track::-webkit-scrollbar { display: none; }
  .ind-card {
    flex: 0 0 420px; border-radius: var(--radius-lg);
    overflow: hidden; position: relative; cursor: none; height: 360px;
  }
  .ind-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1); }
  .ind-card:hover img { transform: scale(1.06); }
  .ind-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.88) 0%, rgba(10,10,10,.35) 50%, rgba(10,10,10,.1) 100%);
    transition: background .4s;
  }
  .ind-card:hover .ind-scrim { background: linear-gradient(to top, rgba(119,235,84,.88) 0%, rgba(10,10,10,.4) 55%, rgba(10,10,10,.1) 100%); }
  .ind-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; }
  .ind-body h3 { color: #fff; font-family: var(--font); font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.04em; }
  .ind-body p { color: rgba(255,255,255,.78); font-size: .82rem; line-height: 1.58; margin-bottom: 14px; }
  .ind-tags { display: flex; flex-wrap: wrap; gap: 5px; }
  .ind-tag {
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    color: #fff; border-radius: 20px; padding: 4px 11px;
    font-size: .68rem; font-weight: 600; backdrop-filter: blur(4px);
    transition: all .25s; font-family: var(--font);
  }
  .ind-card:hover .ind-tag { background: rgba(255,255,255,.9); color: var(--dark); }
  .ind-dots { display: flex; gap: 6px; align-items: center; margin-top: 18px; }
  .ind-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: all .3s; cursor: none; }
  .ind-dot.on { width: 22px; border-radius: 4px; background: var(--accent); }

  /* ─────────────────────────────────────
     CHARTS
  ───────────────────────────────────── */
  .charts-sec { padding: 96px 0; background: var(--bg-soft); }
  .chart-card { background: var(--bg-white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); height: 100%; }
  .chart-card h5 { font-family: var(--font); font-weight: 700; font-size: 1.2rem; margin-bottom: 3px; letter-spacing: -.02em; }
  .chart-card .csub { font-size: .74rem; color: var(--grey-3); margin-bottom: 16px; }
  .chart-wrap { position: relative; height: 220px; }

  /* ─────────────────────────────────────
     GUARANTEES
  ───────────────────────────────────── */
  .g-sec { padding: 96px 0; background: var(--bg-white); }
  .g-card {
    background: var(--bg-soft); border-radius: var(--radius); padding: 32px 28px;
    height: 100%; text-align: center; border: 1px solid transparent;
    transition: all .3s;
  }
  .g-card:hover { border-color: rgba(119,235,84,.18); transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--bg-white); }
  .g-ico {
    width: 58px; height: 58px; background: rgba(119,235,84,.07); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.5rem; margin: 0 auto 18px;
    transition: all .3s;
  }
  .g-card:hover .g-ico { background: var(--accent); color: #fff; }
  .g-card h5 { font-family: var(--font); font-weight: 700; margin-bottom: 10px; font-size: 1.2rem; letter-spacing: -.02em; }
  .g-card p { color: var(--grey-3); font-size: .84rem; line-height: 1.7; margin: 0; }

  /* ─────────────────────────────────────
     TESTIMONIALS
  ───────────────────────────────────── */
  .testi-sec { padding: 96px 0; background: var(--bg-soft); }
  .photo-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; height: 210px; margin-bottom: 40px; }
  .testi-card {
    background: var(--bg-white); border-radius: var(--radius); padding: 32px;
    height: 100%; position: relative; border: 1px solid var(--border);
    transition: all .3s;
  }
  .testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(119,235,84,.12); }
  .tq { font-size: 3rem; color: var(--accent); line-height: .85; margin-bottom: 12px; font-family: Georgia, serif; opacity: .4; }
  .tt { font-size: .87rem; line-height: 1.78; color: var(--dark); margin-bottom: 18px; font-style: italic; }
  .ta { display: flex; align-items: center; gap: 11px; }
  .ta-av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 700; font-size: .78rem; }
  .ta-name { font-family: var(--font); font-weight: 700; font-size: .85rem; }
  .ta-role { font-size: .74rem; color: var(--grey-3); }
  .t-flag { position: absolute; top: 18px; right: 18px; font-size: 1.3rem; }
  .stars { color: #F59E0B; font-size: .78rem; margin-bottom: 10px; letter-spacing: 2px; }

  /* ─────────────────────────────────────
     TALENT NETWORK — COUNTRY CARDS
  ───────────────────────────────────── */
  .talent-sec { padding: 96px 0; background: var(--bg-white); }
  .country-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .cc {
    background: var(--bg-soft); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); transition: all .3s;
  }
  .cc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(119,235,84,.2); }
  .cc-banner {
    height: 88px; overflow: hidden; position: relative;
    background: #ddd;
  }
  .cc-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.2) 0%, transparent 60%);
    pointer-events: none; z-index: 1;
  }
  .cc-flag-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
  }
  .cc:hover .cc-flag-img { transform: scale(1.07); }
  .cc-inline-flag {
    width: 22px; height: 15px; object-fit: cover;
    border-radius: 2px; vertical-align: middle;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    flex-shrink: 0; display: inline-block;
  }
  .cc-body { padding: 16px 16px 18px; }
  .cc-name { font-family: var(--font); font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; letter-spacing: -.03em; display: flex; align-items: center; gap: 7px; }
  .cc-num { font-family: var(--font); font-weight: 800; font-size: 1.45rem; color: var(--accent); line-height: 1; margin-bottom: 2px; }
  .cc-numl { font-size: .65rem; color: var(--grey-3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; }
  .cc-contract { font-size: .72rem; color: var(--grey-3); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
  .cc-sectors { display: flex; flex-wrap: wrap; gap: 4px; }
  .cc-tag { background: rgba(119,235,84,.07); color: var(--accent); border-radius: 4px; padding: 3px 7px; font-size: .63rem; font-weight: 700; font-family: var(--font); }

  /* ─────────────────────────────────────
     PERFORMANCE
  ───────────────────────────────────── */
  .perf-sec { padding: 96px 0; background: var(--bg-soft); }
  .perf-card {
    background: var(--bg-white); border-radius: var(--radius); padding: 30px 28px;
    height: 100%; border: 1px solid var(--border); transition: all .3s;
  }
  .perf-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .perf-card h5 { font-family: var(--font); font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-size: 1.2rem; letter-spacing: -.02em; }
  .p-ico { width: 32px; height: 32px; background: var(--accent); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .82rem; flex-shrink: 0; }
  .pl { list-style: none; padding: 0; margin: 0; }
  .pl li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: .84rem; color: var(--grey-3); line-height: 1.6; }
  .pl li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
  .sk-bar { margin-bottom: 15px; }
  .sk-bar label { font-family: var(--font); font-size: .78rem; font-weight: 600; display: flex; justify-content: space-between; margin-bottom: 6px; color: var(--dark); }
  .sk-track { height: 6px; background: #EEE; border-radius: 6px; overflow: hidden; }
  .sk-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 6px; width: 0; transition: width 1.3s cubic-bezier(.22,1,.36,1); }

  /* ─────────────────────────────────────
     FAQ
  ───────────────────────────────────── */
  .faq-sec { padding: 96px 0; background: var(--bg-white); }
  .accordion-button { font-family: var(--font); font-weight: 600; font-size: .88rem; background: var(--bg-soft); color: var(--dark); letter-spacing: -.01em; }
  .accordion-button:not(.collapsed) { background: var(--accent); color: #fff; box-shadow: none; }
  .accordion-button:not(.collapsed)::after { filter: invert(1); }
  .accordion-item { border: none; border-radius: 9px !important; overflow: hidden; margin-bottom: 9px; background: var(--bg-soft); }
  .accordion-body { font-size: .85rem; color: var(--grey-3); line-height: 1.78; background: var(--bg-soft); }

  /* ─────────────────────────────────────
     CITIES
  ───────────────────────────────────── */
  .cities-sec { padding: 72px 0; background: var(--bg-soft); }
  .city-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--bg-white); border-radius: var(--radius-sm);
    padding: 10px 18px; font-family: var(--font); font-weight: 600;
    font-size: .84rem; margin: 5px; transition: all .22s;
    border: 1px solid var(--border); letter-spacing: -.01em; cursor: none;
  }
  .city-pill:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(119,235,84,.22); }
  .city-pill i { color: var(--accent); transition: color .2s; font-size: .8rem; }
  .city-pill:hover i { color: #fff; }

  /* ─────────────────────────────────────
     CTA BAND
  ───────────────────────────────────── */
  .cta-band { padding: 96px 0; background: var(--dark); position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(119,235,84,.14) 0%, transparent 55%); }
  .cta-band::after  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(119,235,84,.09) 0%, transparent 55%); }
  .cta-band h2 { color: #fff; font-family: var(--font); font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -.05em; }
  .cta-band p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.75; max-width: 520px; margin: 0 auto 36px; }

  /* ─────────────────────────────────────
     CONTACT
  ───────────────────────────────────── */
  .contact-sec { padding: 96px 0; background: var(--bg-soft); }
  .ct-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 52px 44px; box-shadow: var(--shadow-lg); }
  .form-control, .form-select {
    border-radius: var(--radius-sm); border: 1.5px solid var(--border);
    padding: 12px 14px; font-size: .875rem; font-family: var(--font);
    background: var(--bg-white); transition: border-color .22s, box-shadow .22s;
    color: var(--dark);
  }
  .form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(119,235,84,.09); outline: none; }
  .form-control::placeholder { color: var(--grey-4); }
  textarea.form-control { min-height: 118px; resize: vertical; }
  .ct-info h3 { font-family: var(--font); font-weight: 800; font-size: 1.7rem; margin-bottom: 12px; letter-spacing: -.05em; }
  .ct-info h3 em { color: var(--accent); font-style: italic; }
  .ct-info .ct-desc { color: var(--grey-3); line-height: 1.75; margin-bottom: 24px; font-size: .9rem; }
  .ct-row { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
  .ct-ico { width: 42px; height: 42px; background: rgba(119,235,84,.07); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; flex-shrink: 0; transition: all .25s; }
  .ct-row:hover .ct-ico { background: var(--accent); color: #fff; }
  .ct-ico-label { font-family: var(--font); font-weight: 600; font-size: .86rem; }
  .ct-ico-sub { font-size: .76rem; color: var(--grey-3); }
  .ct-steps { background: var(--bg-soft); border-radius: 10px; padding: 18px 20px; margin-top: 20px; }
  .ct-steps h6 { font-family: var(--font); font-weight: 700; margin-bottom: 12px; font-size: .84rem; letter-spacing: -.01em; }
  .ct-step { display: flex; gap: 11px; align-items: flex-start; font-size: .8rem; color: var(--grey-3); margin-bottom: 9px; line-height: 1.5; }
  .ct-step-n { width: 20px; height: 20px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .62rem; font-weight: 800; font-family: var(--font); flex-shrink: 0; }

  /* ─────────────────────────────────────
     FOOTER
  ───────────────────────────────────── */
  footer { background: var(--dark); color: #fff; padding: 72px 0 28px; }
  footer .brand { font-family: var(--font); font-weight: 800; font-size: 1.55rem; margin-bottom: 12px; letter-spacing: -.05em; }
  footer .brand .a { color: var(--accent); }
  footer .ft-desc { color: #888; font-size: .84rem; line-height: 1.75; }
  footer .ft-col-head { font-family: var(--font); font-weight: 700; margin-bottom: 16px; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: #666; }
  footer ul { list-style: none; padding: 0; }
  footer ul li { margin-bottom: 9px; }
  footer ul li a { color: #555; text-decoration: none; font-size: .84rem; transition: color .2s, padding-left .2s; display: inline-block; font-family: var(--font); }
  footer ul li a:hover { color: var(--accent); padding-left: 4px; }
  .soc { display: flex; gap: 8px; margin-top: 18px; }
  .soc a { width: 34px; height: 34px; border-radius: 6px; border: 1px solid #222; color: #555; display: flex; align-items: center; justify-content: center; font-size: .84rem; text-decoration: none; transition: all .22s; }
  .soc a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
  .ft-bottom { border-top: 1px solid #161616; margin-top: 48px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .ft-bottom p { color: #444; font-size: .74rem; margin: 0; font-family: var(--font); }
  .ft-links { display: flex; gap: 18px; }
  .ft-links a { color: #444; font-size: .74rem; text-decoration: none; font-family: var(--font); transition: color .2s; }
  .ft-links a:hover { color: var(--accent); }

  /* ─────────────────────────────────────
     BACK TO TOP
  ───────────────────────────────────── */
  #btt { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--accent); color: #fff; border: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: none; opacity: 0; transform: translateY(12px); transition: all .3s; z-index: 9998; }
  #btt.show { opacity: 1; transform: none; }
  #btt:hover { background: #4aad29; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(119,235,84,.36); }

/* ─────────────────────────────────────
     WHATSAPP CHAT ICON
  ───────────────────────────────────── */
  /* Positioning the WhatsApp icon */
  #whatsapp-chat {
    position: fixed;
    bottom: 80PX;
    right: 20PX;
    z-index: 999;
}
  
  /* Making the image responsive */
  #whatsapp-chat img {
    width: 52px; /* Change the size as needed */
    height: auto;
    transition: transform 0.3s ease;
  }
  
  /* Add a hover effect for interactivity */
  #whatsapp-chat:hover img {
    transform: scale(1.1); /* Slight zoom effect */
  }
  

  /* ═══════════════════════════════════════
     RESPONSIVE — MOBILE-FIRST FULL AUDIT
     xs  <576px  │ sm  576–767px
     md  768–991px│ lg  992–1199px │ xl 1200+
  ═══════════════════════════════════════ */

  /* ── XL 1200+ ── */
  @media (min-width: 1200px) {
    .country-grid { grid-template-columns: repeat(5, 1fr); }
  }

  /* ── LG 992-1199 ── */
  @media (max-width: 1199px) {
    .country-grid { grid-template-columns: repeat(3, 1fr); }
    .hero h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
  }

  /* ── MD Tablet 768-991 ── */
  @media (max-width: 991px) {
    /* Sections */
    .why-sec, .usp-sec, .ind-sec, .charts-sec,
    .g-sec, .testi-sec, .talent-sec, .perf-sec,
    .faq-sec, .cities-sec, .cta-band, .contact-sec { padding: 72px 0; }

    /* Hero */
    .hero { padding: 60px 0 44px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-img { height: 360px; }
    .hero-float-1 { left: 0; bottom: 16px; padding: 11px 14px; }
    .hero-float-2 { right: 8px; top: 14px; }
    .hero-stats { gap: 20px; }

    /* Sections header */
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }

    /* Counter */
    .ctr-strip { padding: 60px 0; }
    .ctr-item .cn { font-size: 2.4rem; }
    .ctr-item + .ctr-item::before { height: 36px; }

    /* Industries */
    .ind-card { flex: 0 0 320px; height: 320px; }
    .ind-header { margin-bottom: 20px; }

    /* Country grid */
    .country-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    /* Contact */
    .ct-card { padding: 36px 28px; }

    /* FAQ */
    .faq-sec .col-lg-4 { margin-bottom: 32px; }

    /* Charts */
    .chart-wrap { height: 200px; }
  }

  /* ── SM Mobile landscape 576-767 ── */
  @media (max-width: 767px) {
    /* Sections */
    .why-sec, .usp-sec, .ind-sec, .charts-sec,
    .g-sec, .testi-sec, .talent-sec, .perf-sec,
    .faq-sec, .cities-sec, .cta-band, .contact-sec { padding: 56px 0; }

    /* Hero */
    .hero { padding: 48px 0 36px; }
    .hero h1 { font-size: 2rem; letter-spacing: -.035em; }
    .hero-p { font-size: .95rem; }
    .hero-img { height: 300px; margin-top: 24px; }
    .hero-float-1, .hero-float-2 { display: none; }
    .hero-orbit { display: none; }
    .hero-stats { gap: 14px; padding-top: 24px; margin-top: 24px; }
    .hs-num { font-size: 1.6rem; }
    .hs-lbl { font-size: .62rem; }

    /* Section headers */
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.65rem; letter-spacing: -.035em; }
    .section-header p { font-size: .9rem; }

    /* Counter strip */
    .ctr-strip { padding: 48px 0; }
    .ctr-item .cn { font-size: 2rem; }
    .ctr-item .cl { font-size: .62rem; }
    .ctr-item + .ctr-item::before { display: none; }

    /* Photo grids */
    .photo-grid, .photo-row {
      grid-template-columns: 1fr 1fr;
      height: auto; gap: 8px;
      margin: 32px 0;
    }
    
    .photo-grid .pg-item:first-child,
    .photo-row .pg-item:first-child { grid-column: 1 / -1; height: 170px; }
    .photo-grid .pg-item,
    .photo-row .pg-item { height: 130px; }

    /* Industry slider */
    .ind-card { flex: 0 0 80vw; height: 300px; }
    .ind-body h3 { font-size: 1.15rem; }
    .ind-btn { width: 38px; height: 38px; }

    /* Charts - stack 2 per row on sm */
    .chart-wrap { height: 190px; }

    /* Country grid */
    .country-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cc-banner { height: 72px; }
    .cc-num { font-size: 1.2rem; }

    /* Stat cards */
    .stat-card .sb { font-size: 2.2rem; }

    /* Perf cards */
    .perf-card { padding: 24px 20px; }

    /* USP */
    .usp-card { padding: 24px 20px; }

    /* Guarantee */
    .g-card { padding: 24px 20px; }

    /* Testimonials */
    .testi-card { padding: 24px; }

    /* Contact */
    .ct-card { padding: 28px 20px; }
    .ct-info h3 { font-size: 1.4rem; }

    /* CTA */
    .cta-band h2 { font-size: 1.75rem; }
    .cta-band p { font-size: .9rem; }

    /* Navbar */
    .navbar .container { height: 56px; }
    .navbar-brand { font-size: 1.25rem; }
    .btn-nav { padding: 8px 16px !important; font-size: .8rem; }

    /* FAQ */
    .accordion-button { font-size: .82rem; }
    .accordion-body { font-size: .82rem; }

    /* Footer */
    footer { padding: 52px 0 24px; }
    footer .brand { font-size: 1.35rem; }

    /* BTT */
    #btt { width: 38px; height: 38px; bottom: 18px; right: 18px; font-size: .9rem; }
  }

  /* ── XS Mobile portrait <576px ── */
  @media (max-width: 575px) {
    /* Core layout */
    .container { padding-left: 16px; padding-right: 16px; }

    /* Sections */
    .why-sec, .usp-sec, .ind-sec, .charts-sec,
    .g-sec, .testi-sec, .talent-sec, .perf-sec,
    .faq-sec, .cities-sec, .cta-band, .contact-sec { padding: 44px 0; }

    /* Hero */
    .hero { padding: 36px 0 28px; }
    .hero h1 { font-size: 1.75rem; letter-spacing: -.03em; line-height: 1.1; }
    .hero-p { font-size: .9rem; max-width: 100%; }
    .hero-eyebrow { font-size: .68rem; padding: 5px 11px; }
    .hero-stats { gap: 12px; flex-wrap: wrap; }
    .hero-stats > div { min-width: calc(50% - 6px); }
    .hero-img { height: 240px; }
    .hero-btns .btn-p, .hero-btns .btn-o { font-size: .84rem; padding: 11px 18px; }

    /* Section header */
    .section-header { margin-bottom: 26px; }
    .section-header h2 { font-size: 1.5rem; letter-spacing: -.03em; }
    .section-header p { font-size: .86rem; }
    .stag { font-size: .64rem; padding: 4px 10px; }

    /* Counter */
    .ctr-strip { padding: 40px 0; }
    .ctr-item .cn { font-size: 1.75rem; }

    /* Photo grid — single col on XS */
    .photo-grid, .photo-row {
      grid-template-columns: 1fr;
      margin: 24px 0;
    }
    .photo-grid .pg-item:first-child,
    .photo-row .pg-item:first-child { grid-column: auto; height: 160px; }
    .photo-grid .pg-item,
    .photo-row .pg-item { height: 150px; }

    /* Industry slider */
    .ind-card { flex: 0 0 90vw; height: 280px; }
    .ind-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ind-body { padding: 18px; }
    .ind-body h3 { font-size: 1.05rem; }
    .ind-body p { font-size: .78rem; }
    .ind-tag { font-size: .62rem; padding: 3px 9px; }

    /* Country grid */
    .country-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cc-banner { height: 64px; }
    .cc-body { padding: 12px 12px 14px; }
    .cc-name { font-size: 1.2rem; }
    .cc-num { font-size: 1.1rem; }
    .cc-numl { font-size: .58rem; }
    .cc-contract { font-size: .66rem; }
    .cc-tag { font-size: .58rem; padding: 2px 6px; }

    /* Stat cards */
    .stat-card { padding: 22px 18px; }
    .stat-card .sb { font-size: 1.9rem; }
    .stat-card p { font-size: .84rem; }

    /* Charts - full width on XS */
    .chart-wrap { height: 180px; }

    /* USP */
    .usp-card { padding: 20px 18px; }
    .usp-n { width: 34px; height: 34px; font-size: .82rem; }

    /* Guarantee */
    .g-ico { width: 50px; height: 50px; font-size: 1.3rem; }

    /* Testimonials */
    .testi-card { padding: 20px; }
    .tt { font-size: .84rem; }

    /* Performance */
    .perf-card { padding: 20px 18px; }
    .pl li { font-size: .8rem; }

    /* Skill bars */
    .sk-bar label { font-size: .74rem; }

    /* FAQ */
    .accordion-button { font-size: .8rem; padding: 12px 14px; }

    /* Contact */
    .ct-card { padding: 22px 16px; border-radius: var(--radius); }
    .ct-info h3 { font-size: 1.25rem; }
    .form-control, .form-select { font-size: .84rem; padding: 10px 12px; }
    .ct-ico { width: 38px; height: 38px; font-size: .9rem; }
    .ct-ico-label { font-size: .8rem; }

    /* CTA */
    .cta-band { padding: 52px 0; }
    .cta-band h2 { font-size: 1.5rem; letter-spacing: -.04em; }
    .cta-band p { font-size: .86rem; }
    .btn-white { font-size: .86rem; padding: 11px 22px; }

    /* City pills */
    .city-pill { font-size: .78rem; padding: 8px 14px; margin: 4px; }

    /* Footer */
    footer { padding: 44px 0 20px; }
    footer .brand { font-size: 1.25rem; }
    footer .ft-desc { font-size: .8rem; }
    .ft-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Navbar */
    .navbar .container { height: 52px; }
    .navbar-brand { font-size: 1.15rem; }
  }

  /* ── Touch devices — remove hover effects ── */
  @media (hover: none) {
    .usp-card:hover,
    .g-card:hover,
    .stat-card:hover,
    .impact-card:hover,
    .testi-card:hover,
    .perf-card:hover,
    .cc:hover { transform: none; box-shadow: none; }
    .ind-card:hover img { transform: none; }
    .pg-item:hover img { transform: none; }
  }

  /* ── Reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal, .rl, .rr { opacity: 1 !important; transform: none !important; }
    .section-header.in .sh-line { width: 60px !important; }
  }
  /* ─────────────────────────────────────
     TRUST BAR
  ───────────────────────────────────── */
  .trust-bar {
    background: var(--dark);
    border-bottom: 1px solid #1A1A1A;
    padding: 10px 0;
    overflow: hidden;
  }
  .trust-inner {
    display: flex; align-items: center;
    justify-content: center; gap: 0;
    flex-wrap: nowrap; overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item {
    display: flex; align-items: center; gap: 7px;
    color: #999; font-size: .72rem; font-family: var(--font);
    font-weight: 500; letter-spacing: .02em;
    white-space: nowrap; padding: 0 20px;
    transition: color .2s;
  }
  .trust-item i { color: var(--accent); font-size: .78rem; }
  .trust-item:hover { color: #fff; }
  .trust-sep { width: 1px; height: 14px; background: #2A2A2A; flex-shrink: 0; }
  @media (max-width: 767px) {
    .trust-bar { padding: 8px 0; }
    .trust-item { font-size: .68rem; padding: 0 14px; }
  }
  @media (max-width: 575px) {
    .trust-inner { justify-content: flex-start; }
    .trust-item { padding: 0 12px; }
  }

  /* ─────────────────────────────────────
     PROCESS / HOW IT WORKS
  ───────────────────────────────────── */
  .process-sec { padding: 96px 0; background: var(--bg-white); }
  .process-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    position: relative;
    margin-top: 16px;
  }
  .proc-step { position: relative; display: flex; flex-direction: column; align-items: center; }
  .proc-num {
    font-family: var(--font); font-size: 3.5rem; font-weight: 900;
    color: var(--border); line-height: 1;
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    z-index: 0; letter-spacing: -.06em; user-select: none;
    transition: color .3s;
  }
  .proc-step:hover .proc-num { color: rgba(119,235,84,.12); }
  .proc-connector {
    width: 100%; height: 1px; background: var(--border);
    position: absolute; top: 52px; left: 50%; z-index: 0;
    display: none; /* decorative only on desktop */
  }
  .proc-connector--last { display: none; }
  .proc-card {
    background: var(--bg-soft); border-radius: var(--radius);
    padding: 28px 24px; width: 100%; position: relative; z-index: 1;
    border: 1px solid var(--border); transition: all .3s;
    margin-top: 16px;
  }
  .proc-step:hover .proc-card { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(119,235,84,.2); background: var(--bg-white); }
  .proc-card--final { background: var(--dark); border-color: var(--accent); }
  .proc-icon {
    width: 44px; height: 44px; background: rgba(119,235,84,.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.2rem; margin-bottom: 14px;
    transition: all .3s;
  }
  .proc-step:hover .proc-icon { background: var(--accent); color: #fff; }
  .proc-icon--final { background: var(--accent); color: #fff; }
  .proc-card h5 { font-family: var(--font); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -.02em; }
  .proc-card--final h5 { color: #fff; }
  .proc-card p { color: var(--grey-3); font-size: .82rem; line-height: 1.65; margin-bottom: 14px; }
  .proc-card--final p { color: #888; }
  .proc-time {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(119,235,84,.08); color: var(--accent);
    border-radius: 4px; padding: 3px 10px;
    font-size: .68rem; font-weight: 700; font-family: var(--font);
    letter-spacing: .03em;
  }
  .proc-time--final { background: rgba(119,235,84,.2); color: #ff7a4d; }
  @media (max-width: 991px) {
    .process-track { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  }
  @media (max-width: 575px) {
    .process-track { grid-template-columns: 1fr; gap: 16px; }
    .proc-num { font-size: 2.8rem; }
    .proc-card { padding: 22px 18px; }
  }

  /* ─────────────────────────────────────
     BEFORE / AFTER COMPARISON
  ───────────────────────────────────── */
  .compare-sec { padding: 96px 0; background: var(--bg-soft); }
  .compare-card {
    border-radius: var(--radius-lg); padding: 36px 32px;
    height: 100%;
  }
  .compare-card--bad { background: #fff; border: 1px solid var(--border); }
  .compare-card--good { background: var(--dark); border: 2px solid var(--accent); box-shadow: 0 0 0 1px rgba(119,235,84,.2), var(--shadow-lg); }
  .compare-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
  .compare-icon {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .compare-icon--bad { background: #FEE2E2; color: #DC2626; }
  .compare-icon--good { background: rgba(119,235,84,.15); color: var(--accent); }
  .compare-header h4 { font-family: var(--font); font-weight: 800; font-size: 1.1rem; letter-spacing: -.04em; }
  .compare-card--good .compare-header h4 { color: #fff; }
  .compare-list { list-style: none; padding: 0; margin: 0; }
  .compare-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .875rem; line-height: 1.6; margin-bottom: 12px;
    color: var(--grey-3); padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .compare-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .compare-list li i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; color: #DC2626; }
  .compare-list--good li { color: #aaa; border-bottom-color: #1E1E1E; }
  .compare-list--good li i { color: #4ADE80; }
  @media (max-width: 767px) {
    .compare-card { padding: 26px 22px; }
    .compare-list li { font-size: .84rem; }
  }
  @media (max-width: 575px) {
    .compare-card { padding: 20px 16px; border-radius: var(--radius); }
  }

  /* ─────────────────────────────────────
     STICKY MOBILE CTA BAR
  ───────────────────────────────────── */
  .mobile-cta-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
    background: var(--bg-white); border-top: 1px solid var(--border);
    padding: 10px 16px 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  }
  .mobile-cta-bar { display: flex; gap: 8px; }
  .mcta-btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 6px; border-radius: 7px; padding: 11px 8px;
    font-family: var(--font); font-weight: 600; font-size: .78rem;
    text-decoration: none; transition: all .22s; letter-spacing: -.01em;
    cursor: pointer; border: none;
  }
  .mcta-call { background: var(--bg-soft); color: var(--dark); border: 1.5px solid var(--border); }
  .mcta-call:hover { background: var(--dark); color: #fff; }
  .mcta-enquire { background: var(--accent); color: #fff; }
  .mcta-enquire:hover { background: #4aad29; color: #fff; }
  .mcta-wa { background: #25D366; color: #fff; }
  .mcta-wa:hover { background: #1aad51; color: #fff; }
  /* Only show on mobile */
  @media (min-width: 768px) { .mobile-cta-bar { display: none !important; } }
  @media (max-width: 767px) {
    .mobile-cta-bar { display: flex; }
    /* Push footer content up so bar doesn't overlap */
    footer { padding-bottom: 80px; }
    #btt { bottom: 76px; }
  }
  @media (max-width: 575px) {
    .mcta-btn { font-size: .72rem; padding: 10px 6px; }
    .mcta-btn i { font-size: .85rem; }
  }

  /* ─────────────────────────────────────
     LIVE CHAT WIDGET
  ───────────────────────────────────── */
  .chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9000; }
  @media (max-width: 767px) { .chat-widget { bottom: 82px; right: 14px; } }

  /* Bubble */
  .chat-bubble {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); cursor: none;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(119,235,84,.45);
    transition: transform .25s, box-shadow .25s;
    position: relative;
  }
  .chat-bubble:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(119,235,84,.55); }
  .chat-avatar { color: #fff; font-size: 1.4rem; }
  .chat-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: #22C55E; border: 2px solid #fff;
    position: absolute; top: 2px; right: 2px;
  }

  /* Panel */
  .chat-panel {
    position: absolute; bottom: 68px; right: 0;
    width: 320px; border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: 0 12px 48px rgba(0,0,0,.18);
    overflow: hidden; display: none;
    animation: chatSlideUp .3s cubic-bezier(.22,1,.36,1) both;
  }
  .chat-panel.open { display: flex; flex-direction: column; }
  @keyframes chatSlideUp { from { opacity:0; transform:translateY(20px) scale(.96); } to { opacity:1; transform:none; } }

  .chat-panel-head {
    background: var(--accent); padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .chat-agent { display: flex; align-items: center; gap: 12px; }
  .chat-agent-av {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .95rem;
  }
  .chat-agent-name { color: #fff; font-family: var(--font); font-weight: 700; font-size: .88rem; }
  .chat-agent-status { color: rgba(255,255,255,.75); font-size: .7rem; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
  .chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; display: inline-block; }
  .chat-close { background: rgba(255,255,255,.18); border: none; border-radius: 6px; color: #fff; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: none; transition: background .2s; font-size: .9rem; flex-shrink: 0; }
  .chat-close:hover { background: rgba(255,255,255,.35); }

  .chat-messages {
    padding: 16px; flex: 1; min-height: 140px; max-height: 220px;
    overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
  }
  .chat-msg { max-width: 85%; }
  .chat-msg--bot .chat-msg-text {
    background: var(--bg-soft); border-radius: 4px 12px 12px 12px;
    padding: 10px 12px; font-size: .83rem; line-height: 1.55; color: var(--dark);
  }
  .chat-msg--user .chat-msg-text {
    background: var(--accent); color: #fff;
    border-radius: 12px 4px 12px 12px;
    padding: 10px 12px; font-size: .83rem; line-height: 1.55;
    margin-left: auto;
  }
  .chat-msg--user { align-self: flex-end; }
  .chat-msg-time { font-size: .64rem; color: var(--grey-4); margin-top: 4px; }
  .chat-msg--user .chat-msg-time { text-align: right; }

  .chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
  .chat-qr {
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    padding: 5px 12px; font-size: .72rem; font-weight: 600; color: var(--grey-2);
    cursor: none; transition: all .2s; font-family: var(--font);
  }
  .chat-qr:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

  .chat-input-row {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 14px; border-top: 1px solid var(--border);
    background: var(--bg-white);
  }
  .chat-input {
    flex: 1; border: 1.5px solid var(--border); border-radius: 20px;
    padding: 8px 14px; font-size: .82rem; font-family: var(--font);
    outline: none; transition: border-color .2s;
    color: var(--dark); background: var(--bg-white);
  }
  .chat-input:focus { border-color: var(--accent); }
  .chat-send {
    width: 34px; height: 34px; border-radius: 50%; background: var(--accent);
    border: none; color: #fff; display: flex; align-items: center;
    justify-content: center; font-size: .82rem; cursor: none;
    transition: all .22s; flex-shrink: 0;
  }
  .chat-send:hover { background: #4aad29; transform: scale(1.08); }

  @media (max-width: 575px) {
    .chat-panel { width: calc(100vw - 28px); right: -14px; }
    .chat-widget { right: 14px; }
  }