@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../font/PlusJakartaSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../font/PlusJakartaSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../font/PlusJakartaSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../font/PlusJakartaSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../font/PlusJakartaSans-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --background: #ffffff;
    --foreground: #061c31;
    --surface: oklch(97.5% .008 240);
    --card: #ffffff;
    --primary: #0074d4;
    --primary-dark: #002f72;
    --primary-deep: #001c45;
    --primary-rgb: 0, 116, 212;
    --primary-dark-rgb: 0, 47, 114;
    --primary-soft: rgba(var(--primary-rgb), 0.1);
    --muted: #64748b;
    --border: #dde4ee;
    --danger: #dc2626;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1280px;
    --header-height: 67px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.site {
    min-height: 100vh;
    background: var(--background);
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-xl {
    width: 28px;
    height: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    max-width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.45rem;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn-wide {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    min-width: 0;
}

.brand-mark,
.footer-mark {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
}

.brand-mark {
    background: var(--primary);
    color: #ffffff;
}

.brand-text {
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 1.18rem;
    line-height: 1;
    white-space: nowrap;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    color: rgba(30, 43, 63, 0.8);
    font-size: 0.9rem;
    font-weight: 650;
    transition: color 180ms ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.btn-call {
    display: none;
    padding: 0.72rem 1.1rem;
    box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.18);
}

.icon-button {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--foreground);
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.phone-mobile {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.menu-toggle {
    border-radius: 0.55rem;
}

.menu-toggle .menu-close,
.menu-toggle.is-open .menu-open {
    display: none;
}

.menu-toggle.is-open .menu-close {
    display: block;
}

.mobile-nav {
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding-block: 0.75rem;
}

.mobile-nav a {
    padding: 0.68rem 0;
    color: rgba(30, 43, 63, 0.82);
    font-weight: 650;
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--primary-dark);
    color: #ffffff;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    z-index: -2;
    opacity: 1;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(0deg, rgba(0, 18, 48, 0.42), rgba(0, 18, 48, 0.18)),
        linear-gradient(90deg, rgba(var(--primary-dark-rgb), 0.9) 0%, rgba(var(--primary-dark-rgb), 0.78) 46%, rgba(var(--primary-dark-rgb), 0.52) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    padding-block: 5rem;
}

.hero-copy {
    max-width: 44rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-eyebrow {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.hero-eyebrow span {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: #ffffff;
}

.hero h1,
.section h2 {
    margin: 0;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1 {
    margin-top: 1.25rem;
    max-width: 42rem;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1.06;
    overflow-wrap: anywhere;
}

.hero p {
    max-width: 39rem;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 28rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stats strong {
    display: block;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.stats span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.25;
}

.section {
    padding-block: 5rem;
}

.section-tight-top {
    padding-top: 0;
}

.section-surface {
    background: var(--surface);
}

.section-dark {
    background: var(--primary-dark);
    color: #ffffff;
}

.section-label {
    display: block;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.72);
}

.section h2 {
    margin-top: 0.75rem;
    color: var(--primary-dark);
    font-size: 2.15rem;
    line-height: 1.14;
}

.section-dark h2 {
    color: #ffffff;
}

.section-intro {
    max-width: 43rem;
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.section-intro-wide {
    max-width: 49rem;
}

.story-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.story-text {
    display: grid;
    gap: 1.15rem;
    color: rgba(30, 43, 63, 0.86);
    font-size: 1.04rem;
    line-height: 1.72;
}

.story-text p {
    margin: 0;
}

.check-list {
    display: grid;
    gap: 0.75rem;
    align-self: start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    padding: 1rem;
}

.check-list span,
.contact-list span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: var(--primary-soft);
    color: var(--primary);
}

.contact-list .icon {
    width: 16px;
    height: 16px;
}

.check-list strong {
    padding-top: 0.2rem;
    font-weight: 750;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    padding: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.gallery-item span {
    position: absolute;
    inset: 0;
    background: rgba(16, 37, 90, 0);
    transition: background-color 220ms ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
    background: rgba(16, 37, 90, 0.22);
}

.gallery-item:focus-visible,
.icon-button:focus-visible,
.btn:focus-visible,
.lightbox button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(var(--primary-rgb), 0.28);
    outline-offset: 3px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.86);
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.lightbox-figure {
    margin: 0;
    max-width: min(92vw, 1120px);
    max-height: 88vh;
}

.lightbox-figure img {
    max-width: min(92vw, 1120px);
    max-height: 88vh;
    border-radius: var(--radius);
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(12px);
    transition: background-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
}

.lightbox-arrow {
    top: 50%;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 0.5rem;
}

.lightbox-next {
    right: 0.5rem;
}

.card-grid,
.fleet-grid,
.steps-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.feature-card,
.advantage-card,
.vehicle-card,
.contact-card,
.contact-form {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}

.feature-card,
.advantage-card {
    padding: 1.5rem;
}

.feature-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.38);
    box-shadow: var(--shadow-soft);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    background: var(--primary-soft);
    color: var(--primary);
    transition: background-color 180ms ease, color 180ms ease;
}

.feature-card:hover .card-icon,
.card-icon-solid {
    background: var(--primary);
    color: #ffffff;
}

.feature-card h3,
.advantage-card h3,
.vehicle-content h3,
.rental-card h3,
.contact-card h3 {
    margin: 1.25rem 0 0;
    color: var(--foreground);
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: 0;
}

.feature-card p,
.advantage-card p,
.vehicle-content p,
.rental-card p,
.step-card p {
    margin: 0.6rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.vehicle-card {
    overflow: hidden;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.vehicle-image {
    position: relative;
    height: 12rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.02));
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-image span {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    padding: 0.32rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 850;
    box-shadow: 0 9px 18px rgba(var(--primary-rgb), 0.28);
}

.vehicle-content {
    border-top: 1px solid var(--border);
    padding: 1.5rem;
}

.rental-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    background: rgba(var(--primary-rgb), 0.06);
    padding: 1.5rem;
}

.rental-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rental-card h3 {
    margin-top: 1rem;
}

.price-panel {
    width: 100%;
    margin-top: 1rem;
    border-radius: 0.9rem;
    background: #ffffff;
    padding: 1rem;
}

.price-panel span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-panel strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--primary-dark);
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.2;
}

.price-panel small {
    color: var(--muted);
    font-size: 0.95rem;
}

.rental-card .btn {
    margin-top: 1.25rem;
}

.step-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.step-card span {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    background: #ffffff;
    color: var(--primary-dark);
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-weight: 900;
}

.step-card h3 {
    margin: 1.25rem 0 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
}

.step-card p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-card,
.contact-form {
    padding: 1.5rem;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-list p {
    min-width: 0;
    margin: 0.25rem 0 0;
}

.contact-list a {
    color: var(--primary);
    font-weight: 800;
    word-break: break-word;
}

.contact-list a:hover {
    text-decoration: underline;
}

.billing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.billing dt,
.billing dd {
    margin: 0;
}

.billing dt {
    color: var(--muted);
    font-size: 0.9rem;
}

.billing dd {
    font-weight: 800;
}

.contact-card .btn {
    margin-top: 1.5rem;
}

.form-message {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-size: 0.92rem;
}

.form-message-success {
    border: 1px solid rgba(var(--primary-rgb), 0.28);
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-dark);
}

.form-message-error {
    border: 1px solid rgba(220, 38, 38, 0.28);
    background: rgba(220, 38, 38, 0.08);
    color: #991b1b;
}

.spam-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--foreground);
    font-size: 0.9rem;
    font-weight: 700;
}

