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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111a2e;
    background: #f7f9fc;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================= HEADER ================= */

.header {
    height: 88px;
    background: #080e1d;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #111b31;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.logo-main {
    display: block;

    font-size: 27px;
    font-weight: 900;

    line-height: 23px;
}

.logo-sub {
    display: block;

    color: #ffc02f;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 2px;
}

.navigation {
    display: flex;
    gap: 35px;
}

.navigation a {
    color: #c8cfdd;
    font-size: 15px;
    font-weight: 600;
}

.navigation a:hover {
    color: #ffc02f;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    padding: 12px 18px;

    border: 1px solid #3b4353;

    border-radius: 10px;

    color: #e7ebf2;
}

.yellow-btn {
    background: #ffbd2e;
    color: #10192d;

    padding: 15px 25px;

    border-radius: 10px;

    font-weight: 800;
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 700px;

    background:
        linear-gradient(
            rgba(8, 14, 29, 0.90),
            rgba(10, 18, 40, 0.92)
        ),
        url("truck.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    display: flex;
    align-items: center;
}

.hero-content {
    width: 1100px;
    max-width: 90%;

    margin: auto;

    text-align: center;

    position: relative;
    z-index: 2;
}

.small-badge {
    display: inline-block;

    border: 1px solid #ba8421;

    background: rgba(18, 32, 62, 0.8);

    color: #ffc02f;

    padding: 9px 24px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: 62px;
    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: #f0f3fa;
}

.hero p {
    max-width: 720px;

    margin: auto;

    color: #bfc9dc;

    font-size: 19px;
}


/* LOOKUP BOX */

.lookup-box {
    max-width: 900px;

    margin: 45px auto 0;

    background: #0d162a;

    border: 1px solid #33405a;

    border-radius: 18px;

    padding: 22px;
}

.lookup-title {
    text-align: left;

    color: #9da8bc;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 9px;
}

.lookup-row {
    display: flex;
    gap: 10px;
}

.lookup-row input {
    flex: 1;

    height: 58px;

    background: #151f34;

    border: 1px solid #43516b;

    border-radius: 9px;

    padding: 0 20px;

    color: white;

    font-size: 16px;

    outline: none;
}

.lookup-row input:focus {
    border-color: #ffc02f;
}

.lookup-row button {
    height: 58px;

    padding: 0 30px;

    background: #ffb51e;

    border: none;

    border-radius: 9px;

    color: #10192d;

    font-size: 15px;

    font-weight: 900;

    cursor: pointer;
}

.lookup-row button:hover {
    background: #ffca4d;
}

.lookup-row button span {
    margin-left: 10px;

    font-size: 20px;
}

.lookup-status {
    margin-top: 13px;

    color: #3dd7a2;

    font-size: 13px;

    font-weight: 700;
}


/* HERO FEATURES */

.hero-features {
    display: flex;

    justify-content: center;

    gap: 80px;

    margin-top: 45px;
}

.hero-features div {
    display: flex;

    flex-direction: column;
}

.hero-features strong {
    font-size: 19px;

    color: white;
}

.hero-features span {
    color: #8f9bb0;

    font-size: 13px;
}


/* ================= GENERAL ================= */

.services,
.how,
.pricing,
.faq {
    padding: 100px 6%;
}

.section-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 55px;
}

.section-heading > span {
    color: #e99b00;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 42px;

    line-height: 1.15;

    margin: 10px 0 15px;
}

.section-heading p {
    color: #69778e;

    font-size: 17px;
}


/* ================= SERVICES ================= */

.services {
    background: #f7f9fc;
}

.service-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    background: white;

    padding: 35px;

    border: 1px solid #e1e7ef;

    border-radius: 15px;

    box-shadow: 0 8px 30px rgba(16, 32, 56, 0.05);
}

.active-card {
    border-top: 4px solid #ffb51e;
}

.card-icon {
    width: 55px;
    height: 55px;

    border-radius: 12px;

    background: #fff1cc;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;

    margin-bottom: 22px;
}

.card-icon.blue {
    background: #e5efff;
}

.card-icon.green {
    background: #ddf8ed;
}

.service-card h3 {
    font-size: 22px;

    margin-bottom: 12px;
}

