* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f7f9fc;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
}

/* TOP BAR */
.topbar {
    background: #0d1b2a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.logo span {
    color: #00c2ff;
}

.nav-btn {
    background: #00c2ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* HERO */
.hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 50px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text {
    color: #d6e3f0;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    color: #fff;
    font-weight: 600;
}

/* FORM CARD */
.quote-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.quote-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.quote-card p {
    margin-bottom: 20px;
    color: #555;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border: 1px solid #d7dde5;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

button {
    width: 100%;
    background: #0077ff;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #005ed1;
}

/* CONTENT */
.content-section {
    padding: 70px 0;
    background: #fff;
}

.content-section h2,
.seo-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 35px;
    color: #0d1b2a;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.parts-grid div {
    background: #eef5fb;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #dce8f4;
}

.seo-section {
    padding: 70px 0;
    background: #f3f8fd;
}

.seo-section p {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-size: 18px;
    color: #444;
}

/* FOOTER */
footer {
    background: #0d1b2a;
    color: #fff;
    text-align: center;
    padding: 24px 0;
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 20px;
    }

    .nav-btn {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 12px;
}

    .hero {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }

    .quote-card {
        padding: 22px;
    }

    .content-section h2,
    .seo-section h2 {
        font-size: 28px;
    }
}
.sticky-quote-btn {
    position: fixed;
    bottom: 18px;
    right: 18px;
    background: #00c2ff;
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
}

@media (max-width: 600px) {
    .sticky-quote-btn {
        left: 15px;
        right: 15px;
        bottom: 15px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .topbar {
        padding: 12px 0;
    }

    .badge {
        font-size: 13px;
        padding: 7px 12px;
    }

    .quote-card h2 {
        font-size: 26px;
        line-height: 1.2;
    }
}