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

:root {
    --navy: #071a33;
    --navy-2: #0c294d;
    --blue: #146ef5;
    --blue-dark: #0b55c9;
    --sky: #eaf3ff;
    --text: #172338;
    --muted: #68758a;
    --border: #e2e8f0;
    --white: #ffffff;
    --light: #f7f9fc;
    --shadow: 0 20px 55px rgba(8, 30, 60, .10);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(7, 26, 51, .86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 190px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.main-nav > a {
    color: rgba(255,255,255,.90);
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.main-nav > a:not(.nav-cta):hover {
    color: #fff;
}

.nav-cta {
    background: var(--blue);
    padding: 11px 20px;
    border-radius: 7px;
}

.nav-cta:hover {
    background: #3a88ff;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 40px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: white;
    margin: 6px 0;
    transition: .25s;
}

/* HERO */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(20,110,245,.32), transparent 32%),
        radial-gradient(circle at 30% 80%, rgba(20,110,245,.16), transparent 30%),
        linear-gradient(115deg, #06162d 0%, #0a2342 52%, #071a33 100%);
}

.hero-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(135deg, transparent 48%, #fff 49%, transparent 50%);
    background-size: 42px 42px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    padding-top: 75px;
}

.eyebrow,
.section-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.eyebrow {
    color: #7db2ff;
    display: flex;
    gap: 10px;
    align-items: center;
}

.eyebrow span {
    width: 27px;
    height: 2px;
    background: #7db2ff;
}

.hero h1 {
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 5.3vw, 72px);
    line-height: 1.08;
    letter-spacing: -2.8px;
    max-width: 700px;
}

.hero h1 strong {
    color: #5a9cff;
}

.hero-content > p {
    color: #c1cede;
    font-size: 17px;
    max-width: 590px;
    margin: 25px 0 34px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: .25s;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn span {
    font-size: 19px;
    line-height: 0;
}

.btn-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 25px rgba(20,110,245,.25);
}

.btn-primary:hover {
    background: #3483fa;
    transform: translateY(-2px);
}

.btn-outline {
    color: white;
    border-color: rgba(255,255,255,.25);
}

.btn-outline:hover {
    background: rgba(255,255,255,.08);
}

.hero-trust {
    display: flex;
    gap: 34px;
    margin-top: 55px;
}

.hero-trust div {
    padding-right: 30px;
    border-right: 1px solid rgba(255,255,255,.14);
}

.hero-trust div:last-child {
    border: 0;
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    color: white;
    font-size: 14px;
}

.hero-trust span {
    color: #8293aa;
    font-size: 11px;
    margin-top: 2px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: min(470px, 100%);
    min-height: 350px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
    box-shadow: 0 35px 80px rgba(0,0,0,.25);
    backdrop-filter: blur(14px);
}

.visual-top {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #b9c8db;
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #46d59a;
    box-shadow: 0 0 0 5px rgba(70,213,154,.12);
}

.route-line {
    display: flex;
    align-items: center;
    padding: 50px 0 42px;
}

.route-point {
    width: 100px;
    position: relative;
}

.route-point .point {
    display: block;
    width: 14px;
    height: 14px;
    border: 3px solid #68a5ff;
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 0 0 6px rgba(104,165,255,.1);
}

.route-point small {
    color: #73869f;
    display: block;
    font-size: 9px;
    letter-spacing: 1.4px;
}

.route-point strong {
    color: #fff;
    font-size: 13px;
}

.route-track {
    flex: 1;
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, #68a5ff, rgba(104,165,255,.2));
    margin: 0 7px;
}

.route-track i {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #75a9ef;
    margin: 0 8%;
}

.truck {
    position: absolute;
    left: 45%;
    top: -17px;
    color: #fff;
    font-size: 22px;
    transform: rotate(0deg);
}

.destination {
    text-align: right;
}

.destination .point {
    margin-left: auto;
}

.transport-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.transport-icons div {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 14px 7px;
    text-align: center;
    color: white;
    font-size: 21px;
    background: rgba(255,255,255,.035);
}

.transport-icons span {
    display: block;
    color: #91a1b7;
    font-size: 10px;
    margin-top: 3px;
}

/* GENERAL SECTIONS */
.section {
    padding: 105px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
}

.about-content h2,
.section-heading h2,
.why-grid h2,
.contact-info h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.about-content h2 span,
.section-heading h2 span,
.why-grid h2 span,
.contact-info h2 span {
    color: var(--blue);
}

.about-content .lead {
    font-size: 19px;
    color: #33445c;
    margin: 24px 0 15px;
}

.about-content > p:not(.lead) {
    color: var(--muted);
    max-width: 720px;
}

.about-points {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.about-points > div {
    display: flex;
    gap: 13px;
}

.check {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #eaf3ff;
    border-radius: 50%;
    font-weight: 800;
}

.about-points strong,
.about-points small {
    display: block;
}

.about-points strong {
    font-size: 13px;
}

.about-points small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

/* SERVICES */
.services-section {
    background: var(--light);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.section-heading p {
    color: var(--muted);
    margin-top: 17px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 375px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    transition: .3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-card.featured {
    background: var(--navy);
    border-color: var(--navy);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--sky);
    font-size: 26px;
    margin-bottom: 25px;
}

.featured .service-icon {
    background: rgba(255,255,255,.10);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 11px;
    font-weight: 800;
    color: #a9b5c5;
    letter-spacing: 1px;
}

.service-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    margin-bottom: 13px;
}

.service-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.featured h3 {
    color: white;
}

.featured p {
    color: #aebbd0;
}

.service-card a {
    position: absolute;
    bottom: 30px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.featured a {
    color: #75aaff;
}

/* WHY */
.why-section {
    background: var(--navy);
    color: white;
    padding: 105px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.why-grid p {
    color: #9eafc5;
    font-size: 14px;
    margin: 20px 0 30px;
}

.section-label.light {
    color: #75aaff;
}

.btn-light {
    background: white;
    color: var(--navy);
}

.btn-light:hover {
    transform: translateY(-2px);
    background: #edf4ff;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-card {
    display: flex;
    gap: 16px;
    padding: 23px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.035);
    border-radius: 10px;
}

.why-icon {
    color: #74aaff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.why-card h3 {
    font-size: 15px;
}

.why-card p {
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 70px 0;
    background: #edf4ff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 1.2;
}

.cta-inner p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px;
}

/* CONTACT */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.contact-info > p {
    color: var(--muted);
    font-size: 14px;
    max-width: 480px;
    margin: 20px 0 30px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--sky);
    border-radius: 8px;
    color: var(--blue);
    flex: 0 0 40px;
}

.contact-item small,
.contact-item strong {
    display: block;
}

.contact-item small {
    color: #8793a4;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-item strong {
    font-size: 13px;
    margin-top: 2px;
}

.form-card {
    padding: 34px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dbe2eb;
    background: white;
    border-radius: 7px;
    padding: 13px 14px;
    color: var(--text);
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: .2s;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(20,110,245,.08);
}

.submit-btn {
    width: 100%;
    border: 0;
}

.form-message {
    padding: 12px 14px;
    margin-bottom: 20px;
    border-radius: 7px;
    font-size: 13px;
}

.form-message.success {
    background: #e8f8f0;
    color: #147a4d;
}

.form-message.error {
    background: #fff0f0;
    color: #a52b2b;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

/* FOOTER */
.footer {
    background: #041326;
    color: white;
}

.footer-main {
    padding: 65px 0 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
    gap: 50px;
}

.footer-logo {
    width: 185px;
}

.footer-brand p {
    color: #8292a8;
    font-size: 12px;
    max-width: 270px;
    margin-top: 17px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    font-size: 12px;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a,
.footer-col span {
    color: #8393a8;
    font-size: 11px;
    line-height: 1.8;
}

.footer-col a:hover {
    color: #75aaff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6e7f96;
    font-size: 10px;
}

.footer-bottom a {
    color: #8ea0b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .main-nav {
        gap: 18px;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .about-grid {
        gap: 20px;
    }

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

    .service-card:last-child {
        grid-column: span 2;
    }

    .why-grid {
        gap: 35px;
    }

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

@media (max-width: 700px) {
    .container {
        width: min(100% - 30px, 1160px);
    }

    .site-header {
        background: rgba(7,26,51,.97);
    }

    .nav-wrap {
        min-height: 70px;
    }

    .logo {
        width: 165px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        background: #081c35;
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a {
        padding: 12px 10px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 7px;
    }

    .hero {
        padding: 115px 0 65px;
    }

    .hero-grid {
        padding-top: 30px;
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: -1.8px;
    }

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

    .hero-trust {
        gap: 14px;
        margin-top: 35px;
    }

    .hero-trust div {
        padding-right: 14px;
    }

    .hero-trust strong {
        font-size: 12px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .visual-card {
        padding: 22px;
        min-height: 300px;
    }

    .section {
        padding: 75px 0;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

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

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card {
        min-height: 350px;
    }

    .why-section {
        padding: 75px 0;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-card {
        padding: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 39px;
    }

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

    .route-point {
        width: 78px;
    }

    .route-point strong {
        font-size: 11px;
    }

    .transport-icons div {
        font-size: 17px;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}
