
  /* ============================================
     DESIGN TOKENS
  ============================================ */
  :root {
    --void:       #070810;
    --deep:       #0d0e1a;
    --panel:      #111222;
    --surface:    #161729;
    --card:       #1a1b2e;
    --border:     rgba(255,255,255,0.07);
    --border-lit: rgba(99,215,255,0.2);
    --white:      #f0f4ff;
    --muted:      #7a82a8;
    --dim:        #4a5078;

    --cyan:       #63d7ff;
    --cyan-glow:  rgba(99,215,255,0.15);
    --cyan-deep:  #38b2d8;
    --lime:       #a8ff3e;
    --lime-glow:  rgba(168,255,62,0.12);
    --violet:     #8b5cf6;
    --violet-glow:rgba(139,92,246,0.15);
    --pink:       #f472b6;

    --grad-brand: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    --grad-lime:  linear-gradient(135deg, var(--lime) 0%, var(--cyan) 100%);
    --py: 100px;
    --radius: 16px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--void);
    color: var(--white);
    overflow-x: hidden;
  }

  img  { display: block; max-width: 100%; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--void); }
  ::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

  /* ============================================
     UTILITIES
  ============================================ */
  .container { max-width: 95%; margin: 0 auto; padding: 0 5vw; }

  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
  }

  .kicker::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--cyan);
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .section-title .hl {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.78;
    max-width: 520px;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.28s ease;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--grad-brand);
    color: var(--void);
    box-shadow: 0 0 28px rgba(99,215,255,0.35);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(99,215,255,0.55);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border-lit);
  }

  .btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 16px rgba(99,215,255,0.15);
    transform: translateY(-3px);
  }

  .btn-lime {
    background: var(--lime);
    color: #0a0a0a;
    box-shadow: 0 0 24px rgba(168,255,62,0.3);
    font-weight: 800;
  }

  .btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(168,255,62,0.5);
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============================================
     NAVBAR
  ============================================ */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.38s ease;
  }

  #navbar.scrolled {
    background: rgba(7,8,16,0.95);
    padding: 14px 5vw;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .nav-logo span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  .nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.05em;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    transition: right 0.3s ease;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: transparent;
    border: 1.5px solid var(--border-lit);
    color: var(--cyan) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.25s !important;
  }

  .nav-cta:hover {
    background: var(--cyan-glow);
    box-shadow: 0 0 16px rgba(99,215,255,0.2) !important;
  }

  .nav-cta::after { display: none !important; }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px; height: 1.5px;
    background: var(--white);
    display: block;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mob-drawer {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: var(--panel);
    border-left: 1px solid var(--border);
    z-index: 999;
    flex-direction: column;
    padding: 90px 36px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  }

  .mob-drawer.open { transform: translateX(0); }

  .mob-drawer a {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--muted);
    transition: color 0.2s;
  }

  .mob-drawer a:hover { color: var(--cyan); }

  .mob-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
  }
  .mob-overlay.show { display: block; }

  /* ============================================
     HERO
  ============================================ */
  #hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* Animated gradient mesh background */
  .hero-bg {
    position: absolute; inset: 0;
    background: var(--void);
    overflow: hidden;
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 70%; height: 80%;
    background: radial-gradient(ellipse, rgba(99,215,255,0.08) 0%, transparent 65%);
    animation: blobFloat1 12s ease-in-out infinite alternate;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 60%; height: 70%;
    background: radial-gradient(ellipse, rgba(139,92,246,0.1) 0%, transparent 65%);
    animation: blobFloat2 10s ease-in-out infinite alternate;
  }

  .hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(99,215,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(99,215,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  }

  @keyframes blobFloat1 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(5%,8%) scale(1.1); }
  }

  @keyframes blobFloat2 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-4%,-6%) scale(1.08); }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 130px 5vw 100px;
    max-width: 780px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,215,255,0.08);
    border: 1px solid var(--border-lit);
    border-radius: 50px;
    padding: 7px 16px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
    animation: fadeUp 0.9s ease both;
  }

  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--lime);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
  }

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

  .hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 26px;
    animation: fadeUp 0.9s 0.1s ease both;
  }

  .hero-title .hl {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
    animation: fadeUp 0.9s 0.2s ease both;
  }

  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.3s ease both;
  }

  /* Floating metric cards */
  .hero-metrics {
    position: absolute;
    right: 5vw; 
    
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
    animation: fadeUp 0.9s 0.45s ease both;
  }

  .metric-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    min-width: 190px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .metric-card:hover { border-color: var(--border-lit); }

  .metric-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-brand);
  }

  .metric-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

  .metric-val .up { color: var(--lime); font-size: 1rem; }

  .metric-label { font-size: 0.78rem; color: var(--muted); }

  /* Scroll hint */
  .scroll-hint {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: 'Syne', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    z-index: 1;
  }

  .scroll-hint::after {
    content: '';
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    box-shadow: 0 0 6px var(--cyan);
    animation: scrollDrop 2s ease infinite;
  }

  @keyframes scrollDrop {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }

  /* ============================================
     CLIENTS / TRUST STRIP
  ============================================ */
  #clients {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--deep);
    overflow: hidden;
  }

  .clients-inner {
    text-align: center;
    margin-bottom: 36px;
  }

  .clients-inner p {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
  }

  .clients-track {
    display: flex;
    gap: 0;
    animation: scrollTrack 22s linear infinite;
    width: max-content;
  }

  .clients-track:hover { animation-play-state: paused; }

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

  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 44px;
    border-right: 1px solid var(--border);
  }

  .client-logo-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 28px;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dim);
    white-space: nowrap;
    letter-spacing: 0.08em;
    transition: color 0.3s, border-color 0.3s;
  }

  .client-logo-box:hover {
    color: var(--cyan);
    border-color: var(--border-lit);
  }

  /* ============================================
     SERVICES
  ============================================ */
  #services {
    padding: var(--py) 0;
    background: var(--void);
    position: relative;
  }

  #services::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .svc-card {
    background: var(--card);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: default;
  }

  .svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 0;
  }

  .svc-card:hover {
    border-color: var(--border-lit);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(99,215,255,0.08);
  }

  .svc-card:hover::before { opacity: 0.04; }

  .svc-card > * { position: relative; z-index: 1; }

  /* Number watermark */
  .svc-num {
    position: absolute;
    top: 14px; right: 22px;
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
  }

  .svc-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s;
  }

  .svc-card:hover .svc-icon { transform: scale(1.15) rotate(-5deg); }

  .svc-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .svc-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.72;
  }

  .svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan);
    margin-top: 18px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

  /* ============================================
     WHY CHOOSE US
  ============================================ */
  #why {
    padding: var(--py) 0;
    background: var(--deep);
  }

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

  .why-visual {
    position: relative;
    height: 460px;
  }

  /* Animated glowing orb chart */
  .why-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
  }

  .orb-1 {
    width: 320px; height: 320px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(99,215,255,0.12);
    animation: orbSpin 20s linear infinite;
  }

  .orb-2 {
    width: 220px; height: 220px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(139,92,246,0.18);
    animation: orbSpin 14s linear infinite reverse;
  }

  .orb-3 {
    width: 120px; height: 120px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(99,215,255,0.12), transparent);
    border-color: rgba(99,215,255,0.3);
    animation: orbPulse 4s ease infinite;
  }

  .orb-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1;
    z-index: 1;
  }

  .orb-center small {
    display: block;
    font-size: 0.65rem;
    -webkit-text-fill-color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* Orbiting dots */
  .orbit-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    transform-origin: 160px 0;
  }

  .orbit-dot-2 {
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
    transform-origin: 110px 0;
    animation-duration: 14s !important;
  }

  .orbit-dot-3 {
    background: var(--violet);
    box-shadow: 0 0 12px var(--violet);
    transform-origin: 60px 0;
    animation-duration: 8s !important;
  }

  @keyframes orbSpin  { to { transform: translate(-50%, -50%) rotate(360deg); } }
  @keyframes orbPulse { 0%, 100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.08); } }

  .why-list { display: flex; flex-direction: column; gap: 18px; }

  .why-item {
    display: flex;
    gap: 20px;
    padding: 22px 26px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    align-items: flex-start;
    transition: all 0.3s;
  }

  .why-item:hover {
    border-color: var(--border-lit);
    background: var(--surface);
    transform: translateX(6px);
  }

  .why-item-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
  }

  .why-item h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
  }

  .why-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

  /* ============================================
     CASE STUDIES
  ============================================ */
  #cases {
    padding: var(--py) 0;
    background: var(--void);
  }

  .cases-header { margin-bottom: 56px; }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .case-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.35s;
    position: relative;
  }

  .case-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .case-card:hover { border-color: var(--border-lit); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(99,215,255,0.07); }
  .case-card:hover::after { transform: scaleX(1); }

  .case-img {
    width: 100%; height: 200px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.7);
    transition: filter 0.5s;
    display: block;
  }

  .case-card:hover .case-img { filter: grayscale(0%) brightness(0.85); }

  .case-body { padding: 28px; }

  .case-tag {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    display: block;
    margin-bottom: 8px;
  }

  .case-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .case-metrics {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }

  .case-metric strong {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lime);
    display: block;
    line-height: 1;
  }

  .case-metric span { font-size: 0.72rem; color: var(--muted); }

  /* ============================================
     PROCESS
  ============================================ */
  #process {
    padding: var(--py) 0;
    background: var(--panel);
    position: relative;
    overflow: hidden;
  }

  .process-header { text-align: center; margin-bottom: 72px; }
  .process-header .section-sub { margin: 14px auto 0; }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
  }

  /* Connecting line */
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(to right, var(--cyan), var(--violet));
    opacity: 0.3;
  }

  .step-card {
    padding: 36px 28px;
    text-align: center;
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s;
  }

  .step-card:hover { border-color: var(--border-lit); background: var(--surface); }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--border-lit);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    background-color: var(--surface);
    box-shadow: 0 0 20px rgba(99,215,255,0.1);
  }

  .step-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }

  .step-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }

  .step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.68; }

  /* ============================================
     TESTIMONIALS
  ============================================ */
  #testimonials {
    padding: var(--py) 0;
    background: var(--void);
  }

  .testi-header { text-align: center; margin-bottom: 56px; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 38px 32px;
    position: relative;
    transition: all 0.3s;
  }

  .testi-card:hover { border-color: var(--border-lit); transform: translateY(-4px); }

  .testi-stars {
    color: var(--lime);
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
  }

  .testi-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 28px;
    font-style: italic;
  }

  .testi-quote {
    position: absolute;
    top: 20px; right: 26px;
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    color: rgba(99,215,255,0.06);
    line-height: 1;
    pointer-events: none;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }

  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-lit);
    filter: grayscale(20%);
  }

  .testi-author strong {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    display: block;
  }

  .testi-author span { font-size: 0.75rem; color: var(--dim); }

  /* ============================================
     PRICING
  ============================================ */
  #pricing {
    padding: var(--py) 0;
    background: var(--deep);
    position: relative;
    overflow: hidden;
  }

  #pricing::before {
    content: '';
    position: absolute;
    top: 0; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168,255,62,0.04) 0%, transparent 65%);
    pointer-events: none;
  }

  .pricing-header { text-align: center; margin-bottom: 56px; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    align-items: start;
  }

  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 38px 30px;
    position: relative;
    transition: all 0.35s;
  }

  .price-card.featured {
    background: var(--surface);
    border-color: var(--border-lit);
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(99,215,255,0.08);
  }

  .price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--grad-brand);
    color: var(--void);
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
  }

  .price-card:not(.featured):hover { border-color: var(--border-lit); transform: translateY(-4px); }

  .price-tier {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    display: block;
  }

  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
  }

  .price-amount sup { font-size: 1.2rem; vertical-align: super; }
  .price-amount sub { font-size: 0.9rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }

  .price-desc { font-size: 0.84rem; color: var(--muted); margin-bottom: 28px; line-height: 1.55; }

  .price-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
  }

  .price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }

  .price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--muted);
  }

  .price-feature::before {
    content: '✓';
    color: var(--lime);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .price-feature.off { color: var(--dim); }
  .price-feature.off::before { content: '×'; color: var(--dim); }

  /* ============================================
     CONTACT
  ============================================ */
  #contact {
    padding: var(--py) 0;
    background: var(--void);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(99,215,255,0.05), transparent 70%);
    pointer-events: none;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .contact-info > p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .contact-detail-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact-detail p { font-size: 0.88rem; color: var(--muted); }

  .contact-social {
    display: flex;
    gap: 10px;
    margin-top: 30px;
  }

  .social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s;
  }

  .social-btn:hover {
    border-color: var(--border-lit);
    color: var(--cyan);
    background: var(--cyan-glow);
    box-shadow: 0 0 14px rgba(99,215,255,0.15);
  }

  /* Contact form */
  .lead-form { display: flex; flex-direction: column; gap: 16px; }

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

  .fg label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 8px;
  }

  .fg input,
  .fg select,
  .fg textarea {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    resize: none;
  }

  .fg select { cursor: pointer; appearance: none; }

  .fg input:focus,
  .fg select:focus,
  .fg textarea:focus {
    border-color: var(--border-lit);
    box-shadow: 0 0 0 3px rgba(99,215,255,0.08);
  }

  .fg input::placeholder,
  .fg textarea::placeholder { color: var(--dim); }

  /* ============================================
     FOOTER
  ============================================ */
  footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 60px 5vw 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 260px;
    margin-top: 14px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-col ul li { margin-bottom: 11px; }

  .footer-col ul li a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-col ul li a::before {
    content: '→';
    font-size: 0.75rem;
    color: var(--cyan);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s;
  }

  .footer-col ul li a:hover { color: var(--white); }
  .footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }

  .footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p { font-size: 0.78rem; color: var(--dim); }

  .footer-bottom a { color: var(--dim); transition: color 0.2s; font-size: 0.78rem; }
  .footer-bottom a:hover { color: var(--cyan); }

  /* ============================================
     RESPONSIVE
  ============================================ */
  @media (max-width: 1100px) {
    .hero-metrics { display: none; }
    .cases-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { height: 320px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .price-card.featured { transform: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 52px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
  }

  @media (max-width: 640px) {
    :root { --py: 72px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mob-drawer { display: flex; }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .cases-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .form-row-2 { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; }
  }
  
  
  
   
  
  
  
  
   /* Popup Background */
      .popup-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.6);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 9999;
      }

      /* Popup Box */
      .popup-box {
          background: #121E44;
          padding: 25px;
          border-radius: 12px;
          width: 350px;
          color: #fff;
          position: relative;
          animation: fadeIn 0.5s ease-in-out;
      }

      /* Close Button */
      .close-btn {
          position: absolute;
          top: 10px;
          right: 15px;
          cursor: pointer;
          font-size: 20px;
      }

      /* Form Fields */
      .popup-box input,
      .popup-box select {
          width: 100%;
          padding: 10px;
          margin: 8px 0;
          border: none;
          border-radius: 6px;
      }

      /* Button */
      .popup-box button {
          width: 100%;
          padding: 12px;
          background: #E4BF50;
          color: #121E44;
          border: none;
          border-radius: 6px;
          font-weight: bold;
          cursor: pointer;
          margin-top: 10px;
      }

      .popup-box button:hover {
          opacity: 0.9;
      }
      
      
      
      .popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998; /* form popup se thoda kam ya zyada adjust kar sakte ho */
}

.popup1-content {
  position: relative;
  max-width: 400px;
}

.popup1-content img {
  width: 100%;
  border-radius: 10px;
}

.close-banner {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
}