﻿/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    height: var(--nav-h);
}
.nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-right: auto;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
.nav-logo-sub { font-size: 11px; font-weight: 500; color: var(--gray-400); display: block; line-height: 1; }
.nav-logo-name { line-height: 1.1; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 24px;
}
.nav-links a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all .2s;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.nav-mobile a:hover { background: var(--gray-100); color: var(--primary); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }


/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #0A1628 0%, #0F2447 45%, #1A3A6B 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,108,244,.25) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.3); }
}
.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}
.hero h1 span {
    background: linear-gradient(135deg, #60A5FA, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}
.hero-screen {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 80px rgba(26,108,244,.3);
}
.hero-screen-bar {
    background: rgba(255,255,255,.08);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-screen-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.hero-screen-url {
    flex: 1;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    height: 24px;
    margin: 0 8px;
}
.hero-screenshot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(26,108,244,.15) 0%, rgba(129,140,248,.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,.4);
    font-size: 14px;
    min-height: 280px;
}
.hero-screenshot-placeholder svg { width: 48px; height: 48px; opacity: .4; }
.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
}
.hero-floating-card svg { flex-shrink: 0; }
.hero-card-1 { bottom: -16px; left: -24px; }
.hero-card-2 { top: -16px; right: -24px; }
.hero-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }


/* --- Trusted By Bar --- */
.trusted-bar {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}
.trusted-bar-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.trusted-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.trusted-items {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}
.trusted-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
}
.trusted-item svg { width: 20px; height: 20px; color: var(--gray-400); }


/* --- CTA Section --- */
.cta-section {
    background: var(--primary-light);
    text-align: center;
    padding: 96px 0;
}
.cta-section .section-title { color: var(--dark); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-note svg { width: 14px; height: 14px; color: var(--green); }


/* --- Page Hero (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, #0A1628 0%, #0F2447 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,108,244,.2) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    max-width: 600px;
    line-height: 1.65;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .15s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .4; }


/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand { }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 34px; height: 34px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
}
.footer-made {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.05);
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: color .15s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,.3);
}
.footer-lang { display: flex; align-items: center; gap: 8px; }
.footer-lang-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: rgba(255,255,255,.35); font-weight: 600; transition: color .15s; }
.footer-lang-link svg { border-radius: 2px; opacity: .5; transition: opacity .15s; flex-shrink: 0; }
.footer-lang-link:hover { color: rgba(255,255,255,.7); }
.footer-lang-link:hover svg { opacity: .8; }
.footer-lang-link.active { color: var(--primary); }
.footer-lang-link.active svg { opacity: 1; }
.footer-lang-sep { color: rgba(255,255,255,.2); font-size: 12px; }
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    transition: color .15s;
}
.footer-legal a:hover { color: rgba(255,255,255,.65); }


/* --- Page title section --- */
.inner-hero-accent {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}

/* --- Divider --- */
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0;
}

