    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
    --navy: #080f1e;
    --navy-mid: #0d1a30;
    --navy-card: #111f38;
    --blue: #1a6cf5;
    --blue-glow: #2e7dff;
    --cyan: #00c2e0;
    --slate: #7a90b0;
    --light: #c8d8f0;
    --white: #f0f5ff;
    --border: rgba(26,108,245,0.18);
    --radius: 6px;
    }

    html { scroll-behavior: smooth; }

    body {
    background: var(--navy);
    color: var(--light);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(8,15,30,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
    }

    nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

    .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    }

    .nav-logo img {
    height: 44px;
    width: auto;
    display: block;
    }

    .nav-logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    }

    .nav-logo-text span { color: var(--cyan); }

    .nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    list-style: none;
    }

    .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
    color: var(--white) !important;
    background: var(--blue);
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius);
    transition: background 0.2s, box-shadow 0.2s !important;
    }

    .nav-cta:hover {
    background: var(--blue-glow) !important;
    box-shadow: 0 0 20px rgba(26,108,245,0.4) !important;
    }

    .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    }

    .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--slate);
    border-radius: 2px;
    transition: 0.3s;
    }

    /* ── HERO ── */
    .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    overflow: hidden;
    }

    .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(26,108,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,108,245,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
    }

    .hero-orb1 {
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,108,245,0.18) 0%, transparent 65%);
    pointer-events: none;
    }

    .hero-orb2 {
    position: absolute;
    bottom: -15%; left: -8%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,194,224,0.10) 0%, transparent 65%);
    pointer-events: none;
    }

    .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    }

    .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(26,108,245,0.12);
    border: 1px solid rgba(26,108,245,0.3);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.8rem;
    animation: fadeUp 0.6s ease both;
    }

    .badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s infinite;
    }

    @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
    }

    .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    .hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--slate);
    max-width: 560px;
    margin-bottom: 2.4rem;
    animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--blue);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
    background: var(--blue-glow);
    box-shadow: 0 0 28px rgba(26,108,245,0.45);
    transform: translateY(-2px);
    }

    .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .btn-ghost:hover {
    border-color: rgba(26,108,245,0.5);
    background: rgba(26,108,245,0.07);
    color: var(--white);
    }

    .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
    }

    .stat-item strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    }

    .stat-item span {
    font-size: 0.8rem;
    color: var(--slate);
    letter-spacing: 0.04em;
    }

    @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
    }

    /* ── SECTIONS ── */
    section { position: relative; z-index: 1; }

    .section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 100px 5%;
    }

    .section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.8rem;
    }

    .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    }

    .section-lead {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate);
    max-width: 520px;
    margin-bottom: 3.5rem;
    }

    /* ── SERVICES ── */
    #services { background: var(--navy-mid); }

    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    }

    .service-card {
    background: var(--navy-card);
    padding: 2.2rem;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
    }

    .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    }

    .service-card:hover { background: #162240; }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
    width: 48px; height: 48px;
    background: rgba(26,108,245,0.12);
    border: 1px solid rgba(26,108,245,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    }

    .service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    }

    .service-card p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.65;
    }

    /* ── WHY US ── */
    #why { background: var(--navy); }

    .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    }

    .why-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .why-hexagon-wrap {
    position: relative;
    width: 320px; height: 320px;
    }

    .hex-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    animation: spin 18s linear infinite;
    }

    .hex-ring-2 {
    inset: 30px;
    border-color: rgba(0,194,224,0.15);
    animation-duration: 12s;
    animation-direction: reverse;
    }

    .hex-center {
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(26,108,245,0.25), rgba(8,15,30,0.9));
    border: 1px solid rgba(26,108,245,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    .why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    }

    .why-point {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    }

    .why-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: rgba(26,108,245,0.1);
    border: 1px solid rgba(26,108,245,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    }

    .why-point h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    }

    .why-point p {
    font-size: 0.87rem;
    color: var(--slate);
    line-height: 1.6;
    }

    /* ── TECH ── */
    #tech { background: var(--navy-mid); }

    .tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    }

    .tech-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.2rem;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light);
    transition: border-color 0.2s, background 0.2s;
    }

    .tech-pill:hover {
    border-color: rgba(26,108,245,0.5);
    background: rgba(26,108,245,0.08);
    }

    .tech-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    }

    .regions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
    }

    .region-tag {
    padding: 0.5rem 1.1rem;
    background: rgba(26,108,245,0.08);
    border: 1px solid rgba(26,108,245,0.2);
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--light);
    }

    /* ── CTA ── */
    #contact-cta {
    background: var(--navy);
    border-top: 1px solid var(--border);
    }

    .cta-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    }

    .cta-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    }

    .cta-box p {
    color: var(--slate);
    font-weight: 300;
    margin-bottom: 2.2rem;
    }

    .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    }

    /* ── FOOTER ── */
    footer {
    background: #050b17;
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
    }

    .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    }

    .footer-brand {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    }

    .footer-brand span { color: var(--cyan); }

    .footer-tagline {
    font-size: 0.78rem;
    color: var(--slate);
    margin-top: 0.2rem;
    }

    .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    }

    .footer-links a {
    font-size: 0.82rem;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-copy {
    font-size: 0.76rem;
    color: #3a4a62;
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(26,108,245,0.08);
    margin-top: 1rem;
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
    .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 1.5rem 5%;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .hero-stats { gap: 1.5rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    }

table {
    padding: 0 5%;
    margin-top: 30px;
    border-collapse: collapse; /* Optional: cleaner borders */
}

header{
    padding: 0 5%;
}