:root {
    --bg: #f5f5f5;
    --white: #ffffff;
    --black: #0b0b0d;
    --text: #151515;
    --muted: #7b7b7b;
    --line: #e5e5e5;
    --blue: #111111;
    --blue-soft: #1d1d1d;
    --container: 1240px;
    --radius: 20px;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

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

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

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes line-grow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes hero-zoom {
    from {
        background-size: 118%;
    }
    to {
        background-size: 108%;
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease both;
}

.animate-fade-up {
    animation: fade-up 0.86s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.animate-line-grow {
    animation: line-grow 1.15s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 120;
}

.scroll-progress__bar {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blue);
    transition: width 0.12s ease-out;
}

.site-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 110;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    padding: 8px 10px 8px 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.brand-text {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.header-nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav .menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.main-nav .menu-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(17, 17, 17, 0.64);
    transition: background 0.25s ease, color 0.25s ease, font-weight 0.25s ease;
}

.main-nav .menu-list li.current-menu-item a,
.main-nav .menu-list li.current_page_item a,
.main-nav .menu-list li.current-menu-ancestor a {
    color: #111;
    font-weight: 600;
}

.main-nav .menu-list li a:hover {
    color: #111;
    background: #ededed;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #ececec;
    border-radius: 999px;
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 34px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(17, 17, 17, 0.45);
    transition: all 0.25s ease;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: #fff;
    background: #111;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #111;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 140px;
}

.hero-home {
    background-size: 108%;
    animation: hero-zoom 1.25s ease-out both;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(8, 8, 8, 0.78) 56%, rgba(18, 18, 18, 0.42) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #8c8c8c;
    margin-bottom: 16px;
}

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

.hero h1,
.split-content h2,
.default-page h1,
.section-intro h2,
.services-hero h1 {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.hero h1 {
    font-size: clamp(72px, 10vw, 156px);
    line-height: 0.85;
    margin-bottom: 20px;
}

.hero h1 .block {
    display: block;
}

.hero p {
    max-width: 560px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.btn-light {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue-soft);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.2);
}

.btn-light {
    background: #fff;
    color: #101010;
}

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.72);
    color: #fff;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: #fff;
    color: #111;
    transform: translateY(-2px) scale(1.01);
}

.btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.25s ease;
}

.btn-with-icon:hover svg {
    transform: translateX(3px);
}

.home-stats {
    background: #0b0b0d;
    color: #fff;
    padding: 48px 0 42px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-item {
    text-align: center;
    cursor: default;
}

.stat-item strong {
    display: block;
    font-size: 42px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.stat-item:hover strong {
    transform: scale(1.08);
}

.stat-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.content-section {
    padding: 112px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.section-services,
.section-fleet {
    background: #fff;
}

.section-about,
.section-contact-home {
    background: #f7f7f7;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(42px, 6vw, 86px);
    align-items: center;
}

.split-grid.reverse .split-image {
    order: 1;
}

.split-grid.reverse .split-content {
    order: 2;
}

.split-content h2 {
    font-size: clamp(46px, 4vw, 76px);
    line-height: 0.96;
    margin-bottom: 20px;
}

.split-content p {
    color: #666;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.72;
    margin-bottom: 34px;
}

.split-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.split-meta .section-label {
    margin-bottom: 0;
}

.split-meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.split-meta-icon svg {
    width: 20px;
    height: 20px;
    stroke: #111;
    stroke-width: 1.5;
}

.split-image-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-image-frame img {
    width: 100%;
    height: clamp(280px, 36vw, 390px);
    object-fit: cover;
    transition: transform 0.7s ease;
}

.split-image-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #111;
    transition: width 0.5s ease;
}

.split-image-frame:hover img {
    transform: scale(1.05);
}

.split-image-frame:hover .split-image-line {
    width: 100%;
}

.default-page {
    padding: 190px 0 110px;
}

.default-page h1 {
    font-size: clamp(48px, 5vw, 84px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.default-page p {
    max-width: 760px;
    color: #525252;
    margin-bottom: 16px;
}

.services-page {
    background: #fff;
}

.services-hero {
    position: relative;
    min-height: max(60vh, 520px);
    display: flex;
    align-items: center;
    background-size: 108%;
    background-position: center;
    color: #fff;
    overflow: hidden;
    animation: hero-zoom 1.25s ease-out both;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 56%, rgba(0, 0, 0, 0.4) 100%);
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.16), transparent 48%);
}

.services-hero-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--blue);
}

