.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}
.navbar-logo img {
    height: 40px;
    width: auto;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}
.nav-links .nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px;
    font-weight: 600;
}
.nav-links .nav-cta:hover {
    background: var(--primary-light);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(
        160deg,
        #0c1427 0%,
        #1a2744 35%,
        var(--primary) 65%,
        #0c1427 100%
    );
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 30% 50%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(37, 99, 235, 0.06) 0%,
            transparent 50%
        );
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #93c5fd;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
}
.hero h1 span {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-mockup {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius);
    overflow: hidden;
}
.hero-mockup img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    animation: floatBadge 6s ease-in-out infinite;
}
.hero-badge.b1 {
    top: 0;
    right: -10px;
    animation-delay: 0s;
}
.hero-badge.b2 {
    bottom: 40px;
    left: -20px;
    animation-delay: -2s;
}
.hero-badge svg {
    width: 18px;
    height: 18px;
    color: #34d399;
    flex-shrink: 0;
}
@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}
.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}
.cta-section {
    background: linear-gradient(160deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}
.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 1.0625rem;
}
.cta-section .btn-white {
    padding: 16px 40px;
    font-size: 1rem;
}
footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}
footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}
footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}
footer p {
    font-size: 0.875rem;
    line-height: 1.7;
}
footer ul {
    list-style: none;
}
footer ul li {
    margin-bottom: 10px;
}
footer ul a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
footer ul a:hover {
    color: #fff;
}
footer .copyright {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}
footer .legal-links {
    display: inline-flex;
    gap: 16px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
footer .legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    transition: color 0.2s;
}
footer .legal-links a:hover {
    color: #fff;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}
.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.social-links svg {
    width: 20px;
    height: 20px;
}