.service-card p {
    color: #6a7890;

    margin-bottom: 25px;
}

.service-card a {
    color: #1764d7;

    font-weight: 800;
}


/* ================= HOW ================= */

.how {
    background: white;
}

.steps {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.step {
    padding: 25px;

    border-left: 1px solid #dce3ed;
}

.number {
    width: 52px;
    height: 52px;

    background: #101a31;

    color: #ffc02f;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;

    margin-bottom: 25px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #718097;

    font-size: 15px;
}


/* ================= PRICING ================= */

.pricing {
    background: #f5f7fb;
}

.pricing-card {
    max-width: 1100px;

    margin: auto;

    background: white;

    border-radius: 20px;

    border: 1px solid #dfe6f0;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    overflow: hidden;
}

.pricing-left {
    padding: 50px;
}

.price-badge {
    display: inline-block;

    padding: 7px 14px;

    background: #fff0d2;

    color: #bb6c00;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 900;
}

.pricing-left h2 {
    font-size: 35px;

    margin: 18px 0;
}

.pricing-left p {
    color: #6c7890;

    margin-bottom: 25px;
}

.pricing-left ul {
    list-style: none;

    line-height: 2;

    color: #39465b;

    margin-bottom: 25px;
}

.main-btn {
    background: #ffb51e;

    border: none;

    padding: 16px 25px;

    border-radius: 9px;

    font-size: 15px;

    font-weight: 900;

    cursor: pointer;
}

.price-table {
    background: #0c1529;

    padding: 45px;

    color: white;
}

.price-table h3 {
    margin-bottom: 20px;
}

.price-row {
    display: flex;

    justify-content: space-between;

    padding: 17px 0;

    border-bottom: 1px solid #27334a;

    color: #c8d0de;
}

.price-row strong {
    color: #ffc02f;
}


/* ================= TRUST ================= */

.trust {
    background: #0b1326;

    color: white;

    padding: 70px 6%;
}

.trust-content {
    max-width: 1100px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;
}

.trust-icon {
    font-size: 35px;

    margin-bottom: 10px;
}

.trust-content h2 {
    margin-bottom: 10px;
}

.trust-content p {
    color: #9ba8bd;

    max-width: 550px;
}

.trust-items {
    display: flex;

    gap: 35px;
}

.trust-items div {
    display: flex;

    flex-direction: column;

    text-align: center;
}

.trust-items strong {
    color: #ffc02f;

    font-size: 20px;
}

.trust-items span {
    color: #8996aa;

    font-size: 12px;
}


/* ================= FAQ ================= */

.faq {
    background: white;
}

.faq-grid {
    max-width: 950px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.faq-item {
    padding: 28px;

    border: 1px solid #e1e6ee;

    border-radius: 12px;
}

.faq-item h3 {
    margin-bottom: 10px;
}

.faq-item p {
    color: #718096;

    font-size: 15px;
}


/* ================= FOOTER ================= */

footer {
    background: #080e1d;

    color: white;

    padding: 65px 6% 25px;
}

.footer-main {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-brand p {
    max-width: 350px;

    margin-top: 20px;

    color: #8997ae;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-column h4 {
    color: #ffc02f;

    font-size: 13px;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.footer-column a {
    color: #98a4b9;

    font-size: 14px;
}

.footer-bottom {
    max-width: 1200px;

    margin: 50px auto 0;

    padding-top: 25px;

    border-top: 1px solid #202a3e;

    text-align: center;

    color: #66748a;

    font-size: 12px;
}

.footer-bottom p:last-child {
    margin-top: 8px;
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }

    .phone {
        display: none;
    }

    .hero h1 {
        font-size: 43px;
    }

    .service-grid,
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .trust-content {
        flex-direction: column;

        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .header {
        padding: 0 20px;
    }

    .yellow-btn {
        padding: 11px 15px;

        font-size: 13px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero p {
        font-size: 16px;
    }

    .lookup-row {
        flex-direction: column;
    }

    .lookup-row button {
        width: 100%;
    }

    .hero-features {
        gap: 25px;
    }

    .service-grid,
    .steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .how,
    .pricing,
    .faq {
        padding: 70px 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .pricing-left {
        padding: 30px;
    }

    .price-table {
        padding: 30px;
    }

    .trust-items {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

}