/* ============================================================
       CSS CUSTOM PROPERTIES — THEMED TO LOGO (image_1ae631.png)
       ============================================================ */
    :root {
      --bg:          #050814; /* Deep corporate midnight navy */
      --bg-card:     #0c1020;
      --bg-elevated: #131931;
      --border:      rgba(255,255,255,0.06);
      --border-hover:rgba(0,102,255,0.25);
      --text-h:      #ffffff;
      --text-b:      #949cb3;
      --text-muted:  #4f5875;
      --accent:      #0066ff; /* Vibrant electric blue from the logo arrow */
      --accent-rgb:  0,102,255;
      --accent-dark: #004fc5;
      --accent-glow: rgba(0,102,255,0.2);
      --green:       #25D366;
      --font-display:'Plus Jakarta Sans', sans-serif;
      --font-sans:   'Inter', sans-serif;
      --r-sm:        8px;
      --r-md:        16px;
      --r-lg:        24px;
      --r-pill:      9999px;
    }

    body.light-mode {
      --bg:          #f4f6fa;
      --bg-card:     #ffffff;
      --bg-elevated: #e9ecf3;
      --border:      rgba(5,8,20,0.08);
      --border-hover:rgba(0,102,255,0.2);
      --text-h:      #050814;
      --text-b:      #434a5e;
      --text-muted:  #858fbb;
      --accent:      #0052cc;
      --accent-rgb:  0,82,204;
      --accent-dark: #003fa6;
      --accent-glow: rgba(0,82,204,0.1);
    }

    /* ============================================================
       RESET & BASE
       ============================================================ */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

    body {
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--text-b);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 0.4s ease, color 0.4s ease;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    h1,h2,h3,h4,h5 {
      font-family: var(--font-display);
      color: var(--text-h);
      line-height: 1.15;
    }

    a { text-decoration: none; color: inherit; }

    /* ============================================================
       SCROLL PROGRESS
       ============================================================ */
    .scroll-bar {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      z-index: 9999;
      width: 0;
      transition: width 0.1s ease;
    }

    /* ============================================================
       NAVIGATION
       ============================================================ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(5,8,20,0.75);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: background 0.4s ease, border-color 0.4s ease;
    }

    body.light-mode header {
      background: rgba(244,246,250,0.8);
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 900;
      color: var(--text-h);
      letter-spacing: -0.04em;
    }
    .logo em { font-style: normal; color: var(--accent); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-link {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-b);
      transition: color 0.2s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1.5px;
      background: var(--accent);
      transition: width 0.25s ease;
    }
    .nav-link:hover { color: var(--accent); }
    .nav-link:hover::after { width: 100%; }

    .nav-actions { display: flex; align-items: center; gap: 14px; }

    .theme-btn {
      width: 38px; height: 38px;
      border-radius: var(--r-pill);
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-b);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      font-size: 15px;
    }
    .theme-btn:hover { border-color: var(--accent); color: var(--accent); }

    .cta-nav {
      padding: 9px 22px;
      background: var(--accent);
      color: #ffffff;
      border: none;
      border-radius: var(--r-pill);
      font-family: var(--font-sans);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.01em;
    }
    .cta-nav:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 20px var(--accent-glow);
    }

    /* Mobile toggle */
    .hamburger {
      display: none;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 6px 10px;
      cursor: pointer;
      color: var(--text-h);
      font-size: 18px;
    }

    /* ============================================================
       HERO SECTION
       ============================================================ */
    .hero {
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }

    /* Animated grid background */
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.4;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    }

    /* Glowing orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(var(--accent-rgb),0.12) 0%, transparent 70%);
      top: -100px; left: -150px;
      animation: floatOrb1 20s ease-in-out infinite;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(var(--accent-rgb),0.08) 0%, transparent 70%);
      bottom: 0; right: -100px;
      animation: floatOrb2 25s ease-in-out infinite;
    }

    @keyframes floatOrb1 {
      0%,100% { transform: translate(0,0); }
      50% { transform: translate(60px, 80px); }
    }
    @keyframes floatOrb2 {
      0%,100% { transform: translate(0,0); }
      50% { transform: translate(-50px,-60px); }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(var(--accent-rgb), 0.1);
      border: 1px solid rgba(var(--accent-rgb), 0.25);
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 6px 16px;
      border-radius: var(--r-pill);
      margin-bottom: 28px;
      animation: fadeSlideDown 0.8s ease forwards;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0%,100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      line-height: 1.08;
      animation: fadeSlideDown 0.9s 0.1s ease both;
    }

    .hero h1 .accent-word {
      color: var(--accent);
    }

    .hero-sub {
      font-size: 17px;
      color: var(--text-b);
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.7;
      animation: fadeSlideDown 0.9s 0.2s ease both;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 64px;
      animation: fadeSlideDown 0.9s 0.3s ease both;
    }

    .btn-primary-hero {
      padding: 15px 32px;
      background: var(--accent);
      color: #ffffff;
      border: none;
      border-radius: var(--r-pill);
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
    }

    .btn-ghost-hero {
      padding: 14px 32px;
      background: transparent;
      color: var(--text-h);
      border: 1px solid var(--border-hover);
      border-radius: var(--r-pill);
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-ghost-hero:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* Hero Stats Row */
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      animation: fadeSlideDown 0.9s 0.45s ease both;
    }

    .hstat {
      text-align: center;
    }
    .hstat-num {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--text-h);
      letter-spacing: -0.02em;
    }
    .hstat-lbl {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .hstat-divider {
      width: 1px;
      background: var(--border);
      align-self: stretch;
    }

    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================================================
       MARQUEE CLIENTS BAND
       ============================================================ */
    .clients-band {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 0;
      overflow: hidden;
      background: var(--bg-card);
    }

    .clients-label {
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .marquee-track {
      display: flex;
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    }

    .marquee-inner {
      display: flex;
      gap: 56px;
      animation: scrollLeft 28s linear infinite;
      white-space: nowrap;
    }

    .marquee-inner span {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      opacity: 0.5;
      transition: opacity 0.3s, color 0.3s;
      cursor: default;
    }
    .marquee-inner span:hover { opacity: 1; color: var(--accent); }

    @keyframes scrollLeft {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ============================================================
       SECTION SCAFFOLDING
       ============================================================ */
    section { padding: 100px 0; }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      background: rgba(var(--accent-rgb), 0.08);
      border: 1px solid rgba(var(--accent-rgb), 0.2);
      padding: 5px 14px;
      border-radius: var(--r-pill);
      margin-bottom: 16px;
    }

    .section-h { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
    .section-p { font-size: 15px; color: var(--text-b); max-width: 540px; line-height: 1.7; }

    /* ============================================================
       SERVICES — WHAT WE DO
       ============================================================ */
    #services {
      background: var(--bg);
    }

    .services-layout {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-top: 60px;
    }

    .service-cell {
      background: var(--bg-card);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: default;
    }

    .service-cell:hover {
      background: var(--bg-elevated);
    }

    .service-cell::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-cell:hover::before { transform: scaleX(1); }

    .service-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 24px;
    }

    .service-icon {
      width: 44px; height: 44px;
      border-radius: var(--r-sm);
      background: rgba(var(--accent-rgb), 0.1);
      border: 1px solid rgba(var(--accent-rgb), 0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .service-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .service-cell h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-h);
    }

    .service-cell p {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--text-b);
      margin-bottom: 24px;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .stag {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: var(--r-pill);
      border: 1px solid var(--border);
      color: var(--text-muted);
      background: transparent;
      transition: all 0.2s;
    }
    .service-cell:hover .stag { border-color: rgba(var(--accent-rgb), 0.3); color: var(--accent); }

    /* ============================================================
       IMPACT & EXPERTISE
       ============================================================ */
    #impact {
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .impact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .impact-left .big-stat {
      font-family: var(--font-display);
      font-size: clamp(56px, 8vw, 96px);
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--text-h);
      line-height: 1;
      margin-bottom: 12px;
    }
    .impact-left .big-stat em {
      font-style: normal;
      color: var(--accent);
    }

    .impact-left .big-stat-lbl {
      font-size: 15px;
      color: var(--text-b);
      max-width: 340px;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .impact-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .istat-box {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 20px;
      transition: border-color 0.2s;
    }
    .istat-box:hover { border-color: var(--accent); }

    .istat-box .num {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.02em;
    }
    .istat-box .lbl {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* Progress Bars (right side) */
    .progress-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .prog-item-label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .prog-item-label span:first-child {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-h);
    }
    .prog-item-label span:last-child {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
    }

    .prog-track {
      height: 5px;
      background: var(--border);
      border-radius: var(--r-pill);
      overflow: hidden;
    }
    .prog-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      border-radius: var(--r-pill);
      width: 0;
      transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ============================================================
       CAPABILITIES / TECH STACK TABS
       ============================================================ */
    #capabilities {
      background: var(--bg);
    }

    .caps-module {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-top: 60px;
    }

    .caps-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
      overflow-x: auto;
    }

    .cap-tab {
      background: transparent;
      border: none;
      border-bottom: 2px solid transparent;
      padding: 16px 28px;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .cap-tab:hover { color: var(--text-h); }
    .cap-tab.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .cap-panel {
      display: none;
      padding: 48px;
      gap: 56px;
      align-items: start;
    }
    .cap-panel.active {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
    }

    .cap-panel h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .cap-panel > div > p {
      font-size: 14.5px;
      line-height: 1.7;
      margin-bottom: 28px;
      color: var(--text-b);
    }

    .cap-tools-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .cap-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .cap-tag {
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: var(--r-sm);
      border: 1px solid var(--border);
      color: var(--text-b);
      background: var(--bg-elevated);
      transition: all 0.2s;
    }
    .cap-tag:hover { border-color: var(--accent); color: var(--accent); }

    .cap-right-panel {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .cap-meta-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .cap-meta-icon {
      color: var(--accent);
      font-size: 14px;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .cap-meta-item h5 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--text-h);
    }
    .cap-meta-item p {
      font-size: 13px;
      color: var(--text-b);
      line-height: 1.55;
    }

    /* ============================================================
       CASE STUDIES
       ============================================================ */
    #results { background: var(--bg-card); border-top: 1px solid var(--border); }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .case-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
    }
    .case-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .case-accent-bar {
      height: 3px;
      background: var(--accent);
    }
    .case-card:nth-child(2) .case-accent-bar { background: #4ade80; }
    .case-card:nth-child(3) .case-accent-bar { background: #60a5fa; }

    .case-body { padding: 28px; }

    .case-meta-row {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .case-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-h);
    }

    .case-card p {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--text-b);
      margin-bottom: 22px;
    }

    .case-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(74, 222, 128, 0.08);
      border: 1px solid rgba(74, 222, 128, 0.2);
      color: #4ade80;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: var(--r-sm);
    }

    .case-badge.blue {
      background: rgba(96, 165, 250, 0.08);
      border-color: rgba(96, 165, 250, 0.2);
      color: #60a5fa;
    }

    /* ============================================================
       PROCESS STEPS
       ============================================================ */
    #blueprint { background: var(--bg); }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--border);
      gap: 1px;
      margin-top: 60px;
    }

    .proc-step {
      background: var(--bg-card);
      padding: 40px 32px;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .proc-step:hover { background: var(--bg-elevated); }

    .proc-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 16px;
      letter-spacing: -0.04em;
    }
    .proc-step:nth-child(1) .proc-num { color: #4ade80; }
    .proc-step:nth-child(2) .proc-num { color: #a78bfa; }
    .proc-step:nth-child(3) .proc-num { color: #60a5fa; }
    .proc-step:nth-child(4) .proc-num { color: var(--accent); }

    .proc-step h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-h);
    }
    .proc-step p {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--text-b);
    }

    /* ============================================================
       STATS BAR
       ============================================================ */
    .stats-bar {
      background: var(--bg-elevated);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 40px 0;
    }

    .stats-bar-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .sbar-item {
      text-align: center;
    }
    .sbar-num {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 900;
      color: var(--text-h);
      letter-spacing: -0.03em;
    }
    .sbar-lbl {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* ============================================================
       FINAL CTA BANNER
       ============================================================ */
    .cta-section {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section h2 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      position: relative;
    }
    .cta-section p {
      font-size: 16px;
      color: var(--text-b);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.7;
      position: relative;
    }
    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      padding: 80px 0 40px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .footer-brand p {
      font-size: 13.5px;
      color: var(--text-b);
      max-width: 280px;
      line-height: 1.7;
      margin: 14px 0 24px;
    }

    .social-row {
      display: flex;
      gap: 10px;
    }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      cursor: pointer;
      text-decoration: none;
    }
    .social-btn:hover { border-color: var(--accent); color: var(--accent); }
    .social-btn svg { width: 16px; height: 16px; fill: currentColor; }

    .newsletter-box h5 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-h);
      margin-bottom: 8px;
    }
    .newsletter-box p {
      font-size: 13px;
      color: var(--text-b);
      margin-bottom: 16px;
      max-width: 280px;
      line-height: 1.6;
    }
    .nl-form {
      display: flex;
      gap: 8px;
    }
    .nl-form input {
      flex: 1;
      padding: 10px 16px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      color: var(--text-h);
      font-family: var(--font-sans);
      font-size: 13px;
      outline: none;
      transition: border-color 0.2s;
    }
    .nl-form input:focus { border-color: var(--accent); }
    .nl-form input::placeholder { color: var(--text-muted); }
    .nl-form button {
      padding: 10px 18px;
      background: var(--accent);
      color: #ffffff;
      border: none;
      border-radius: var(--r-sm);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .nl-form button:hover { opacity: 0.85; }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }

    .fcol h5 {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-h);
      margin-bottom: 20px;
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .flinks a {
      font-size: 13.5px;
      color: var(--text-b);
      transition: color 0.2s;
    }
    .flinks a:hover { color: var(--accent); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12.5px;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--accent); }
    .footer-bottom-links { display: flex; gap: 24px; }

    /* ============================================================
       FLOATING WIDGETS
       ============================================================ */
    .wa-btn {
      position: fixed;
      bottom: 24px; left: 24px;
      width: 52px; height: 52px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      z-index: 500;
    }
    .wa-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    }
    .wa-btn svg { width: 28px; height: 28px; fill: currentColor; }

    .chat-fab {
      position: fixed;
      bottom: 24px; right: 24px;
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--accent);
      color: #ffffff;
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(var(--accent-rgb), 0.35);
      transition: transform 0.2s;
      z-index: 500;
    }
    .chat-fab:hover { transform: scale(1.08); }
    .chat-fab svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* Chat Box */
    .chat-box {
      position: fixed;
      bottom: 88px; right: 24px;
      width: 340px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      z-index: 499;
      display: none;
      flex-direction: column;
      overflow: hidden;
      animation: slideUp 0.3s ease;
    }
    .chat-box.open { display: flex; }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .chat-head {
      background: var(--bg-elevated);
      border-bottom: 1px solid var(--border);
      padding: 14px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .chat-head-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-h);
    }
    .chat-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulseDot 2s infinite;
    }
    .chat-close {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
    }
    .chat-msgs {
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      height: 260px;
      overflow-y: auto;
    }
    .cmsg {
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.5;
      max-width: 85%;
    }
    .cmsg.agent {
      background: var(--bg-elevated);
      color: var(--text-h);
      align-self: flex-start;
      border-bottom-left-radius: 2px;
    }
    .cmsg.user {
      background: var(--accent);
      color: #ffffff;
      align-self: flex-end;
      border-bottom-right-radius: 2px;
    }
    .chat-opts {
      padding: 0 18px 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }
    .chat-opt {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      padding: 6px 12px;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-b);
      cursor: pointer;
      transition: all 0.2s;
    }
    .chat-opt:hover { border-color: var(--accent); color: var(--accent); }

    /* ============================================================
       AUDIT DRAWER
       ============================================================ */
    .drawer-mask {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      z-index: 900;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .drawer-mask.open { opacity: 1; pointer-events: auto; }

    .audit-drawer {
      position: fixed;
      top: 0; right: -500px;
      width: 460px; height: 100%;
      background: var(--bg-card);
      border-left: 1px solid var(--border);
      z-index: 901;
      transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
      display: flex;
      flex-direction: column;
    }
    .audit-drawer.open { right: 0; }

    .drawer-head {
      padding: 28px 32px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-head h3 { font-size: 20px; font-weight: 700; color: var(--text-h); }
    .drawer-x {
      background: transparent; border: none;
      font-size: 22px; color: var(--text-muted);
      cursor: pointer; transition: color 0.2s;
    }
    .drawer-x:hover { color: var(--accent); }

    .drawer-body {
      flex: 1; overflow-y: auto;
      padding: 32px;
    }
    .drawer-body > p {
      font-size: 14px; line-height: 1.7;
      color: var(--text-b); margin-bottom: 28px;
    }

    .audit-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .form-grp {
      display: flex; flex-direction: column; gap: 6px;
    }
    .form-grp label {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--text-muted);
    }
    .form-grp input, .form-grp select {
      padding: 12px 16px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      color: var(--text-h);
      font-family: var(--font-sans);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-grp input::placeholder { color: var(--text-muted); }
    .form-grp input:focus, .form-grp select:focus { border-color: var(--accent); }
    .form-grp select { appearance: none; cursor: pointer; }
    .form-grp select option { background: var(--bg-card); }

    .submit-btn {
      padding: 14px;
      background: var(--accent);
      color: #ffffff;
      border: none;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.2s;
      margin-top: 8px;
      width: 100%;
    }
    .submit-btn:hover { opacity: 0.88; }

    /* Success State */
    .success-state {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 48px 0;
      animation: fadeSlideDown 0.4s ease;
    }
    .success-state.show { display: flex; }

    .success-ring {
      width: 68px; height: 68px;
      border-radius: 50%;
      background: rgba(0,102,255,0.1);
      border: 2px solid rgba(0,102,255,0.3);
      color: #0066ff;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      margin-bottom: 20px;
    }
    .success-state h4 { font-size: 22px; font-weight: 700; color: var(--text-h); margin-bottom: 12px; }
    .success-state p { font-size: 14px; color: var(--text-b); line-height: 1.7; margin-bottom: 24px; }
    .success-items {
      list-style: none;
      text-align: left;
      background: var(--bg-elevated);
      border-radius: var(--r-md);
      padding: 18px;
      display: flex; flex-direction: column; gap: 10px;
      margin-bottom: 24px;
      width: 100%;
    }
    .success-items li {
      font-size: 13px; font-weight: 500; color: var(--text-b);
      display: flex; gap: 10px; align-items: center;
    }
    .success-items li::before { content: '✓'; color: #0066ff; font-weight: 700; }

    /* ============================================================
       SCROLL REVEAL
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 1024px) {
      .services-layout { grid-template-columns: 1fr 1fr; }
      .impact-layout { grid-template-columns: 1fr; gap: 50px; }
      .cap-panel.active { grid-template-columns: 1fr; }
      .case-grid { grid-template-columns: 1fr 1fr; }
      .process-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      section { padding: 72px 0; }
      .nav-links { display: none; }
      .hamburger { display: block; }
      .services-layout { grid-template-columns: 1fr; }
      .case-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
      .footer-top { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .audit-drawer { width: 100%; right: -100%; }
      .chat-box { width: calc(100vw - 48px); right: 24px; }
      .stats-bar-inner { gap: 32px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 34px; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-stats { gap: 24px; }
      .hstat-divider { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-btns { flex-direction: column; align-items: center; }
    }