@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --blue: #1268b1;
    --blue-dark: #004a87;
    --accent: #f45e2c;
    --accent-dark: #d64d20;
    --black: #1a1a1a;
    --gray: #64748b;
    --white: #ffffff;
    --soft: #f8fafc;
    --border: #f1f5f9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: scale(1.02);
}

.brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

nav a:hover {
    color: var(--blue);
}

nav a:hover::after {
    width: 100%;
}

footer {
    padding: 48px 0;
    background: var(--soft);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.cta-nav {
    background: #f45e2c !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(244, 94, 44, 0.2);
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #d64d20 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 94, 44, 0.3);
}

.cta-nav::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    transition: transform 0.2s ease;
}

.mobile-toggle:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 90;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 24px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .cta-nav {
        margin-top: 20px;
        font-size: 20px !important;
        padding: 16px 40px !important;
    }
}