:root {
    --black: #0C0E12;
    --anthracite: #161920;
    --charcoal: #1E2128;
    --slate: #2A2D36;
    --amber: #D4952B;
    --amber-dark: #B87D22;
    --amber-glow: rgba(212,149,43,0.15);
    --concrete: #F2F1ED;
    --gravel: #E6E4DE;
    --steel: #CBCAC4;
    --text: #1C2026;
    --text-body: #4D5059;
    --text-muted: #7D8089;
    --white: #ffffff;

    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);

    --radius: 0px;
    --radius-lg: 0px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

::selection {
    background: rgba(212,149,43,0.3);
    color: var(--white);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
.nav-link, .btn, .stat-val,
.section-tag, .fleet-label,
.hero-badge {
    font-family: 'Archivo', -apple-system, sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

section { overflow-x: clip; }
section[id] { scroll-margin-top: 80px; }

.grecaptcha-badge { overflow: hidden; }

.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    background: var(--anthracite);
    padding: 8px 0;
    transition: transform 0.3s;
}

.topbar.hidden { transform: translateY(-100%); }

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-family: 'Archivo', sans-serif;
    letter-spacing: 0.03em;
}

.topbar-inner span { color: rgba(255,255,255,0.6); }

.topbar-inner a {
    color: var(--amber);
    font-weight: 700;
    transition: color 0.2s;
}

.topbar-inner a:hover { color: var(--white); }

@media (max-width: 480px) {
    .topbar-inner span { display: none; }
    .topbar-inner a::before { content: 'Ring oss: '; font-weight: 400; }
    .topbar-inner { justify-content: center; }
}

.header {
    position: fixed;
    top: 34px; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
    transition: padding 0.4s, top 0.3s;
}

.topbar.hidden ~ .header { top: 0; }

.header.scrolled {
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s;
}

.header.scrolled .logo img { height: 32px; }

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

.nav-link {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--amber); }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding: 10px 22px;
    background: var(--amber);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
}

.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-phone:hover { background: var(--amber-dark); transform: translateX(2px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 18px; }
.nav-toggle.open span:nth-child(2) { transform: scaleX(0.5); opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 18px; }

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow-x: clip;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12,14,18,0.95) 0%,
        rgba(12,14,18,0.6) 40%,
        rgba(12,14,18,0.25) 70%,
        rgba(12,14,18,0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212,149,43,0.12);
    border-left: 3px solid var(--amber);
    color: var(--amber);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    color: var(--amber);
}

.hero-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.hero-trust {
    display: flex;
    gap: 28px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trust-item svg {
    width: 16px; height: 16px;
    color: var(--amber);
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.btn-amber:hover {
    background: var(--amber-dark);
    transform: translateX(4px);
    box-shadow: -4px 0 24px rgba(212,149,43,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    transform: translateX(4px);
}

.btn-dark {
    background: var(--anthracite);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal);
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.numbers {
    background: var(--anthracite);
    padding: 48px 0;
    border-top: 3px solid var(--amber);
    overflow-x: clip;
}

.numbers-inner {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.stat-block { text-align: center; }

.stat-val {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-desc {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-tag {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-heading {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.0;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.capabilities {
    padding: 100px 0 100px;
    background: var(--concrete);
    overflow-x: clip;
}

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

.cap-card {
    background: var(--white);
    overflow: hidden;
}

.cap-card-img {
    overflow: hidden;
    height: 220px;
}

.cap-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.cap-card:hover .cap-card-img img { transform: scale(1.04); }

.cap-card-body {
    padding: 28px 28px 32px;
}

.cap-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--amber);
    display: inline-block;
}

.cap-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.about {
    padding: 100px 0 100px;
    background: var(--white);
    overflow-x: clip;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-tag { margin-bottom: 0.5rem; }

.about-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.about-checks {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.about-checks li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 2.2;
}

.about-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--amber);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-images img:first-child {
    grid-column: 1 / -1;
    height: 280px;
    object-fit: cover;
}

.gallery {
    padding: 80px 0 100px;
    background: var(--anthracite);
    overflow-x: clip;
}

.gallery .section-tag { color: var(--amber); }
.gallery .section-heading { color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

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

.fleet {
    background: var(--black);
    padding: 80px 0;
    overflow-x: clip;
    position: relative;
}

.fleet .section-tag { color: var(--amber); }
.fleet .section-heading { color: var(--white); margin-bottom: 0.75rem; }

.fleet-header {
    padding: 0 32px;
    margin-bottom: 2.5rem;
}

.fleet-scroll-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-family: 'Archivo', sans-serif;
    letter-spacing: 0.03em;
}

.fleet-scroll-hint svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 4px;
}

.fleet-wrap {
    position: relative;
}

.fleet-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--black), transparent);
    pointer-events: none;
    z-index: 2;
}

.fleet-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 32px 20px;
    scrollbar-width: none;
}

.fleet-track::-webkit-scrollbar { display: none; }

.fleet-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.fleet-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s;
}