.services-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 144px;
}

.services-hero .section-label {
    color: rgba(255, 255, 255, 0.88);
}

.services-hero h1 {
    font-size: clamp(72px, 9vw, 150px);
    line-height: 0.86;
    margin-bottom: 22px;
}

.services-hero p {
    font-size: 20px;
    line-height: 1.65;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.about-page .section-intro p + p {
    margin-top: 18px;
}

.about-company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    gap: clamp(32px, 4.6vw, 92px);
    align-items: center;
}

.about-company-grid .section-intro h2 {
    font-size: clamp(58px, 7vw, 112px);
}

.about-address {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid #e5e5e5;
}

.about-address p:first-child {
    color: #111;
    font-weight: 600;
}

.about-address p:last-child {
    color: #858585;
    margin-top: 4px;
}

.about-media-col {
    display: grid;
    gap: 18px;
}

.about-main-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-main-image img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.about-highlights {
    display: grid;
    gap: 10px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    background: linear-gradient(90deg, #f5f5f5 0%, #ffffff 92%);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(12, 12, 12, 0.08);
}

.about-highlight-item p {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.chevrons {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.chevrons span {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #111;
    opacity: 0.8;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 26px;
    padding-left: 0;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 27px;
    width: 1px;
    height: 100%;
    background: #e3e3e3;
}

.timeline-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.1);
}

.timeline-dot span {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 28px;
    color: #111;
    line-height: 1;
}

.timeline-card {
    padding: 26px;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.timeline-card h3 {
    margin-bottom: 8px;
    color: #111;
    font-size: 22px;
    line-height: 1.2;
}

.timeline-card h3 span {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    color: #111;
    font-size: 28px;
    margin-right: 9px;
    vertical-align: -1px;
}

.timeline-card p {
    color: #666;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.team-card {
    padding: 14px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(12, 12, 12, 0.09);
}

.team-photo {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f3f3f3;
}

.team-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.team-card h3 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.team-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.62;
}

.section-values {
    padding-top: 46px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.value-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(12, 12, 12, 0.1);
}

.value-number {
    display: inline-block;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 52px;
    color: rgba(17, 17, 17, 0.16);
    line-height: 0.9;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.15;
}

.value-card p {
    color: #666;
    line-height: 1.68;
    font-size: 14px;
}

.fleet-hero {
    background-position: center bottom;
}

.fleet-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.fleet-type-card {
    padding: 36px;
    border-radius: 22px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(12, 12, 12, 0.09);
}

.fleet-type-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fleet-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    transition: background 0.25s ease, transform 0.3s ease;
}

.fleet-type-icon svg {
    width: 28px;
    height: 28px;
    stroke: #111;
    stroke-width: 1.6;
    transition: stroke 0.25s ease;
}

.fleet-type-card:hover .fleet-type-icon {
    background: #111;
    transform: scale(1.08) rotate(-6deg);
}

.fleet-type-card:hover .fleet-type-icon svg {
    stroke: #fff;
}

.fleet-type-number {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 72px;
    line-height: 0.8;
    color: rgba(17, 17, 17, 0.12);
}

.fleet-type-card h3 {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.01em;
    font-size: 52px;
    line-height: 0.92;
    margin-bottom: 10px;
}

.fleet-type-capacity {
    color: #111;
    font-weight: 700;
    margin-bottom: 4px;
}

.fleet-type-card p {
    color: #666;
    line-height: 1.62;
}

.fleet-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.fleet-feature-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(12, 12, 12, 0.1);
}

.fleet-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    margin-bottom: 14px;
    transition: background 0.25s ease, transform 0.3s ease;
}

.fleet-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #111;
    stroke-width: 1.6;
    transition: stroke 0.25s ease;
}

.fleet-feature-card:hover .fleet-feature-icon {
    background: #111;
    transform: scale(1.08) rotate(-6deg);
}

.fleet-feature-card:hover .fleet-feature-icon svg {
    stroke: #fff;
}

.fleet-feature-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.15;
}

.fleet-feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.68;
}

