:root {
    --koever-dark: #0a0a0a;
    --koever-muted: #71717a;
    --koever-line: #e4e4e7;
    --koever-accent: #2563eb;
}

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

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-lang]:not(.active-lang) {
    display: none;
}

.site-body {
    background: #ffffff;
    color: #09090b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    overflow-x: clip;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.nav-inner,
.section-inner,
.footer-inner {
    max-width: 90rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.nav-inner {
    display: flex;
    height: 5rem;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.25rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.nav-links a,
.mobile-menu a {
    transition: color 150ms ease;
}

.nav-links a {
    white-space: nowrap;
}

.nav-links a:hover,
.mobile-menu a:hover {
    color: #bfdbfe;
}

.mobile-toggle {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.75rem;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.mobile-menu:not(.hidden) {
    display: block;
}

.mobile-menu-links {
    display: grid;
    gap: 1rem;
}

.icon-menu {
    width: 1.25rem;
    height: 1.25rem;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-inner {
    display: flex;
    min-height: 82vh;
    align-items: center;
    max-width: 90rem;
    margin-inline: auto;
    padding: 6rem 1.25rem;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-kicker {
    margin-bottom: 1.5rem;
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 64rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-text {
    max-width: 42rem;
    margin-top: 2rem;
    color: #d4d4d8;
    font-size: 1rem;
    line-height: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button-primary {
    background: #ffffff;
    color: #09090b;
}

.button-primary:hover {
    background: #dbeafe;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.button-secondary:hover {
    border-color: #ffffff;
}

.section {
    padding-block: 6rem;
}

section[id] {
    scroll-margin-top: 6rem;
}

.section-grid {
    display: grid;
    gap: 3rem;
}

.section-title {
    margin-top: 1.25rem;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.section-title-flush {
    margin-top: 0;
}

.section-title-wide {
    max-width: 56rem;
}

.section-heading {
    margin-bottom: 3rem;
}

.section-copy {
    margin-top: 2rem;
    color: #71717a;
    line-height: 2rem;
}

.text-stack {
    max-width: 56rem;
    margin-top: 2rem;
    color: #71717a;
    line-height: 2rem;
}

.text-stack p + p {
    margin-top: 1.5rem;
}

.stats-section {
    border-block: 1px solid #e4e4e7;
    background: #fafafa;
    padding-block: 2.5rem;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.stat-label {
    margin-top: 0.5rem;
    color: #71717a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.75rem;
}

.feature-list li {
    border-left: 4px solid #d4d4d8;
    background: #fafafa;
    padding: 1.25rem;
}

.feature-list li:nth-child(-n + 2) {
    border-left-color: #09090b;
}

.feature-list li:last-child {
    border-left-color: #2563eb;
}

.dark-section {
    background: #09090b;
    color: #ffffff;
}

.dark-copy {
    color: #d4d4d8;
    font-size: 1.125rem;
    line-height: 2.25rem;
}

.product-grid {
    display: grid;
    gap: 1.5rem;
}

.product-preview-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-preview-grid img {
    width: 100%;
    height: 11rem;
    border: 1px solid #e4e4e7;
    border-radius: 1.25rem;
    object-fit: contain;
    object-position: center;
    background: #f4f4f5;
    padding: 0.75rem;
}

.document-grid {
    display: grid;
    gap: 1.5rem;
}

.document-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    color: #09090b;
    transition: border-color 150ms ease, transform 150ms ease;
}

.document-card:hover {
    border-color: #a1a1aa;
    transform: translateY(-2px);
}

.document-card-static:hover {
    border-color: #e4e4e7;
    transform: none;
}

.document-card-static .document-thumbnail {
    flex: 1;
    height: auto;
    border-bottom: 0;
}

.document-thumbnail {
    display: flex;
    height: 8.5rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e4e4e7;
    background: #f4f4f5;
}

.document-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.document-thumbnail .certificate-mark {
    width: auto;
    height: 18em;
    padding: 0;
}

.document-thumbnail-pdf {
    position: relative;
    width: 5.5rem;
    height: 7rem;
    border: 1px solid #d4d4d8;
    border-radius: 0.75rem;
    background:
        linear-gradient(135deg, transparent 0 1.4rem, #ffffff 1.45rem),
        #ffffff;
    box-shadow: 0 1.25rem 2rem rgba(15, 23, 42, 0.08);
}

.document-thumbnail-pdf::before {
    content: "";
    position: absolute;
    top: 1.8rem;
    right: 1rem;
    left: 1rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #e4e4e7;
    box-shadow: 0 1.2rem 0 #e4e4e7, 0 2.4rem 0 #e4e4e7;
}

.document-type {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    border-radius: 9999px;
    background: #09090b;
    padding: 0.35rem 0.6rem;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.document-card-body {
    padding: 1.25rem;
}

.document-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.document-text {
    margin-top: 0.75rem;
    color: #71717a;
    font-size: 0.875rem;
    line-height: 1.6rem;
}

.job-panel {
    border-radius: 2rem;
    background: #09090b;
    padding: 2rem;
    color: #ffffff;
}

.job-title {
    max-width: 56rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.job-copy {
    max-width: 48rem;
    margin-top: 1.5rem;
    color: #d4d4d8;
    line-height: 2rem;
}

.job-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    color: #e4e4e7;
}

.job-list li {
    border-left: 4px solid #60a5fa;
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem 1.25rem;
}

.job-contact {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
    color: #d4d4d8;
    line-height: 2rem;
}

.job-contact a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.product-card {
    border: 1px solid #e4e4e7;
    padding: 2rem;
}

.product-card h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.product-card p:last-child {
    margin-top: 1rem;
    color: #71717a;
    line-height: 1.75rem;
}

.light-section {
    border-block: 1px solid #e4e4e7;
    background: #fafafa;
}

.dark-panel {
    border-radius: 2rem;
    background: #09090b;
    padding: 2rem;
    color: #ffffff;
}

.contact-section {
    background: #09090b;
    padding-block: 6rem;
    color: #ffffff;
}

.contact-card-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-directory {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.75rem;
}

.contact-card-featured {
    border-color: rgba(250, 204, 21, 0.65);
    background: rgba(250, 204, 21, 0.08);
}

.contact-card h3 {
    color: #a1a1aa;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.contact-card p {
    margin-top: 1.25rem;
    color: #d4d4d8;
    font-size: 0.875rem;
    line-height: 2rem;
}

.contact-card p + p {
    margin-top: 0.75rem;
}

.contact-card a {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.contact-card a:hover {
    color: #ffffff;
}

.expedition-highlight {
    margin-top: 3rem;
    border: 1px solid rgba(250, 204, 21, 0.7);
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(255, 255, 255, 0.06));
    padding: 2rem;
}

.expedition-highlight p {
    color: #fef08a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.expedition-highlight a {
    display: inline-block;
    margin-top: 0.75rem;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.contact-section .section-copy {
    color: #a1a1aa;
}

.contact-grid,
.map-grid {
    display: grid;
    gap: 3rem;
}

.map-grid {
    margin-top: 5rem;
    gap: 2rem;
}

.site-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    color: #71717a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-shell {
    --hero-image: url("../img/background.jpg");
    position: relative;
    z-index: 100;
    isolation: isolate;
    overflow: hidden;
    background: #09090b;
    color: #ffffff;
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image);
    background-position: center 36%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(1);
    opacity: 0.86;
}

.hero-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.76));
}

@media (max-width: 768px) {
    .hero-shell::before {
        background-size: auto 100%;
        background-position: 52% center;
    }

    .contact-form-heading p:last-child {
        white-space: normal;
    }

    .contact-form .form-consent {
        align-items: flex-start;
    }

    .contact-form .form-consent span {
        white-space: normal;
    }
}

.media-placeholder {
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.28), transparent 28%),
        linear-gradient(135deg, #18181b, #3f3f46);
}

.production-slider {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 2rem;
    background: #18181b;
}

.production-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68));
    pointer-events: none;
}

.production-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 900ms ease;
}

.production-slide.is-active {
    opacity: 1;
}

.production-slider-caption {
    position: absolute;
    inset-inline: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.45rem;
    padding: 1.75rem;
    color: rgba(255, 255, 255, 0.72);
}

.production-slider-caption p {
    max-width: 24rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    line-height: 1.25rem;
    text-transform: uppercase;
}

.driver-notice {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid #facc15;
    border-radius: 1.5rem;
    padding: 2rem;
    color: #d4d4d8;
}

.driver-notice h3 {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.driver-notice p + p {
    margin-top: 1rem;
}

.driver-phone {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: rgba(250, 204, 21, 0.12);
    padding: 1.25rem;
}

.driver-phone span {
    display: block;
    color: #fef08a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.driver-phone a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.driver-phone a:hover {
    color: #fef08a;
}

.map-embed {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.contact-form-shell {
    margin-top: 5rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.92), transparent 18rem),
        radial-gradient(circle at 86% 92%, rgba(219, 234, 254, 0.75), transparent 22rem),
        linear-gradient(135deg, #f8fafc, #eef2f7);
    padding-block: 4rem;
    color: #09090b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-form-heading {
    max-width: 66rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    text-align: center;
}

.contact-form-heading h2 {
    margin-top: 0.75rem;
    color: #06466d;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.contact-form-heading p:last-child {
    margin-top: 1.5rem;
    color: #71717a;
    line-height: 2rem;
    white-space: nowrap;
}

.contact-form {
    max-width: 66rem;
    margin: 3rem auto 0;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.72);
    padding: 1.5rem;
    box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.form-status {
    display: none;
    max-width: 66rem;
    margin: 2rem auto 0;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
    display: block;
}

.form-status.is-success {
    background: #dcfce7;
    color: #166534;
}

.form-status.is-error {
    background: #fee2e2;
    color: #991b1b;
}

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

.contact-form label {
    display: grid;
    gap: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
    padding: 1.05rem 1.15rem;
    color: #09090b;
    outline: none;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.04);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input[type="file"] {
    cursor: pointer;
    color: #475569;
}

.contact-form input[type="file"]::file-selector-button {
    margin-right: 1rem;
    border: 0;
    border-radius: 9999px;
    background: #e2e8f0;
    padding: 0.65rem 1rem;
    color: #0f172a;
    font-weight: 700;
    transition: background-color 150ms ease;
}

.contact-form input[type="file"]::file-selector-button:hover {
    background: #cbd5e1;
}

.contact-form textarea {
    margin-top: 1.25rem;
    min-height: 11rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0f75a8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.13), 0 1rem 2rem rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.contact-form .form-consent {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.6rem;
}

.contact-form .form-consent input {
    flex: 0 0 1rem;
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    accent-color: #06466d;
    padding: 0;
}

.contact-form .form-consent span {
    color: #52525b;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
}

.form-file {
    margin-top: 1.25rem;
}

.form-file span {
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.form-file small {
    margin-top: 0.5rem;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4rem;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-actions button {
    border: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, #06466d, #062b63);
    padding: 1.15rem 3rem;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    box-shadow: 0 1rem 2rem rgba(6, 43, 99, 0.24);
    text-transform: uppercase;
    transition: box-shadow 150ms ease, transform 150ms ease;
}

.form-actions button:hover {
    box-shadow: 0 1.25rem 2.5rem rgba(6, 43, 99, 0.32);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-form .form-consent {
        align-items: flex-start;
    }

    .contact-form .form-consent span {
        white-space: normal;
    }
}

.section-kicker {
    color: var(--koever-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.site-logo {
    display: block;
    height: 2.5rem;
    width: auto;
}

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

.language-dropdown {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.75rem;
}

.language-dropdown > summary {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
    cursor: pointer;
    color: #bfdbfe;
    transition: color 150ms ease;
}

.language-dropdown > summary::-webkit-details-marker {
    display: none;
}

.language-dropdown > summary::marker {
    content: "";
}

.language-dropdown > summary:hover {
    color: #ffffff;
}

.language-dropdown-chevron {
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.15rem;
    opacity: 0.7;
    transition: transform 150ms ease;
}

.language-dropdown[open] .language-dropdown-chevron {
    transform: rotate(180deg);
}

.lang-flag {
    width: 1.35rem;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 60;
    min-width: 11rem;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    background: rgba(15, 15, 18, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.35rem;
    color: #d4d4d8;
    white-space: nowrap;
    transition: color 150ms ease, background-color 150ms ease;
}

.language-dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.language-dropdown-menu a[aria-current="page"] {
    color: #bfdbfe;
    background: rgba(191, 219, 254, 0.12);
}

.language-dropdown-menu a[aria-current="page"] .lang-flag {
    box-shadow: 0 0 0 1px rgba(191, 219, 254, 0.55);
}

.mobile-language-dropdown {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-left: 0;
    padding-top: 1.25rem;
}

.mobile-language-dropdown .language-dropdown-menu {
    position: static;
    margin-top: 0.65rem;
    min-width: 100%;
    box-shadow: none;
}

.footer-legal {
    max-width: 38rem;
    text-transform: none;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.footer-legal p + p {
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .site-logo {
        height: 3rem;
    }

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

    .feature-list li:last-child {
        grid-column: span 2 / span 2;
    }

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

    .product-grid,
    .product-preview-grid,
    .document-grid,
    .contact-card-grid,
    .contact-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .job-panel {
        padding: 3.5rem;
    }

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

    .dark-panel {
        padding: 3.5rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }

    .hero-actions,
    .site-footer {
        flex-direction: row;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.75rem;
        line-height: 1;
    }

    .job-title {
        font-size: 3rem;
    }

    .contact-form-heading h2 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-inner,
    .section-inner,
    .footer-inner,
    .hero-inner {
        padding-inline: 2rem;
    }

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

    .product-preview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-grid.about-grid {
        grid-template-columns: 0.75fr 1.25fr;
    }

    .section-grid.production-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: flex-start;
    }

    .section-grid.text-grid,
    .contact-grid {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .section-grid.services-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .map-grid {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .hero-title {
        font-size: 6rem;
    }
}

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

    .mobile-toggle,
    .mobile-menu,
    .mobile-menu:not(.hidden) {
        display: none;
    }
}