.fleet-card:hover img { transform: translateY(-6px); filter: brightness(1.1); }

.fleet-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(12,14,18,0.9), transparent);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pitch {
    position: relative;
    padding: 120px 0;
    overflow-x: clip;
}

.pitch-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pitch-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.pitch-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12,14,18,0.96), rgba(22,25,32,0.9));
}

.pitch-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.pitch-content h2 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pitch-content p {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.pitch-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.reach {
    padding: 80px 0 100px;
    background: var(--charcoal);
    overflow-x: clip;
}

.reach-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
    align-items: start;
}

.reach-form { order: -1; }

.reach-info h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.reach-info > p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.reach-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--amber);
    margin-bottom: 10px;
    transition: background 0.2s, transform 0.2s;
}

.reach-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateX(4px);
}

.reach-card svg {
    width: 20px; height: 20px;
    color: var(--amber);
    flex-shrink: 0;
}

.reach-card-text {
    display: flex;
    flex-direction: column;
}

.reach-card-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Archivo', sans-serif;
}

.reach-card-val {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-top: 1px;
}

.reach-form {
    background: var(--slate);
    padding: 40px 36px;
    border: 1px solid rgba(255,255,255,0.05);
}

.reach-form h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.reach-form > p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.75rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 0;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--white);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--amber);
}

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

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.select-wrap select {
    width: 100%;
    appearance: none;
    padding-right: 28px;
    cursor: pointer;
}

.select-wrap select option {
    background: var(--anthracite);
    color: var(--white);
}

#contact-form .btn-submit {
    width: 100%;
    justify-content: space-between;
    padding: 16px 24px;
    margin-top: 18px;
}

.footer {
    background: var(--black);
    color: rgba(255,255,255,0.5);
    overflow-x: clip;
}

.footer-edge {
    height: 3px;
    background: var(--amber);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 56px 0 40px;
}

.footer-brand img {
    height: 55px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    max-width: 260px;
}

.footer-col h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--amber); }

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    padding: 4px 0;
}

.footer-contact-row svg {
    width: 14px; height: 14px;
    color: rgba(212,149,43,0.5);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--amber); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 92vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--amber);
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 12px;
    transition: background 0.2s;
}

.lightbox-close:hover { background: var(--amber-dark); }
.lightbox-close svg { width: 24px; height: 24px; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,149,43,0.9);
    border: none;
    color: var(--white);
    cursor: pointer;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev:hover, .lightbox-next:hover { background: var(--amber-dark); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }

:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .header { top: 34px; }
    .container, .container-wide { padding: 0 20px; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(0,0,0,0.06);
        gap: 2px;
    }

    .nav.open { display: flex; }

    .nav-link {
        padding: 14px 16px;
        width: 100%;
        font-size: 13px;
    }

    .nav-phone {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    .nav-toggle { display: flex; }

    .hero { padding-bottom: 40px; }
    .hero-sub { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 10px; margin-top: 2rem; padding-top: 1.5rem; }

    .numbers-inner { gap: 2.5rem; flex-wrap: wrap; justify-content: center; }

    .capabilities { padding: 60px 0; }
    .cap-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cap-card-img { height: 180px; }
    .cap-card-body { padding: 20px 20px 24px; }

    .about { padding: 60px 0; }
    .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-images img:first-child { height: 220px; }
    .about-images img { height: 200px; }

    .gallery { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }

    .fleet { padding: 60px 0; }
    .fleet-header { padding: 0 20px; }
    .fleet-track { padding: 0 20px 16px; }
    .fleet-card { flex: 0 0 280px; }

    .pitch { padding: 70px 0; }
    .pitch-btns { flex-direction: column; }
    .pitch-btns .btn { width: 100%; justify-content: center; }

    .reach { padding: 60px 0; }
    .reach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .reach-form { order: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .numbers-inner { flex-direction: column; gap: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .cap-grid { grid-template-columns: 1fr; gap: 12px; }
    .form-grid { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr; }
    .about-images img:first-child { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

@media print {
    .header, .nav-toggle, .reach-form, .hero-bg, .pitch-bg, .lightbox, .fleet { display: none; }
    .hero { min-height: auto; padding: 2rem 0; background: var(--white); }
    .hero h1 { color: var(--text); }
    .hero h1 span { color: var(--amber); }
}