.fleet-gallery-section {
    padding-top: 44px;
}

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

.fleet-gallery-item {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(12, 12, 12, 0.1);
}

.fleet-gallery-item img {
    width: 100%;
    height: clamp(220px, 24vw, 330px);
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.fleet-gallery-item figcaption {
    padding: 14px 16px 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.62;
}

.contact-hours {
    padding-top: 72px;
    padding-bottom: 72px;
}

.contact-hours-intro {
    max-width: 980px;
    margin-bottom: 30px;
}

.contact-hours-intro h2 {
    font-size: clamp(50px, 6vw, 96px);
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-hour-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-hour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(12, 12, 12, 0.09);
}

.contact-hour-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.3s ease;
}

.contact-hour-icon svg {
    width: 23px;
    height: 23px;
    stroke: #111;
    stroke-width: 1.6;
    transition: stroke 0.25s ease;
}

.contact-hour-card:hover .contact-hour-icon {
    background: #111;
    transform: scale(1.08) rotate(-6deg);
}

.contact-hour-card:hover .contact-hour-icon svg {
    stroke: #fff;
}

.contact-hour-card h3 {
    font-size: 19px;
    line-height: 1.2;
}

.contact-hour-card p {
    color: #666;
    margin-top: 3px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4.2vw, 90px);
    align-items: start;
}

.contact-info-col .section-intro {
    margin-bottom: 34px;
}

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

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

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.3s ease;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: #111;
    stroke-width: 1.6;
    transition: stroke 0.25s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    background: #111;
    transform: scale(1.08) rotate(-6deg);
}

.contact-detail-item:hover .contact-detail-icon svg {
    stroke: #fff;
}

.contact-detail-item h3 {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    margin-bottom: 7px;
}

.contact-detail-item p,
.contact-detail-item a {
    color: #111;
    line-height: 1.62;
}

.contact-detail-item a:hover {
    color: #444;
}

.contact-map-wrap {
    margin-top: 26px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: var(--shadow);
}

.contact-map-wrap iframe {
    display: block;
}

.contact-form-card {
    padding: 30px;
    border-radius: 22px;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    display: grid;
    gap: 16px;
}

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

.contact-form-card label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #111;
    padding: 12px 14px;
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #999;
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.contact-submit-btn {
    width: 100%;
}

.services-section {
    padding: clamp(84px, 9vw, 132px) 0;
}

.section-muted {
    background: #f7f7f7;
}

.section-light {
    background: #fff;
}

.section-intro {
    max-width: 810px;
    margin-bottom: 52px;
}

.section-intro h2 {
    font-size: clamp(56px, 7vw, 108px);
    line-height: 0.88;
    margin-bottom: 16px;
}

.section-intro p {
    color: #666;
    max-width: 690px;
    font-size: 17px;
    line-height: 1.68;
}

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

