  :root {
    --ink: #0a0d14;
    --ink2: #141824;
    --surface: #111420;
    --card: #161b2e;
    --border: rgba(255,255,255,0.07);
    --accent: #00e5ff;
    --accent2: #6c63ff;
    --accent3: #00ffa3;
    --text: #c8d0e8;
    --muted: #6b7394;
    --white: #f0f4ff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
  }

  /* GLOW BLOBS */
  .blob {
    position: fixed; border-radius: 50%; filter: blur(120px);
    pointer-events: none; z-index: 0;
  }
  .blob-1 { width: 600px; height: 600px; background: rgba(108,99,255,0.12); top: -200px; right: -100px; }
  .blob-2 { width: 500px; height: 500px; background: rgba(0,229,255,0.07); bottom: 20%; left: -150px; }
  .blob-3 { width: 400px; height: 400px; background: rgba(0,255,163,0.06); bottom: -100px; right: 10%; }

  section, nav, footer { position: relative; z-index: 1; }

  /* NAV */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,13,20,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 1.4rem; letter-spacing: 0.05em;
    color: var(--white);
  }
  .nav-logo img {
  max-width:120px;
  }
  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--accent2); color: #fff;
    border: none; padding: 0.6rem 1.4rem; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.875rem;
    cursor: pointer; transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
  }
  .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 5% 5rem;
    position: relative; overflow: hidden;
  }

  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.78rem; font-weight: 500; color: var(--accent);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); animation: pulse 2s ease infinite;
  }

  @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.5); } }
  @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

  h1 {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.08; color: var(--white);
    animation: fadeUp 0.8s 0.1s ease both;
  }
  h1 .accent-line { 
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero-sub {
    font-size: 1.1rem; color: var(--muted); margin: 1.5rem 0 2.5rem;
    max-width: 480px; line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent2), #4f46e5);
    color: #fff; border: none; padding: 0.85rem 2rem;
    border-radius: 8px; font-family: 'DM Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(108,99,255,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,99,255,0.5); }

  .btn-ghost {
    background: transparent; color: var(--white);
    border: 1px solid var(--border); padding: 0.85rem 2rem;
    border-radius: 8px; font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 0.95rem; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

  .hero-visual {
    animation: fadeIn 1s 0.4s ease both;
    position: relative;
  }

  .metrics-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    position: relative; overflow: hidden;
  }
  .metrics-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
  }

  .metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
  .metric { text-align: center; }
  .metric-val {
    font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
    color: var(--white); line-height: 1;
  }
  .metric-val span { color: var(--accent); }
  .metric-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }

  .activity-bar {
    background: rgba(255,255,255,0.04); border-radius: 8px; padding: 1rem;
    display: flex; align-items: center; gap: 12px;
  }
  .activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent3); flex-shrink: 0; animation: pulse 2s ease infinite; }
  .activity-text { font-size: 0.8rem; color: var(--muted); }
  .activity-text strong { color: var(--white); }

  .floating-tag {
    position: absolute; background: var(--card); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.6rem 1rem; font-size: 0.78rem;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
  }
  .tag-1 { top: -20px; right: -20px; z-index:2; }
  .tag-2 { bottom: -20px; left: -20px; }
  .tag-icon { font-size: 1rem; }

  /* LOGOS */
  #logos {
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
	background: #161b2e;
  }
  .logos-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
  .logos-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 3.5rem; flex-wrap: wrap;
  }
  .logo-item {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
    color: var(--muted); letter-spacing: 0.05em; opacity: 0.5;
    transition: opacity 0.2s;
  }
  .logo-item:hover { opacity: 0.9; }

  /* SECTIONS COMMON */
  .section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); font-weight: 600; margin-bottom: 1rem;
  }
  #services, #approach, #solutions, #compliance {
  scroll-margin-top:50px;
  }
  h2 {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); line-height: 1.15;
  }
  .section-desc { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 1rem auto 0; line-height: 1.7; }

  /* SERVICES */
  #services { padding: 6rem 5%; }

  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .service-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-4px); }
  .service-card::after {
    content: ''; position: absolute; inset: 0; opacity: 0;
    background: radial-gradient(ellipse at top left, rgba(108,99,255,0.06), transparent 70%);
    transition: opacity 0.3s;
  }
  .service-card:hover::after { opacity: 1; }

  .service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
  }
  .icon-blue { background: rgba(108,99,255,0.15); }
  .icon-cyan { background: rgba(0,229,255,0.12); }
  .icon-green { background: rgba(0,255,163,0.12); }
  .icon-orange { background: rgba(255,165,0,0.12); }

  .service-title {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem;
    color: var(--white); margin-bottom: 0.75rem;
  }
  .service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

  .service-features { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 6px; }
  .sf-item {
    font-size: 0.8rem; color: var(--text); display: flex; align-items: center; gap: 8px;
  }
  .sf-item::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent2); flex-shrink: 0;
  }

  /* APPROACH */
  #approach { padding: 6rem 5%; background: var(--ink2); }

  .approach-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }

  .approach-steps { display: flex; flex-direction: column; gap: 0; }
  .step {
    display: flex; gap: 1.5rem; padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
  }
  .step:first-child { border-top: 1px solid var(--border); }
  .step-num {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.8rem;
    color: var(--muted); width: 32px; flex-shrink: 0; padding-top: 4px;
    letter-spacing: 0.08em;
  }
  .step-content .step-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    color: var(--white); font-size: 1rem; margin-bottom: 4px;
  }
  .step-content .step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
  .step:hover .step-num { color: var(--accent); }
  .step:hover .step-title { color: var(--accent); }

  .approach-visual {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden;
  }
  .approach-visual::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  }
  .pipeline {
    display: flex; flex-direction: column; gap: 1rem;
  }
  .pipe-item {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 10px; padding: 1rem 1.2rem;
    transition: border-color 0.2s;
  }
  .pipe-item:hover { border-color: rgba(0,229,255,0.3); }
  .pipe-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  }
  .pipe-name { font-size: 0.875rem; color: var(--white); font-weight: 500; flex: 1; }
  .pipe-tag {
    font-size: 0.7rem; padding: 3px 8px; border-radius: 100px;
    font-weight: 600; letter-spacing: 0.05em;
  }
  .tag-done { background: rgba(0,255,163,0.1); color: var(--accent3); }
  .tag-active { background: rgba(0,229,255,0.1); color: var(--accent); }
  .tag-plan { background: rgba(108,99,255,0.1); color: #a5a0ff; }

  /* SOLUTIONS */
  #solutions { padding: 6rem 5%; }

  .solutions-tabs {
    display: flex; gap: 1rem; justify-content: center;
    margin-bottom: 3rem; flex-wrap: wrap;
  }
  .tab-btn {
    background: var(--card); border: 1px solid var(--border);
    color: var(--muted); padding: 0.6rem 1.4rem; border-radius: 100px;
    font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--accent2); border-color: var(--accent2); color: #fff;
  }

  .solutions-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .sol-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem; transition: all 0.3s;
  }
  .sol-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-3px); }
  .sol-num {
    font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
    color: var(--accent); letter-spacing: 0.12em; margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .sol-title {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem;
    color: var(--white); margin-bottom: 0.75rem;
  }
  .sol-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

  /* COMPLIANCE */
  #compliance { padding: 6rem 5%; background: var(--ink2); }

  .compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
  .comp-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s;
  }
  .comp-card:hover { border-color: rgba(0,255,163,0.3); }
  .comp-badge {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem;
    color: var(--accent3); margin-bottom: 0.5rem;
  }
  .comp-name { font-size: 0.85rem; color: var(--white); font-weight: 500; margin-bottom: 0.5rem; }
  .comp-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

  /* CTA */
  #cta {
    padding: 8rem 5%;
    text-align: center; position: relative; overflow: hidden;
  }
  #cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(108,99,255,0.12) 0%, transparent 70%);
  }
  .cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
  #cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
  #cta p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-form {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem;
  }
  .cta-input {
    background: var(--card); border: 1px solid var(--border);
    color: var(--white); padding: 0.85rem 1.4rem; border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    min-width: 280px; outline: none; transition: border-color 0.2s;
  }
  .cta-input:focus { border-color: var(--accent2); }
  .cta-input::placeholder { color: var(--muted); }

  /* FOOTER */
  footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white);
  }
  .footer-logo img {
  max-width:120px;
  }
  .footer-logo span { color: var(--accent); }
  .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
  .footer-links a {
    font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-size: 0.78rem; color: var(--muted); }

  /* MOBILE MENU OVERLAY */
  .mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
    background: rgba(10,13,20,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-menu.open {
    display: flex;
    opacity: 1;
  }
  .mobile-menu a {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1.3rem; color: var(--white); text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-menu .menu-cta {
    background: var(--accent2); color: #fff;
    padding: 0.85rem 2.5rem; border-radius: 8px;
    font-size: 1.1rem; font-weight: 600; font-family: 'Syne', sans-serif;
  }
  .mobile-menu-close {
    position: absolute; top: 1.5rem; right: 5%;
    background: none; border: none; cursor: pointer;
    color: var(--white); font-size: 2rem; line-height: 1;
  }

  /* Hamburger open state */
  .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); }
  .hamburger span { transition: transform 0.3s, opacity 0.3s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
    .solutions-cards { grid-template-columns: 1fr 1fr; }
    .compliance-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .solutions-cards { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
	.nav-logo img {max-width:80px;}
	.footer-logo img {max-width:80px;}
	nav {padding:0.5rem 5%; }
  }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }