    /* =============================================
       CSS RESET & ROOT VARIABLES
    ============================================= */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --primary:       #2563eb;
      --primary-dark:  #1d4ed8;
      --primary-light: #eff6ff;
      --bg:            #f8fafc;
      --bg-white:      #ffffff;
      --text:          #0f172a;
      --text-muted:    #64748b;
      --border:        #e5e7eb;
      --shadow-sm:     0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
      --shadow-md:     0 4px 16px rgba(37,99,235,.10), 0 1px 4px rgba(0,0,0,.06);
      --shadow-lg:     0 12px 40px rgba(37,99,235,.13), 0 2px 8px rgba(0,0,0,.07);
      --radius:        10px;
      --radius-lg:     16px;
      --transition:    .22s cubic-bezier(.4,0,.2,1);
      --container:     1400px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    /* =============================================
       UTILITY
    ============================================= */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    section { padding: 80px 0; }

    .section-label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -.02em;
      color: var(--text);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 560px;
    }

    .section-head {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-head .section-sub { margin: 0 auto; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: var(--radius);
      font-family: inherit;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 2px 8px rgba(37,99,235,.3);
    }
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37,99,235,.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 1.5px solid var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }
    .btn-white {
      background: #fff;
      color: var(--primary);
      font-weight: 600;
    }
    .btn-white:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }

    /* =============================================
       HEADER / NAVBAR
    ============================================= */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248,250,252,.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -.03em;
    }
    .logo-icon {
      width: 36px; height: 36px;
      background: var(--primary);
      border-radius: 8px;
      display: grid;
      place-items: center;
    }
    .logo span { color: var(--primary); }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a {
      font-size: .875rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 12px;
      border-radius: 8px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--primary); background: var(--primary-light); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 16px 24px 24px;
      background: var(--bg-white);
      border-top: 1px solid var(--border);
    }
    .mobile-nav a {
      font-size: .9rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 10px 14px;
      border-radius: 8px;
      transition: var(--transition);
    }
    .mobile-nav a:hover { color: var(--primary); background: var(--primary-light); }
    .mobile-nav .btn { margin-top: 8px; justify-content: center;     color: white; }
    .mobile-nav.open { display: flex; }

    /* =============================================
       HERO SECTION
    ============================================= */
    #hero {
      padding: 8px 0 80px;
      background: #0a0f1e;
      overflow: hidden;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    /* Canvas constellation background */
    #constellation-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* Lift all hero content above canvas */
    #hero .container {
      position: relative;
      z-index: 1;
      max-width: 100%;
      padding: 0 48px;
    }

    /* Adjust text colors for dark hero background */
    #hero .hero-badge {
      background: rgba(37,99,235,.18);
      border-color: rgba(37,99,235,.35);
      color: #93c5fd;
    }
    #hero .hero-title { color: #f1f5f9; }
    #hero .hero-title .accent { color: #60a5fa; }
    #hero .hero-desc { color: #94a3b8; }
    #hero .btn-outline {
      color: #93c5fd;
      border-color: rgba(147,197,253,.45);
    }
    #hero .btn-outline:hover {
      background: rgba(37,99,235,.18);
    }
    #hero .hero-trust { color: #64748b; }
    #hero .hero-trust strong { color: #94a3b8; }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 180px;
      align-items: center;
    }

    @media (max-width: 1100px) {
      .hero-inner { gap: 60px; }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      border: 1px solid rgba(37,99,235,.15);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(1.4); }
    }

    .hero-title {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -.035em;
      margin-bottom: 20px;
    }
    .hero-title .accent {
      color: var(--primary);
      position: relative;
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 480px;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .8rem;
      color: var(--text-muted);
    }
    .trust-dots {
      display: flex;
    }
    .trust-dots span {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-right: -8px;
      display: grid;
      place-items: center;
      font-size: .6rem;
      font-weight: 700;
      color: #fff;
    }
    .trust-dots span:nth-child(1) { background: #2563eb; }
    .trust-dots span:nth-child(2) { background: #7c3aed; }
    .trust-dots span:nth-child(3) { background: #059669; }
    .trust-dots span:nth-child(4) { background: #d97706; }

    /* Hero visual – Lottie area */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lottie-wrap {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      padding: 68px 0; /* top/bottom zones reserved for floating badges */
    }

    /* Glowing ring behind animation */
    .lottie-wrap::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 380px; height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,.18) 0%, rgba(37,99,235,.06) 50%, transparent 70%);
      pointer-events: none;
      animation: pulseRing 4s ease-in-out infinite;
    }
    @keyframes pulseRing {
      0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: .8; }
      50%      { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
    }

    #lottie-hero {
      width: 100%;
      height: 420px;
      position: relative;
      z-index: 1;
    }

    /* Pill stat badges around animation */
    .hero-stat-badge {
      position: absolute;
      background: rgba(17,24,39,.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 100px;
      padding: 9px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 600;
      color: #e2e8f0;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(0,0,0,.3);
      z-index: 2;
    }
    .hero-stat-badge .stat-icon {
      width: 26px; height: 26px;
      background: rgba(37,99,235,.25);
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .badge-tl .stat-icon { background: rgba(96,165,250,.2);  }
    .badge-tr .stat-icon { background: rgba(52,211,153,.2);  }
    .badge-bl .stat-icon { background: rgba(245,158,11,.2);  }
    .badge-br .stat-icon { background: rgba(167,139,250,.2); }
    .badge-tl { top: 10px;    left: 4px;   animation: float 4s ease-in-out infinite; }
    .badge-tr { top: 30px;    right: 4px;  animation: float 4s ease-in-out infinite .6s; }
    .badge-bl { bottom: 30px; left: 4px;   animation: float 4s ease-in-out infinite 1.2s; }
    .badge-br { bottom: 10px; right: 4px;  animation: float 4s ease-in-out infinite 1.8s; }

    /* Floating badges */
    .float-badge {
      position: absolute;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 600;
      box-shadow: var(--shadow-md);
      white-space: nowrap;
    }
    .float-badge.top-right {
      top: -16px; right: -16px;
      animation: float 4s ease-in-out infinite;
    }
    .float-badge.bottom-left {
      bottom: -16px; left: -16px;
      animation: float 4s ease-in-out infinite .8s;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }
    .dot { width: 8px; height: 8px; border-radius: 50%; }
    .dot-green  { background: #10b981; }
    .dot-yellow { background: #f59e0b; }

    /* =============================================
       SERVICES SECTION
    ============================================= */
    #services {
      background: var(--bg);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 0;
    }

    #services .container {
      display: flex;
      flex-direction: column;
    }

    .services-scroll-wrap {
      width: 100%;
    }

    .services-track {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      width: 100%;
      justify-content: center;
      padding: 12px 0;
    }

    .service-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      width: 320px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--primary-light) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition);
    }
    .service-card:hover {
      border-color: rgba(37,99,235,.3);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 56px; height: 56px;
      background: var(--primary-light);
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      position: relative;
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: var(--primary);
    }
    .service-card:hover .service-icon svg path,
    .service-card:hover .service-icon svg circle,
    .service-card:hover .service-icon svg rect,
    .service-card:hover .service-icon svg polyline,
    .service-card:hover .service-icon svg line,
    .service-card:hover .service-icon svg polygon {
      stroke: #fff;
    }
    .service-icon svg { width: 26px; height: 26px; }

    .service-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
    }
    .service-desc {
      font-size: .875rem;
      color: var(--text-muted);
      line-height: 1.7;
      position: relative;
    }

    /* =============================================
       WHY CHOOSE US
    ============================================= */
    #why {
      background: var(--bg-white);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 0;
    }

    #why .container {
      display: flex;
      flex-direction: column;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .why-card {
      text-align: center;
      padding: 40px 28px;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: var(--transition);
    }
    .why-card:hover {
      border-color: rgba(37,99,235,.25);
      background: var(--primary-light);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .why-anim {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      height: 78px;
    }
    .why-card:hover .why-anim svg {
      filter: drop-shadow(0 4px 12px rgba(37,99,235,.2));
    }
    .why-icon {
      width: 72px; height: 72px;
      background: var(--primary-light);
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
      transition: var(--transition);
    }
    .why-icon svg { width: 30px; height: 30px; }
    .why-card:hover .why-icon { background: var(--primary); }
    .why-card:hover .why-icon svg path,
    .why-card:hover .why-icon svg circle,
    .why-card:hover .why-icon svg polyline,
    .why-card:hover .why-icon svg line { stroke: #fff; }

    .why-title {
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .why-desc {
      font-size: .82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 14px;
    }

    .why-points {
      list-style: none;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 7px;
      text-align: left;
      border-top: 1px solid var(--border);
      padding-top: 14px;
      margin: 0;
    }
    .why-points li {
      font-size: .78rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .why-points li::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      background: var(--primary-light);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7 8,3' stroke='%232563eb' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    /* =============================================
       PROCESS + STATS — combined About screen
    ============================================= */
    .about-combined {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .process-section {
      flex: 6;
      background: var(--bg);
      display: flex;
      align-items: center;
      padding: 56px 0;
    }
    .process-section .container { width: 100%; }

    #stats {
      flex: 4;
    }

    .process-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-track::before {
      display: none;
    }

    .process-step {
      text-align: center;
      padding: 0 16px;
      position: relative;
    }

    .step-num {
      width: 56px; height: 56px;
      background: var(--primary);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 800;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 16px rgba(37,99,235,.3);
      position: relative;
      z-index: 1;
      transition: var(--transition);
    }
    .process-step:hover .step-num {
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(37,99,235,.4);
    }

    .step-title {
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: .82rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* =============================================
       STATS SECTION
    ============================================= */
    #stats {
      background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
      display: flex;
      align-items: center;
      padding: 0;
    }
    #stats .container { width: 100%; }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
    }

    .stat-item {
      padding: 24px 16px;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%);
      height: 48px;
      width: 1px;
      background: rgba(255,255,255,.2);
    }

    .stat-num {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: .85rem;
      color: rgba(255,255,255,.7);
      font-weight: 500;
    }

    /* =============================================
       CONTACT SECTION
    ============================================= */
    #cta {
      background: var(--bg-white);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 0;
      overflow-x: hidden;
    }
    #cta .container {
      display: flex;
      flex-direction: column;
    }
    #cta .section-head {
      margin-bottom: 28px;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      align-items: stretch;
      /* max-height: calc(100vh - 240px); */
    }

    /* Left panel */
    .contact-info {
      background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
      border-radius: 16px;
      padding: 24px 28px;
      overflow-y: auto;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .contact-info::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
    }
    .contact-info::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,.05);
    }

    .contact-info-top { position: relative; z-index: 1; }

    /* GPS Location card */
    .contact-location {
      background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
      border-radius: 16px;
      padding: 20px 24px;
      overflow-y: auto;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .contact-location::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
    }
    .contact-location::after {
      content: '';
      position: absolute;
      bottom: -50px; left: -50px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,.05);
    }
    .contact-location .contact-info-top { flex-shrink: 0; }
    .location-map {
      position: relative;
      z-index: 1;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .location-map iframe { display: block; }
    .contact-location .contact-info-bottom {
      margin-top: auto;
    }

    .cta-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.02em;
      line-height: 1.25;
      margin-bottom: 8px;
    }
    .cta-sub {
      font-size: .8rem;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .contact-detail-icon {
      width: 32px; height: 32px;
      background: rgba(255,255,255,.12);
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .contact-detail-icon svg { width: 14px; height: 14px; }
    .contact-detail-text strong {
      display: block;
      font-size: .7rem;
      color: rgba(255,255,255,.5);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 1px;
    }
    .contact-detail-text span {
      font-size: .78rem;
      color: #fff;
      font-weight: 500;
    }

    .contact-info-bottom {
      position: relative;
      z-index: 1;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: auto;
    }
    .response-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.12);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: .78rem;
      color: rgba(255,255,255,.85);
      font-weight: 500;
    }

    /* Right panel – form */
    .contact-form-box {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 28px;
      box-shadow: var(--shadow-md);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }
    .contact-form-box .form-group.message-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }
    .contact-form-box .form-group.message-group textarea {
      flex: 1;
      min-height: 80px;
    }

    .form-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 4px;
      letter-spacing: -.02em;
    }
    .form-subtitle {
      font-size: .75rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 7px;
    }
    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      font-size: .72rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: .01em;
    }
    .form-group label span { color: var(--primary); }

    .form-group input,
    .form-group textarea {
      font-family: inherit;
      font-size: .8rem;
      color: var(--text);
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 7px 11px;
      outline: none;
      transition: var(--transition);
      resize: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #b0bec5;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
      background: var(--bg-white);
      box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    }
    .form-group textarea { min-height: 80px; }

    .form-submit {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .form-note {
      font-size: .78rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Success message (hidden by default) */
    .form-success {
      display: none;
      align-items: center;
      gap: 10px;
      background: #f0fdf4;
      border: 1px solid #86efac;
      border-radius: var(--radius);
      padding: 14px 18px;
      font-size: .875rem;
      color: #166534;
      font-weight: 500;
      margin-top: 16px;
    }
    .form-success.show { display: flex; }

    /* Responsive contact */
    @media (max-width: 1100px) {
      .contact-wrapper { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 700px) {
      #cta {
        min-height: auto;
        padding: 64px 0;
      }
      .contact-wrapper {
        grid-template-columns: 1fr;
        max-height: none;
        align-items: start;
        gap: 16px;
      }
      .contact-info {
        padding: 28px 20px;
      }
      .contact-location {
        padding: 28px 20px;
      }
      .contact-form-box {
        padding: 28px 20px;
      }
      .contact-form-box .form-group.message-group {
        flex: none;
      }
    }
    @media (max-width: 500px) {
      .form-row { grid-template-columns: 1fr; }
    }

    /* =============================================
       TEAM SECTION
    ============================================= */
    #team {
      background: #f1f5f9;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 0;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .team-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: var(--transition);
      position: relative;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(37,99,235,.13), 0 4px 12px rgba(0,0,0,.06);
      border-color: rgba(37,99,235,.2);
    }

    /* Circular avatar */
    .team-avatar {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #60a5fa 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 32px auto 18px;
      position: relative;
      box-shadow: 0 10px 32px rgba(37,99,235,.35);
      flex-shrink: 0;
    }
    .team-avatar::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.22), transparent 58%);
    }
    .team-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      position: relative;
      z-index: 1;
    }
    .team-initials {
      font-size: 2.6rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.04em;
      z-index: 1;
    }

    /* Per-card avatar colours */
    .team-card:nth-child(4n+2) .team-avatar {
      background: linear-gradient(135deg, #312e81 0%, #7c3aed 55%, #a78bfa 100%);
      box-shadow: 0 8px 28px rgba(124,58,237,.35);
    }
    .team-card:nth-child(4n+3) .team-avatar {
      background: linear-gradient(135deg, #064e3b 0%, #059669 55%, #34d399 100%);
      box-shadow: 0 8px 28px rgba(5,150,105,.35);
    }
    .team-card:nth-child(4n) .team-avatar {
      background: linear-gradient(135deg, #7c2d12 0%, #ea580c 55%, #fb923c 100%);
      box-shadow: 0 8px 28px rgba(234,88,12,.35);
    }

    .team-info {
      padding: 0 22px 22px;
      flex: 1;
    }
    .team-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: -.015em;
    }
    .team-role {
      font-size: .72rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .07em;
    }
    .team-bio {
      font-size: .8rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
      text-align: left;
    }
    .team-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
    }
    .skill-tag {
      font-size: .67rem;
      font-weight: 600;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 100px;
      padding: 3px 10px;
      letter-spacing: .02em;
    }

    .team-socials {
      display: flex;
      gap: 8px;
      padding: 14px 22px;
      border-top: 1px solid var(--border);
      background: #f8fafc;
      justify-content: center;
    }
    .social-btn {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--bg-white);
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      transition: var(--transition);
      color: var(--text-muted);
    }
    .social-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .social-btn:hover svg path,
    .social-btn:hover svg rect,
    .social-btn:hover svg line,
    .social-btn:hover svg circle { stroke: #fff; }

    @media (max-width: 1024px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .team-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: #0f172a;
      color: rgba(255,255,255,.65);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.15rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-logo-icon {
      width: 32px; height: 32px;
      background: var(--primary);
      border-radius: 7px;
      display: grid;
      place-items: center;
    }

    .footer-desc {
      font-size: .85rem;
      line-height: 1.75;
      color: rgba(255,255,255,.5);
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: .875rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
      letter-spacing: .02em;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: .85rem;
      color: rgba(255,255,255,.5);
      transition: var(--transition);
    }
    .footer-links a:hover { color: #fff; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .82rem;
      color: rgba(255,255,255,.5);
      margin-bottom: 12px;
      line-height: 1.5;
    }
    .footer-contact-item svg { flex-shrink: 0; margin-top: 1px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
    .footer-legal {
      display: flex;
      gap: 20px;
    }
    .footer-legal a {
      font-size: .8rem;
      color: rgba(255,255,255,.35);
      transition: var(--transition);
    }
    .footer-legal a:hover { color: rgba(255,255,255,.7); }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .service-card  { width: 240px; }
      .why-grid      { grid-template-columns: repeat(2, 1fr); }
      .stats-grid    { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after,
      .stat-item:nth-child(4)::after { display: none; }
      .stat-item:nth-child(1),
      .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 36px; margin-bottom: 0; }
    }

    @media (max-width: 768px) {
      .nav-links, nav > .btn { display: none; }
      .hamburger { display: flex; }

      section { padding: 56px 0; }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .hero-visual { order: -1; }
      .hero-visual .float-badge { display: none; }

      .service-card    { width: calc(50% - 10px); min-width: 0; }
      .why-grid        { grid-template-columns: 1fr; }
      .process-track   {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .process-track::before { display: none; }
      .process-step { text-align: left; display: flex; align-items: flex-start; gap: 20px; }
      .step-num { flex-shrink: 0; margin: 0; }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .cta-box { padding: 48px 24px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { justify-content: center; }
      .device-grid { grid-template-columns: repeat(3, 1fr); }
      .metric-row { gap: 8px; }
      .service-card { width: 100%; }
    }

@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   CONTACT FORM POPUPS
============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(15,23,42,.22), 0 4px 16px rgba(15,23,42,.08);
  transform: translateY(24px) scale(0.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.popup-overlay.show .popup-card {
  transform: translateY(0) scale(1);
}

.popup-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.popup-card--success .popup-icon {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
}

.popup-card--info .popup-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 8px 24px rgba(59,130,246,.35);
}

.popup-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.popup-body {
  font-size: .9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 28px;
}

.popup-close {
  min-width: 140px;
  justify-content: center;
}