.service-card {
    padding: 34px 30px;
    border-radius: 22px;
    border: 1px solid #e5e5e5;
    background: #fff;
    box-shadow: 0 8px 26px rgba(12, 12, 12, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(12, 12, 12, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
    background: #111;
    transform: scale(1.08) rotate(-6deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #111;
    stroke-width: 1.6;
    transition: stroke 0.25s ease;
}

.service-card:hover .service-icon svg {
    stroke: #fff;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.15;
}

.service-card p {
    color: #666;
    line-height: 1.65;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    transition: background 0.25s ease, transform 0.3s ease;
}

.benefit-icon svg {
    width: 23px;
    height: 23px;
    stroke: #111;
    stroke-width: 1.6;
}

.benefit-card:hover .benefit-icon {
    background: #111;
    transform: scale(1.08) rotate(-6deg);
}

.benefit-card:hover .benefit-icon svg,
.service-card:hover .service-icon svg {
    stroke: #fff;
}

.benefit-card h3 {
    margin-bottom: 8px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.15;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    position: relative;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid #e5e5e5;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(12, 12, 12, 0.1);
}

.process-bg-number {
    position: absolute;
    top: 9px;
    right: 14px;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 76px;
    color: rgba(0, 0, 0, 0.07);
    line-height: 1;
}

.process-number {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 34px;
    color: #111;
    line-height: 1;
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
}

.process-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.services-cta {
    margin-top: 48px;
    text-align: center;
}

.btn-cta {
    gap: 10px;
    padding: 0 32px;
}

.btn-cta svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2;
}

.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.72, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.72, 0.2, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-hero-line {
    animation: line-grow 1.15s cubic-bezier(0.2, 0.72, 0.2, 1) 0.15s both;
}

.services-hero .section-label,
.services-hero h1,
.services-hero p {
    opacity: 0;
    animation: fade-up 0.85s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.services-hero .section-label {
    animation-delay: 0.08s;
}

.services-hero h1 {
    animation-delay: 0.18s;
}

.services-hero p {
    animation-delay: 0.3s;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 72px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}

.footer-logo-text {
    display: inline-block;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.06em;
    font-size: 48px;
    line-height: 0.9;
    margin-bottom: 16px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    list-style: none;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.22);
}

.footer-socials svg {
    width: 16px;
    height: 16px;
    color: #fff;
    stroke: #fff;
    stroke-width: 2;
}

.footer-contact-list {
    display: grid;
    gap: 14px;
}

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

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.62);
    stroke-width: 2;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a:hover,
.footer-nav-col a:hover {
    color: #fff;
}

.footer-nav-col ul {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.footer-regions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.footer-regions .divider {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1200px) {
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-hero h1 {
        font-size: clamp(64px, 8vw, 120px);
    }

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

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

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

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

@media (max-width: 991px) {
    .split-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: 820px;
    }

    .hero h1 {
        font-size: 86px;
    }

    .content-section {
        padding: 84px 0;
    }

    .default-page {
        padding: 156px 0 84px;
    }

    .services-hero {
        min-height: 520px;
    }

    .services-hero-inner {
        padding-top: 160px;
    }

    .services-hero p {
        font-size: 17px;
    }

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

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

    .fleet-types-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-header {
        top: 16px;
    }

    .header-inner {
        padding: 8px 8px 8px 16px;
    }

    .brand-text {
        font-size: 19px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        border-radius: 22px;
        padding: 14px;
        border: 1px solid rgba(17, 17, 17, 0.1);
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    }

    body.menu-open .header-nav-wrap {
        display: flex;
    }

    .main-nav .menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .main-nav .menu-list li a {
        width: 100%;
        justify-content: flex-start;
        padding-inline: 16px;
        min-height: 44px;
    }

    .lang-switcher {
        align-self: flex-start;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .fleet-features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .fleet-gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-hours-grid,
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .section-intro h2 {
        font-size: clamp(44px, 13vw, 88px);
    }

    .service-card h3,
    .benefit-card h3,
    .process-card h3 {
        font-size: 21px;
    }

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

    .about-timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fleet-type-card {
        padding: 30px;
    }

    .fleet-type-card h3 {
        font-size: 42px;
    }

    .contact-form-card {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero {
        min-height: 700px;
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        min-height: 50px;
        width: 100%;
    }

    .services-hero {
        min-height: 460px;
    }

    .services-hero h1 {
        font-size: 64px;
    }

    .services-hero p,
    .section-intro p {
        font-size: 15px;
    }

    .service-card,
    .benefit-card,
    .process-card {
        padding: 26px;
    }

    .team-card {
        padding: 12px;
    }

    .footer-logo-text {
        font-size: 42px;
    }
}

/* === 2026 Premium Logistics Redesign === */
:root {
    --bg: #eef3fb;
    --white: #ffffff;
    --black: #0c1528;
    --text: #0f1d32;
    --muted: #5b6780;
    --line: #d6e0f0;
    --blue: #16458c;
    --blue-soft: #1f5cb6;
    --shadow: 0 22px 44px rgba(17, 45, 91, 0.12);
}

body {
    background: linear-gradient(180deg, #f6f9ff 0%, #eef3fb 100%);
    color: var(--text);
}

.scroll-progress__bar {
    background: linear-gradient(90deg, #3c73c8 0%, #123f86 100%);
}

.site-header {
    top: 18px;
}

.header-inner {
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(22, 69, 140, 0.16);
    box-shadow: 0 16px 34px rgba(17, 45, 91, 0.14);
    padding: 8px 12px 8px 18px;
}

.brand-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.brand-copy {
    display: grid;
    gap: 0;
}

.brand-logo-wrap {
    width: clamp(162px, 17vw, 236px);
    height: clamp(26px, 2.8vw, 44px);
    border-radius: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transform: translateY(8px);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
    /* Stabilny granat: najpierw neutralizacja, potem koloryzacja */
    filter: brightness(0) saturate(100%) invert(17%) sepia(55%) saturate(1574%) hue-rotate(193deg) brightness(95%) contrast(96%);
}

.brand-main {
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #102b55;
}

.brand-sub {
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(16, 43, 85, 0.64);
}

.brand-legal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 63, 134, 0.22);
    background: rgba(235, 243, 255, 0.92);
    color: #133f86;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: nowrap;
}

.header-nav-wrap {
    gap: 12px;
}

.main-nav .menu-list li a {
    color: rgba(16, 41, 82, 0.72);
}

.main-nav .menu-list li.current-menu-item a,
.main-nav .menu-list li.current_page_item a,
.main-nav .menu-list li.current-menu-ancestor a,
.main-nav .menu-list li a:hover {
    color: #123f86;
    background: #e9f1ff;
}

.header-socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-socials a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 69, 140, 0.2);
    background: #f2f7ff;
    color: #123f86;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 69, 140, 0.36);
    background: #e4efff;
}

.header-socials svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
}

.lang-switcher {
    background: #e6eefb;
}

.lang-switcher a {
    color: rgba(19, 53, 104, 0.56);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: #fff;
    background: linear-gradient(135deg, #1950a0 0%, #133e81 100%);
}

.menu-toggle {
    background: #123f86;
}

@media (max-width: 1240px) {
    .brand-logo-wrap {
        width: clamp(146px, 15vw, 198px);
    }

    .brand-legal-pill {
        display: none;
    }

    .header-socials {
        display: none;
    }

    .header-nav-wrap {
        gap: 8px;
    }

    .main-nav .menu-list li a {
        min-height: 38px;
        padding: 0 13px;
        font-size: 13px;
    }

    .lang-switcher a {
        min-width: 38px;
    }
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: inline-flex;
    }

    .header-nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        border-radius: 22px;
        padding: 14px;
        border: 1px solid rgba(22, 69, 140, 0.14);
        background: rgba(252, 254, 255, 0.98);
        box-shadow: 0 18px 36px rgba(12, 32, 66, 0.18);
    }

    body.menu-open .header-nav-wrap {
        display: flex;
    }

    .main-nav .menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .main-nav .menu-list li a {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding-inline: 16px;
    }

    .header-socials,
    .lang-switcher {
        align-self: flex-start;
    }
}

