@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-deep: #060e1f;
    --navy-dark: #0a1628;
    --navy-mid: #0d1e38;
    --navy-card: #0f2255;
    --navy-card-2: #091530;
    --blue-primary: #1a6fff;
    --blue-dark: #003eb3;
    --blue-soft: #7aabff;
    --white: #ffffff;
    --white-80: rgba(255,255,255,0.8);
    --white-60: rgba(255,255,255,0.6);
    --white-20: rgba(255,255,255,0.2);
    --white-10: rgba(255,255,255,0.1);
    --white-05: rgba(255,255,255,0.05);
    --blue-glow: rgba(26,111,255,0.25);
    --blue-border: rgba(26,111,255,0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 32px rgba(0,0,0,0.3);
    --shadow-blue: 0 8px 40px rgba(26,111,255,0.3);
    --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-wrapper {
    position: relative;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(6,14,31,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--white-10);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo span {
    font-family: 'Syne', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.logo span em {
    font-style: normal;
    color: var(--blue-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    margin-left: auto;
}

.nav-links a {
    color: var(--white-80);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: var(--white-05);
}

.nav-cta {
    background: var(--blue-primary);
    color: white;
    padding: 9px 22px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #2577ff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(160deg, #0c1c3d 0%, #060e1f 55%, #071228 100%);
}

.hero-bg-wave {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-wave svg {
    width: 100%;
    height: 100%;
}

.hero-dots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(26,111,255,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: 560px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,111,255,0.12);
    border: 1px solid rgba(26,111,255,0.3);
    color: var(--blue-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-primary);
    animation: pulse 2s ease infinite;
}

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

.hero-content h1 {
    font-family: 'Syne', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-content h1 .hl {
    color: var(--blue-primary);
}

.hero-content p {
    font-size: 17px;
    color: var(--white-60);
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
    background: var(--blue-primary);
    color: white;
    padding: 13px 30px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #2577ff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-ghost {
    background: transparent;
    color: var(--white-80);
    padding: 13px 30px;
    border: 1.5px solid var(--white-20);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--navy-deep);
    margin-left: -8px;
    opacity: 0.85;
}

.avatar:first-child { margin-left: 0; }

.hero-trust span {
    font-size: 13px;
    color: var(--white-60);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.device-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 460px;
}

.laptop-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    background: #111d35;
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 0;
    border: 2px solid #1e3260;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(26,111,255,0.1);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.laptop-screen {
    background: #0b1a3d;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    line-height: 0;
}

.laptop-base {
    background: #0e1e38;
    height: 12px;
    border-radius: 0 0 4px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #1e3260;
}

.laptop-notch {
    width: 50px;
    height: 4px;
    background: #1a2a4a;
    border-radius: 2px;
}

.phone-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    background: #0d1a30;
    border-radius: 22px;
    padding: 10px 6px 6px;
    border: 2px solid #1e3260;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(26,111,255,0.1);
    z-index: 3;
    animation: float 4s ease-in-out 1s infinite;
}

.phone-notch {
    width: 40px;
    height: 4px;
    background: #1a2a4a;
    border-radius: 2px;
    margin: 0 auto 6px;
}

.phone-screen-inner {
    background: #0b1a3d;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}



@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

.features-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-card {
    background: #f4f7ff;
    border: 1px solid #dde6ff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-dark));
    opacity: 0;
    transition: var(--transition);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(26,111,255,0.1);
    border: 1px solid rgba(26,111,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(26,111,255,0.18);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #4a5a7a;
    line-height: 1.65;
}

.services-section {
    position: relative;
    margin: 20px 0;
}

.services-wave-top,
.services-wave-bottom {
    line-height: 0;
}

.services-wave-top svg,
.services-wave-bottom svg {
    width: 100%;
    display: block;
}

.services-inner {
    background: #071228;
    padding: 80px 0;
    position: relative;
}

.services-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(26,111,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 70%);
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 70%);
}

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

.section-badge {
    display: inline-block;
    background: rgba(26,111,255,0.12);
    border: 1px solid rgba(26,111,255,0.25);
    color: var(--blue-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Syne', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--white);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--white-60);
    max-width: 480px;
    margin: 0 auto;
}

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

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    background: rgba(26,111,255,0.08);
    border-color: var(--blue-border);
    transform: translateX(4px);
}

.sc-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26,111,255,0.3);
}

.sc-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.sc-text p {
    font-size: 13px;
    color: var(--white-60);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: #ffffff;
}

.stats-inner {
    background: linear-gradient(135deg, #eef3ff 0%, #f0f5ff 100%);
    border: 1px solid #c8d9ff;
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(26,111,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Syne', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-top: -8px;
}

.stat-label {
    font-size: 13px;
    color: #4a5a7a;
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(26,111,255,0.25), transparent);
}

.cta-section {
    margin: 0;
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.cta-section > .container {
    position: relative;
    z-index: 2;
}

.cta-inner {
    background: linear-gradient(135deg, #0d3bbd 0%, #0033a0 50%, #001e80 100%);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(26,111,255,0.3);
}

.cta-wave-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-wave-bg svg {
    width: 100%;
    height: 100%;
}

.cta-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cta-icon-wrap {
    display: inline-flex;
    margin-bottom: 20px;
}

.cta-inner h2 {
    font-family: 'Syne', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-btn-solid {
    background: white;
    color: var(--blue-dark);
    padding: 13px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-contact-row span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

footer {
    background: #040a18;
    border-top: 1px solid var(--white-10);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--white-10);
}

.footer-brand p {
    font-size: 14px;
    color: var(--white-60);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--white-60);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--blue-soft);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--white-60);
}

.footer-tagline {
    color: var(--blue-soft) !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 12px !important;
    text-transform: uppercase;
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--blue-primary);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 4px 20px rgba(26,111,255,0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26,111,255,0.5);
}

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 46px; }
    .stats-inner { padding: 48px 32px; }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-content h1 { font-size: 40px; }

    .hero-visual {
        justify-content: center;
    }

    .device-wrap {
        height: 340px;
        max-width: 380px;
        margin: 0 auto;
    }

    .phone-frame {
        width: 110px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stat-divider {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        padding: 48px 32px;
    }

    .cta-inner h2 { font-size: 32px; }
}

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

    .nav-inner { gap: 0; }

    .hero-content h1 { font-size: 34px; }

    .hero-dots-bg {
        width: 100%;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
    }

    .section-header h2 { font-size: 30px; }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        padding: 36px 24px;
    }

    .stat-number { font-size: 38px; }

    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-contact-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; letter-spacing: -0.5px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        padding: 28px 20px;
        gap: 20px;
    }

    .stat-number { font-size: 32px; }

    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }

    .cta-actions { flex-direction: column; }
    .cta-btn-solid, .cta-btn-outline { width: 100%; }

    .device-wrap {
        height: 280px;
        max-width: 300px;
    }

    .phone-frame {
        width: 90px;
        border-radius: 16px;
    }
}