.form-field label span,
.form-field small {
    color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    background: #ffffff;
    color: var(--foreground);
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 7rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.14);
}

.form-field [aria-invalid="true"] {
    border-color: var(--danger);
}

.form-field small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
}

.form-submit {
    width: 100%;
    margin-top: 1.5rem;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-block: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-mark {
    background: #ffffff;
    color: var(--primary-dark);
}

.footer-brand p {
    max-width: 28rem;
    margin: 1rem 0 0;
    font-size: 0.9rem;
    line-height: 1.65;
}

.site-footer h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-subtitle {
    margin-top: 1.5rem !important;
}

.footer-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
}

.footer-list-compact {
    gap: 0.3rem;
}

.footer-list a {
    word-break: break-word;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 1.2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

@media (min-width: 520px) {

    .hero-actions,
    .section-actions {
        flex-direction: row;
        align-items: center;
    }

    .form-submit {
        width: auto;
    }
}

@media (max-width: 519px) {

    .hero-actions .btn,
    .section-actions .btn {
        width: 100%;
    }

    .btn {
        min-width: 0;
        white-space: normal;
    }
}

@media (min-width: 640px) {
    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .btn-call {
        display: inline-flex;
    }

    .phone-mobile {
        display: none;
    }

    .hero-content {
        padding-block: 7rem;
    }

    .hero h1 {
        font-size: 3.35rem;
        overflow-wrap: normal;
    }

    .hero p {
        font-size: 1.08rem;
    }

    .stats strong {
        font-size: 2rem;
    }

    .stats span {
        font-size: 0.9rem;
    }

    .section {
        padding-block: 6rem;
    }

    .section-tight-top {
        padding-top: 0;
    }

    .section h2 {
        font-size: 2.55rem;
    }

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

    .card-grid-three,
    .fleet-grid,
    .card-grid-four,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rental-card {
        grid-column: span 2;
    }

    .contact-card,
    .contact-form {
        padding: 2rem;
    }

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

    .form-field-wide {
        grid-column: span 2;
    }

    .lightbox {
        padding: 2rem;
    }

    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
    }

    .lightbox-arrow {
        width: 3.5rem;
        height: 3.5rem;
    }

    .lightbox-prev {
        left: 1.5rem;
    }

    .lightbox-next {
        right: 1.5rem;
    }
}

@media (min-width: 900px) {
    .story-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .contact-grid {
        grid-template-columns: minmax(18rem, 1fr) minmax(0, 1.4fr);
    }

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

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .hero-content {
        padding-block: 9rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

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

    .card-grid-three,
    .fleet-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid-four,
    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .rental-card {
        grid-column: auto;
    }
}

@media (max-width: 380px) {
    .brand-text {
        font-size: 0.95rem;
    }

    .brand-mark {
        width: 2.25rem;
        height: 2.25rem;
    }

    .hero h1 {
        font-size: 2.05rem;
    }

    .stats {
        gap: 0.65rem;
    }
}