    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --navy:        #1B3A6B;
      --navy-dark:   #0f2347;
      --orange:      #00D9FF;
      --orange-lt:   #00E5FF;
      --white:       #ffffff;
      --light:       #F5F8FF;
      --light2:      #EFF3FA;
      --text:        #1a1a2e;
      --muted:       #6b7280;
      --border:      #e5e7eb;
      --radius:      12px;
      --shadow:      0 4px 24px rgba(27,58,107,.12);
      --shadow-lg:   0 12px 48px rgba(27,58,107,.18);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 90px 0; }
    .section-label {
      display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
      color: var(--navy); line-height: 1.2; margin-bottom: 16px;
    }
    .section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 640px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .95rem;
      cursor: pointer; transition: all .25s; border: 2px solid transparent;
    }
    .btn-primary { background: var(--orange); color: #fff; }
    .btn-primary:hover { background: #d97d08; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,102,255,.35); }
    .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
    .btn-white { background: #fff; color: var(--navy); }
    .btn-white:hover { background: var(--light); transform: translateY(-2px); }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border); transition: all .3s;
    }
    #navbar.scrolled { box-shadow: 0 2px 20px rgba(27,58,107,.12); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .2s; }
    .nav-links a:hover { color: var(--navy); }
    .nav-links a.active { color: var(--orange); font-weight: 700; }
    .nav-cta { padding: 10px 24px !important; font-size: .85rem !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
    .mobile-menu {
      display: none; position: fixed; top: 72px; left: 0; right: 0;
      background: #fff; border-bottom: 1px solid var(--border);
      padding: 20px 24px; z-index: 999;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a { display: block; padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--navy); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh; padding-top: 72px;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1f4d8e 100%);
      display: flex; align-items: center; position: relative; overflow: hidden;
    }
    #hero::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-glow {
      position: absolute; width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,102,255,.2) 0%, transparent 70%);
      top: -100px; right: -100px; pointer-events: none;
    }
    .hero-glow2 {
      position: absolute; width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,102,255,.12) 0%, transparent 70%);
      bottom: 50px; left: 100px; pointer-events: none;
    }
    .hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,102,255,.2); border: 1px solid rgba(0,102,255,.4);
      color: var(--orange-lt); padding: 8px 16px; border-radius: 50px;
      font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 24px;
    }
    .hero-badge span { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
    .hero-title {
      font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: #fff;
      line-height: 1.1; margin-bottom: 8px;
    }
    .hero-title .highlight { color: var(--orange); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,.7);
      margin-bottom: 32px; max-width: 600px; font-weight: 300; font-style: italic;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
    .hero-stats {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
      max-width: 760px;
    }
    .hero-stat {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius); padding: 20px 16px; text-align: center;
      backdrop-filter: blur(8px); transition: transform .3s;
    }
    .hero-stat:hover { transform: translateY(-4px); background: rgba(255,255,255,.13); }
    .hero-stat-value { font-size: 1.8rem; font-weight: 900; color: var(--orange); }
    .hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

    /* ===== ABOUT ===== */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .about-visual {
      position: relative; border-radius: 20px; overflow: hidden;
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      padding: 48px 40px; color: #fff;
    }
    .about-visual-bg {
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: .5;
    }
    .about-visual-content { position: relative; z-index: 1; }
    .about-visual h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
    .about-visual p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }
    .about-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,102,255,.2); border: 1px solid rgba(0,102,255,.3);
      color: var(--orange-lt); padding: 6px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600; margin: 4px 4px 4px 0;
    }
    .about-text h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
    .about-text p { color: var(--muted); margin-bottom: 16px; font-size: .98rem; line-height: 1.8; }
    .about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
    .about-value {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px 18px; background: var(--light); border-radius: 10px;
      border-left: 3px solid var(--orange);
    }
    .about-value .icon { font-size: 1.2rem; margin-top: 1px; }
    .about-value strong { display: block; color: var(--navy); font-size: .9rem; margin-bottom: 2px; }
    .about-value span { color: var(--muted); font-size: .82rem; }

    /* ===== WHY US ===== */
    #why { background: var(--light); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    .why-card {
      background: var(--white); border-radius: 16px; padding: 36px 28px;
      box-shadow: var(--shadow); transition: all .3s; border: 1px solid var(--border);
      text-align: center; position: relative; overflow: hidden;
    }
    .why-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--orange-lt));
      transform: scaleX(0); transform-origin: left; transition: transform .3s;
    }
    .why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--orange), var(--orange-lt));
      display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    }
    .why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
    .why-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }

    /* ===== SERVICES ===== */
    #services { background: var(--white); }
    .services-header { text-align: center; margin-bottom: 48px; }
    .services-header .section-subtitle { margin: 0 auto; }
    .services-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
    .svc-tab {
      padding: 10px 22px; border-radius: 50px; font-size: .85rem; font-weight: 600;
      cursor: pointer; transition: all .25s; border: 2px solid var(--border); background: var(--white);
      color: var(--muted);
    }
    .svc-tab.active, .svc-tab:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
    .svc-panel { display: none; }
    .svc-panel.active { display: block; }
    .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
    .svc-info h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
    .svc-info p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; }
    .svc-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .svc-item {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px; background: var(--light); border-radius: 8px;
      font-size: .85rem; font-weight: 500; color: var(--navy);
      border: 1px solid var(--border); transition: all .2s;
    }
    .svc-item:hover { background: var(--navy); color: #fff; transform: translateX(4px); }
    .svc-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
    .svc-visual {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: 20px; padding: 40px 32px; color: #fff;
    }
    .svc-visual h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--orange-lt); }
    .svc-benefit {
      display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
    }
    .svc-benefit-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: rgba(0,102,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .svc-benefit-text strong { display: block; font-size: .9rem; margin-bottom: 2px; }
    .svc-benefit-text span { font-size: .8rem; color: rgba(255,255,255,.6); }

    /* ===== PROCESS ===== */
    #process { background: var(--light); }
    .process-header { text-align: center; margin-bottom: 60px; }
    .process-track {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
    }
    .process-track::before {
      content: ''; position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-lt)); z-index: 0;
    }
    .process-step { text-align: center; position: relative; padding: 0 16px; z-index: 1; }
    .process-num {
      width: 96px; height: 96px; border-radius: 50%; background: var(--navy); color: #fff;
      font-size: 1.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; border: 4px solid var(--orange); box-shadow: 0 0 0 6px rgba(0,102,255,.15);
      transition: all .3s;
    }
    .process-step:hover .process-num { background: var(--orange); border-color: var(--navy); transform: scale(1.1); }
    .process-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
    .process-step p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

    /* ===== VENDOR vs SELLER ===== */
    #compare { background: var(--white); }
    .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
    .compare-card {
      border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
      transition: transform .3s; border: 1px solid var(--border);
    }
    .compare-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .compare-head {
      padding: 28px 32px;
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      color: #fff;
    }
    .compare-head h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
    .compare-head p { font-size: .85rem; color: rgba(255,255,255,.7); }
    .compare-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--orange); color: #fff; padding: 4px 12px;
      border-radius: 20px; font-size: .72rem; font-weight: 700; margin-bottom: 12px;
    }
    .compare-body { padding: 28px 32px; background: var(--white); }
    .compare-item {
      display: flex; align-items: center; gap: 12px; padding: 10px 0;
      border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--text);
    }
    .compare-item:last-child { border-bottom: none; }
    .compare-item::before {
      content: '✓'; color: var(--orange); font-weight: 900; font-size: 1rem;
      width: 22px; height: 22px; background: rgba(0,102,255,.12);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials { background: var(--light); }
    .testi-header { text-align: center; margin-bottom: 48px; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testi-card {
      background: var(--white); border-radius: 16px; padding: 28px 24px;
      box-shadow: var(--shadow); border: 1px solid var(--border);
      transition: transform .3s; position: relative;
    }
    .testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .testi-quote {
      font-size: 3rem; color: var(--orange); line-height: 1; margin-bottom: 12px;
      font-family: Georgia, serif;
    }
    .testi-text { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 12px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--orange));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
    }
    .testi-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
    .testi-loc { font-size: .78rem; color: var(--muted); }

    /* ===== CLIENTS ===== */
    #clients { background: var(--white); }
    .clients-header { text-align: center; margin-bottom: 48px; }
    .clients-strip { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
    .client-card {
      padding: 20px 32px; border-radius: 12px; background: var(--light);
      border: 2px solid var(--border); font-weight: 700; color: var(--navy);
      font-size: .95rem; transition: all .25s; display: flex; align-items: center; gap: 10px;
    }
    .client-card:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-4px); }
    .client-card .flag { font-size: 1.4rem; }
    .clients-nda { text-align: center; margin-top: 24px; color: var(--muted); font-size: .85rem; font-style: italic; }

    /* ===== CTA BAND ===== */
    #cta {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      text-align: center; color: #fff;
    }
    #cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
    #cta p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .cta-highlight { color: var(--orange); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 28px; }

    /* ===== CONTACT ===== */
    #contact { background: var(--light); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
    .contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
    .contact-info p { color: var(--muted); font-size: .95rem; margin-bottom: 32px; line-height: 1.7; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
      padding: 18px; background: var(--white); border-radius: 12px;
      border: 1px solid var(--border); transition: all .2s;
    }
    .contact-item:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(0,102,255,.12); }
    .ci-icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange), var(--orange-lt));
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    }
    .ci-text strong { display: block; color: var(--navy); font-size: .85rem; margin-bottom: 4px; }
    .ci-text span { color: var(--muted); font-size: .88rem; line-height: 1.5; }
    .contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
    .contact-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
      border-radius: 8px; font-size: .9rem; font-family: inherit; color: var(--text);
      background: var(--white); transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--orange); box-shadow: 0 0 0 3px rgba(0,102,255,.12);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; padding: 14px; background: var(--orange); color: #fff; border: none; border-radius: 8px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .25s; }
    .form-submit:hover { background: #d97d08; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,255,.3); }
    .form-success { display: none; text-align: center; padding: 20px; color: #16a34a; background: #f0fdf4; border-radius: 8px; font-weight: 600; margin-top: 16px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 60px 0 0;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.55); }
    .footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
    .footer-col ul li a:hover { color: var(--orange-lt); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
    .footer-cin { font-size: .75rem; color: rgba(255,255,255,.3); }

    /* ===== LOGO SVG ===== */
    .logo-svg { width: 160px; height: 48px; }

    /* ===== ANIMATIONS ===== */
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .6; transform: scale(1.3); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .6s ease both; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .2s; }
    .delay-3 { animation-delay: .3s; }
    .delay-4 { animation-delay: .4s; }

    /* ===== SERVICE BANNERS ===== */
    .svc-banners { background: var(--light); padding: 80px 0; }
    .svc-banners-header { text-align: center; margin-bottom: 52px; }
    .banner-row { display: flex; flex-direction: column; gap: 28px; }
    .svc-banner {
      border-radius: 20px; overflow: hidden; display: flex; align-items: stretch;
      box-shadow: var(--shadow-lg); transition: transform .3s;
    }
    .svc-banner:hover { transform: translateY(-4px); }
    .svc-banner-accent {
      width: 8px; flex-shrink: 0;
      background: linear-gradient(180deg, var(--orange), var(--orange-lt));
    }
    .svc-banner-body {
      flex: 1; padding: 36px 44px; display: flex; align-items: center;
      justify-content: space-between; gap: 32px; background: var(--white);
      border: 1px solid var(--border); border-left: none;
    }
    .svc-banner-left { flex: 1; }
    .svc-banner-tag {
      display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--orange); background: rgba(0,102,255,.1);
      padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
    }
    .svc-banner-left h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
    .svc-banner-left p { color: var(--muted); font-size: .93rem; line-height: 1.7; max-width: 560px; }
    .svc-banner-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; flex-shrink: 0; }
    .svc-banner-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; max-width: 340px; }
    .svc-pill {
      background: var(--light2); color: var(--navy); border: 1px solid var(--border);
      border-radius: 20px; padding: 5px 14px; font-size: .78rem; font-weight: 600;
      white-space: nowrap;
    }
    .svc-banner-icon {
      width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      display: flex; align-items: center; justify-content: center; font-size: 2rem;
    }
    @media (max-width: 768px) {
      .svc-banner-body { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
      .svc-banner-right { align-items: flex-start; }
      .svc-banner-pills { justify-content: flex-start; }
    }

    /* ===== PPC DETAILED SECTION ===== */
    #ppc-section { background: var(--light); }
    .ppc-hero-band {
      background: linear-gradient(135deg, #00D9FF 0%, #00E5FF 100%);
      border-radius: 20px; padding: 52px 48px; color: #fff;
      display: flex; justify-content: space-between; align-items: center;
      gap: 32px; margin-bottom: 60px; position: relative; overflow: hidden;
    }
    .ppc-hero-band::before {
      content: ''; position: absolute; right: -60px; top: -60px;
      width: 280px; height: 280px; border-radius: 50%;
      background: rgba(255,255,255,.12); pointer-events: none;
    }
    .ppc-hero-band h2 { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 900; margin-bottom: 10px; }
    .ppc-hero-band p { font-size: .95rem; color: rgba(255,255,255,.85); max-width: 500px; line-height: 1.7; }
    .ppc-metric-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
    .ppc-metric {
      background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3);
      border-radius: 10px; padding: 12px 20px; text-align: center;
    }
    .ppc-metric-val { font-size: 1.4rem; font-weight: 900; display: block; }
    .ppc-metric-lbl { font-size: .72rem; opacity: .85; letter-spacing: .05em; text-transform: uppercase; }
    .ppc-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
    .ppc-type-card {
      background: var(--white); border-radius: 16px; padding: 32px 28px;
      border: 1px solid var(--border); box-shadow: var(--shadow);
      transition: all .3s; position: relative; overflow: hidden;
    }
    .ppc-type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
    .ppc-type-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #e85d04, #faa307);
      transform: scaleX(0); transform-origin: left; transition: transform .3s;
    }
    .ppc-type-card:hover::after { transform: scaleX(1); }
    .ppc-type-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
    .ppc-type-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
    .ppc-type-card p { color: var(--muted); font-size: .87rem; line-height: 1.7; margin-bottom: 14px; }
    .ppc-type-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .ppc-tag { background: var(--light2); color: var(--navy); border-radius: 20px; padding: 4px 10px; font-size: .72rem; font-weight: 600; }
    .ppc-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
    .ppc-step {
      background: var(--white); border-radius: 14px; padding: 28px 24px;
      border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center;
    }
    .ppc-step-num {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, #e85d04, #faa307);
      color: #fff; font-weight: 900; font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    }
    .ppc-step h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .ppc-step p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
    .ppc-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .ppc-report-card {
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      border-radius: 16px; padding: 36px 32px; color: #fff;
    }
    .ppc-report-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--orange-lt); margin-bottom: 16px; }
    .ppc-report-item {
      display: flex; align-items: center; gap: 12px; padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.1); font-size: .87rem;
    }
    .ppc-report-item:last-child { border-bottom: none; }
    .ppc-report-item::before {
      content: '✓'; color: #faa307; font-weight: 900;
      width: 22px; height: 22px; background: rgba(250,163,7,.2);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: .85rem;
    }
    .ppc-why-card {
      background: var(--white); border-radius: 16px; padding: 36px 32px;
      border: 1px solid var(--border); box-shadow: var(--shadow);
    }
    .ppc-why-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
    .ppc-why-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
    .ppc-why-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: rgba(0,102,255,.12); display: flex; align-items: center; justify-content: center; font-size: .95rem; }
    .ppc-why-text strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: 2px; }
    .ppc-why-text span { font-size: .8rem; color: var(--muted); line-height: 1.5; }
    @media (max-width: 768px) {
      .ppc-hero-band { flex-direction: column; padding: 36px 28px; }
      .ppc-types { grid-template-columns: 1fr; }
      .ppc-process { grid-template-columns: 1fr; }
      .ppc-bottom-grid { grid-template-columns: 1fr; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .svc-grid { grid-template-columns: 1fr; }
      .svc-items { grid-template-columns: 1fr; }
      .process-track { grid-template-columns: 1fr 1fr; }
      .process-track::before { display: none; }
      .compare-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-buttons { flex-direction: column; max-width: 260px; }
    }
    @media (max-width: 480px) {
      .section { padding: 60px 0; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .process-track { grid-template-columns: 1fr; }
      .clients-strip { gap: 12px; }
      .client-card { padding: 14px 20px; font-size: .85rem; }
    }
