:root {
    --navy: #0F1B2D;
    --navy-light: #162338;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --blue-bright: #60A5FA;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-100: #E8ECF1;
    --gray-200: #D1D8E2;
    --gray-400: #8896A7;
    --gray-600: #5A6978;
    --gray-800: #2D3A4A;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 7rem 4%;
}

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-icon {
    height: 38px;
}

.nav-logo-icon img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--navy);
}

.nav-phone {
    color: var(--blue) !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 0.95rem;
}

.btn-primary,
.btn-dark {
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
}

.btn-primary:hover,
.btn-dark:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.3);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--gray-200);
    font-weight: 500;
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(15,27,45,0.03);
}

footer {
    background: #0A1422;
    padding: 3.5rem 4% 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-phone {
    color: var(--blue-bright);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-email {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-email:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy,
.footer-links a {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .footer-right {
        align-items: flex-start;
    }
}
