:root {
    --bg: #070b15;
    --bg-alt: #0d1324;
    --surface: #111a30;
    --text: #f2f5ff;
    --muted: #aeb9d1;
    --accent: #d8b36a;
    --accent-strong: #f4cc7d;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --space-section: clamp(4.5rem, 8vw, 8rem);
    --space-container: min(92vw, 1180px);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(39, 66, 115, 0.28), transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(133, 101, 49, 0.22), transparent 42%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: var(--space-container);
    margin: 0 auto;
}

.section {
    padding: var(--space-section) 0;
}

.eyebrow {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--accent-strong);
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.3rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4.1vw, 3.15rem);
    line-height: 1.16;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

p {
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #17140d;
    font-weight: 600;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(216, 179, 106, 0.35);
}

.button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.button-sm {
    padding: 0.62rem 1.2rem;
    font-size: 0.95rem;
}

.button-ghost {
    border-color: var(--line);
    background: rgba(13, 19, 36, 0.5);
    color: var(--text);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: rgba(7, 11, 21, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mark {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-strong);
    font-weight: 700;
}

.brand-text {
    font-size: 1.14rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-link {
    color: #d6def2;
    font-size: 0.97rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent-strong);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto 5px;
    background: #fff;
}

.nav-toggle span:last-child {
    margin-bottom: 0;
}

.hero {
    min-height: min(100vh, 980px);
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(100deg, rgba(4, 6, 10, 0.9) 22%, rgba(4, 6, 10, 0.62) 60%, rgba(4, 6, 10, 0.34) 100%),
        linear-gradient(180deg, rgba(5, 9, 20, 0.2) 0%, rgba(5, 9, 20, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 7rem 0 6.5rem;
}

.hero-lead {
    max-width: 600px;
    font-size: clamp(1.05rem, 1.8vw, 1.34rem);
    margin-bottom: 1.3rem;
}

.hero-points {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}

.hero-points li {
    color: #dbe3f6;
    position: relative;
    padding-left: 1.3rem;
}

.hero-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.56rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.trust-strip {
    padding-top: 1.8rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-item {
    padding: 2.1rem 1rem;
    text-align: center;
}

.trust-item:not(:last-child) {
    border-right: 1px solid var(--line);
}

.trust-value {
    display: block;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    color: var(--text);
    font-weight: 700;
    line-height: 1;
}

.trust-label {
    display: block;
    margin-top: 0.7rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: #9eabc7;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.1rem 2.4rem;
}

.service-item {
    padding: 1.2rem 0.2rem;
    border-bottom: 1px solid var(--line);
}

.service-icon {
    color: var(--accent);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.fleet-card {
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.02), rgba(17, 26, 48, 0.65));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fleet-media {
    position: relative;
    overflow: hidden;
    height: 255px;
}

.fleet-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.02), rgba(10, 16, 28, 0.6));
}

.fleet-card:hover .fleet-media img {
    transform: scale(1.06);
}

.fleet-copy {
    padding: 1.2rem 1.2rem 1.4rem;
}

.workflow {
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.6), rgba(8, 12, 21, 0));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.step-item {
    padding: 1.4rem 1.2rem;
    border-left: 1px solid var(--line);
}

.step-index {
    color: var(--accent);
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 0.7rem;
}

.cta-block {
    padding-top: 0.8rem;
}

.cta-inner {
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 3.4rem 0;
}

.page-hero {
    padding-bottom: 1rem;
}

.narrow {
    max-width: 760px;
}

.page-content {
    padding-top: 1.2rem;
}

.split-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
}

.services-list {
    display: grid;
    gap: 1.5rem;
}

.services-list article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
}

.contact-form {
    display: grid;
    gap: 0.72rem;
}

.contact-form label {
    font-size: 0.92rem;
    color: #d8e0f1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    padding: 0.85rem 0.95rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(216, 179, 106, 0.8);
}

.form-success {
    color: #d4ffdf;
    margin-top: 0.3rem;
}

.legal-copy h2 {
    margin-top: 2.2rem;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid var(--line);
    padding: 2.8rem 0 1.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 0.7rem;
}

.footer-column p {
    margin-bottom: 0.45rem;
    font-size: 0.96rem;
}

.footer-bottom {
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
}

@media (max-width: 1024px) {
    .fleet-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fleet-grid article:last-child,
    .steps-grid article:last-child {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        right: 4vw;
        top: 78px;
        width: min(92vw, 320px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.95rem;
        padding: 1rem;
        border: 1px solid var(--line);
        background: rgba(7, 11, 21, 0.98);
        border-radius: 14px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .services-grid,
    .split-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .fleet-grid,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .hero-content {
        padding-top: 6rem;
    }

    .hero-actions .button {
        width: 100%;
    }
}