.hero {
    padding-top: 154px;
}

.hero-overlay {
    background:
        radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.1) 32%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(94deg, rgba(9, 23, 45, 0.56) 0%, rgba(11, 32, 65, 0.4) 52%, rgba(24, 58, 108, 0.16) 100%);
}

.services-hero::before {
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0) 62%),
        linear-gradient(94deg, rgba(9, 23, 45, 0.62) 0%, rgba(11, 31, 63, 0.46) 54%, rgba(20, 54, 101, 0.18) 100%);
}

.services-hero-overlay {
    background:
        radial-gradient(circle at 76% 20%, rgba(104, 171, 255, 0.24), transparent 55%),
        radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.14), transparent 64%);
}

.hero h1 .hero-legal {
    font-size: clamp(34px, 4.6vw, 68px);
    letter-spacing: 0.1em;
    opacity: 0.92;
}

.hero p,
.services-hero p {
    color: rgba(245, 250, 255, 0.92);
    text-shadow: 0 8px 24px rgba(8, 22, 46, 0.28);
}

.btn-primary,
.btn-light {
    background: linear-gradient(135deg, #1a56ab 0%, #123f86 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(22, 69, 140, 0.2);
}

.btn-primary:hover,
.btn-light:hover {
    background: linear-gradient(135deg, #1f5cb6 0%, #16458c 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 34px rgba(22, 69, 140, 0.26);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.94);
    color: #123f86;
}

.content-section {
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6fc 100%);
}

.section-services,
.section-fleet,
.section-light {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.section-about,
.section-contact-home,
.section-muted {
    background: linear-gradient(180deg, #f4f8ff 0%, #edf3fc 100%);
}

.split-content p,
.section-intro p,
.service-card p,
.benefit-card p,
.process-card p,
.value-card p,
.fleet-type-card p,
.fleet-feature-card p,
.team-card p,
.contact-hour-card p,
.contact-detail-item p,
.contact-detail-item a,
.timeline-card p,
.fleet-gallery-item figcaption {
    color: #58657f;
}

.split-meta-icon,
.service-icon,
.benefit-icon,
.fleet-feature-icon,
.fleet-type-icon,
.contact-hour-icon,
.contact-detail-icon {
    background: #e9f1ff;
}

.split-meta-icon svg,
.service-icon svg,
.benefit-icon svg,
.fleet-feature-icon svg,
.fleet-type-icon svg,
.contact-hour-icon svg,
.contact-detail-icon svg {
    stroke: #123f86;
}

.service-card:hover .service-icon,
.benefit-card:hover .benefit-icon,
.fleet-feature-card:hover .fleet-feature-icon,
.fleet-type-card:hover .fleet-type-icon,
.contact-hour-card:hover .contact-hour-icon,
.contact-detail-item:hover .contact-detail-icon {
    background: #123f86;
}

.split-image-line,
.services-hero-line {
    background: linear-gradient(90deg, #3f77cd 0%, #123f86 100%);
}

.home-metrics {
    padding: clamp(74px, 8vw, 114px) 0;
    background: linear-gradient(180deg, #f0f5ff 0%, #e8effb 100%);
}

.metrics-intro {
    max-width: 780px;
    margin-bottom: 34px;
}

.metrics-intro h2 {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(52px, 7vw, 108px);
    line-height: 0.88;
    margin-bottom: 14px;
    color: #10294f;
}

.metrics-intro p {
    color: #5a6881;
    max-width: 660px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.metric-card {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(22, 69, 140, 0.16);
    background: linear-gradient(160deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 16px 34px rgba(17, 45, 91, 0.08);
}

.metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9f1ff;
    margin-bottom: 16px;
}

.metric-icon svg {
    width: 22px;
    height: 22px;
    stroke: #123f86;
    stroke-width: 1.6;
}

.metric-card strong {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(58px, 6vw, 86px);
    line-height: 0.86;
    color: #103066;
    margin-bottom: 10px;
}

.metric-card .counter-suffix {
    font-size: 0.68em;
}

.metric-card p {
    color: #5a6a86;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-europe-coverage {
    padding-top: 92px;
}

.europe-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, 340px);
    gap: 20px;
    align-items: stretch;
}

.europe-map-card {
    display: grid;
    gap: 12px;
    border-radius: 24px;
    border: 1px solid rgba(22, 69, 140, 0.14);
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    box-shadow: 0 14px 28px rgba(17, 45, 91, 0.08);
    padding: clamp(14px, 1.8vw, 20px);
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
}

.europe-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.europe-map-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a4f98;
    border: 1px solid rgba(23, 69, 140, 0.2);
    background: rgba(234, 242, 255, 0.85);
}

.europe-map-city {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a4f85;
}

.europe-map-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(22, 69, 140, 0.12);
    background: linear-gradient(180deg, #edf3fc 0%, #e3ebf8 100%);
    padding: clamp(10px, 1.3vw, 13px);
    min-height: clamp(210px, 27vw, 270px);
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.europe-map-image {
    width: min(84%, 540px);
    display: block;
    height: auto;
    margin-inline: auto;
    filter: none;
    opacity: 1;
}

.europe-map-origin {
    position: absolute;
    left: 55%;
    top: 45.5%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #15468e;
    box-shadow: 0 0 0 4px rgba(21, 70, 142, 0.22), 0 0 0 8px rgba(21, 70, 142, 0.1);
    transform: translate(-50%, -50%);
}

.europe-map-note {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #586885;
}

.europe-panel {
    border-radius: 22px;
    border: 1px solid rgba(22, 69, 140, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 28px rgba(17, 45, 91, 0.08);
    padding: 20px 18px;
    align-self: stretch;
}

.europe-panel h3 {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #21497f;
}

.europe-lanes {
    list-style: none;
    display: grid;
    gap: 0;
}

.europe-lanes li {
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(20, 61, 126, 0.1);
}

.europe-lanes li:first-child {
    border-top: 0;
    padding-top: 0;
}

.europe-lanes strong {
    display: block;
    margin-bottom: 3px;
    color: #153e79;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
}

.europe-lanes p {
    color: #5b6982;
    font-size: 12px;
    line-height: 1.5;
}

.section-auth-gallery {
    padding-top: 72px;
}

.auth-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.auth-gallery-item {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(22, 69, 140, 0.16);
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 45, 91, 0.08);
    grid-column: span 3;
}

.auth-gallery-item:nth-child(4n + 1),
.auth-gallery-item:nth-child(4n + 4) {
    grid-column: span 6;
}

.auth-gallery-item img {
    width: 100%;
    height: clamp(200px, 25vw, 290px);
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.auth-gallery-item.is-portrait img {
    object-position: center 16%;
}

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

.auth-gallery-item figcaption {
    padding: 13px 14px 15px;
    font-size: 13px;
    line-height: 1.62;
}

.site-footer {
    background: linear-gradient(160deg, #14366d 0%, #0c2448 100%);
    color: #fff;
}

.footer-logo-text {
    font-size: clamp(34px, 3.2vw, 44px);
}

.footer-brand > p {
    color: rgba(238, 244, 255, 0.66);
}

.footer-social-group {
    margin-top: 12px;
}

.footer-social-group-title {
    margin-bottom: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(206, 223, 252, 0.76);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-socials a {
    width: auto;
    height: 34px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    border: 1px solid rgba(126, 171, 240, 0.34);
    background: rgba(33, 73, 135, 0.42);
}

.footer-socials a:hover {
    background: rgba(72, 122, 206, 0.56);
    border-color: rgba(161, 196, 255, 0.7);
}

.footer-socials .social-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials svg {
    width: 13px;
    height: 13px;
}

.footer-socials .social-label {
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-form-card {
    border: 1px solid rgba(22, 69, 140, 0.16);
    background: linear-gradient(180deg, #f7faff 0%, #eff5ff 100%);
}

.contact-form-card input,
.contact-form-card textarea {
    border: 1px solid #cfdbef;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #1b56ab;
    box-shadow: 0 0 0 4px rgba(27, 86, 171, 0.14);
}

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

    .europe-layout {
        grid-template-columns: 1fr;
    }

    .europe-panel {
        padding: 18px;
    }

    .europe-map-visual {
        padding: 12px;
    }

    .auth-gallery-item {
        grid-column: span 4;
    }

    .auth-gallery-item:nth-child(4n + 1),
    .auth-gallery-item:nth-child(4n + 4) {
        grid-column: span 8;
    }
}

@media (max-width: 991px) {
    .brand-main {
        letter-spacing: 0.02em;
    }

    .header-socials {
        order: 2;
    }

    .home-metrics {
        padding: 66px 0;
    }

    .metrics-intro {
        margin-bottom: 28px;
    }

    .europe-map-note {
        font-size: 12px;
    }

    .auth-gallery-item,
    .auth-gallery-item:nth-child(4n + 1),
    .auth-gallery-item:nth-child(4n + 4) {
        grid-column: span 6;
    }
}

@media (max-width: 860px) {
    .header-inner {
        padding: 10px 9px 10px 14px;
        border-radius: 24px;
    }

    .header-nav-wrap {
        gap: 12px;
    }

    .header-socials {
        align-self: flex-start;
    }

    .brand-copy {
        display: none;
    }

    .brand-legal-pill {
        display: none;
    }

    .brand-main {
        font-size: 11px;
    }

    .brand-sub {
        display: none;
    }

    .brand-logo-wrap {
        width: 138px;
        height: 31px;
        border-radius: 0;
        padding: 0;
        transform: translateY(6px);
    }
}

@media (max-width: 560px) {
    .europe-map-visual {
        min-height: 178px;
        padding: 9px;
    }

    .europe-map-image {
        width: 94%;
    }

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

    .metric-card {
        padding: 24px;
    }

    .auth-gallery-grid {
        grid-template-columns: 1fr;
    }

    .auth-gallery-item,
    .auth-gallery-item:nth-child(4n + 1),
    .auth-gallery-item:nth-child(4n + 4) {
        grid-column: span 1;
    }

    .auth-gallery-item img {
        height: 220px;
    }
}
