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

:root {
    --primary-blue: #0052CC;
    --dark-navy: #0f1419;
    --light-blue: #1e88e5;
    --accent-blue: #00a8ff;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* ========== NAVBAR ========== */
.navbar {
    background: var(--dark-navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    flex: 200px 0 0;
}

.logo-svg {
    max-width: 250px;
    height: auto;
    display: block;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0052CC 0%, #00a8ff 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 28px;
    color: white;
}

.logo-text {
    color: white;
}

.logo-main {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 11px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    margin: 0 40px;
    justify-content: right;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn {
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 0.5px;
}

a.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-quote {
    background: var(--primary-blue);
    color: white;
    padding: 12px 20px;
    font-size: 12px;
    white-space: nowrap;
}

.nav-quote-item {
    display: none;
}

.btn-quote:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.4);
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 14px 32px;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 14px;
}

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

.btn-large {
    background: var(--primary-blue);
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
}

.btn-large:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-icon {
    margin-right: 8px;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2332 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text h1 .highlight {
    color: var(--accent-blue);
}

.hero-text > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 255, 0.2);
    border-radius: 50%;
}

.feature-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 200px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== INFO STRIP ========== */
.info-strip {
    background: linear-gradient(90deg, #0052CC 0%, #1e88e5 100%);
    color: white;
    padding: 20px 0;
}

.info-items {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.info-icon {
    font-size: 20px;
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    background: white;
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.section-subtitle--light {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.service-image img {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--light-blue);
    margin-right: 5px;
}

/* ========== CTA SECTION ========== */
.cta {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2332 100%);
    color: white;
    padding: 60px 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-icon {
    font-size: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(0, 168, 255, 0.2);
    border-radius: 50%;
}

.cta-left h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-left p {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-top: 5px;
    letter-spacing: -0.5px;
}

.cta-right p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-footer {
    font-size: 12px;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a0e13;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-section p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    a.btn-quote--desktop {
        display: none;
    }

    .nav-quote-item {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .shield-placeholder {
        aspect-ratio: 1;
    }

    .info-items {
        flex-direction: column;
        gap: 20px;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .services h2 {
        font-size: 28px;
    }

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

    .benefit-card {
        padding: 25px 15px;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        margin: 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .services h2 {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .cta-left h3 {
        font-size: 22px;
    }

    .cta-left p {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
