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

:root {
    --color-primary: #007bff;
    --color-secondary: #6c757d;
    --color-success: #28a745;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #17a2b8;
    --color-light: #f8f9fa;
    --color-dark: #343a40;
    --color-white: #ffffff;
    --font-family-base: "Alan Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.5;
    --border-radius-base: 0.25rem;
    --transition-base: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-dark);
    background-color: var(--color-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover,
a:focus {
    text-decoration: underline;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    color: var(--color-white);
    transition:
        background 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.navbar.scrolled {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 250, 0.98) 28%, rgba(232, 236, 244, 0.98) 52%, rgba(250, 251, 253, 0.98) 78%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    color: var(--color-dark);
    box-shadow:
        0 6px 18px -14px rgba(30, 50, 90, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(148, 163, 184, 0.25) inset,
        0 2px 12px -10px rgba(30, 60, 120, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.navbar.scrolled::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(212, 216, 224, 0) 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(192, 202, 218, 0.8) 50%,
        rgba(255, 255, 255, 0.8) 70%,
        rgba(212, 216, 224, 0) 100%);
    opacity: 0.95;
    pointer-events: none;
}

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

.nav-brand {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-brand img {
    max-height: 2.75rem;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-brand .logo-white {
    display: block;
}

.nav-brand .logo-blue {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    opacity: 0;
}

.navbar.scrolled .nav-brand .logo-white {
    opacity: 0;
}

.navbar.scrolled .nav-brand .logo-blue {
    opacity: 1;
}

.nav-brand:hover,
.nav-brand:focus {
    text-decoration: none;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    text-decoration: none;
    color: var(--color-white);
}

.navbar.scrolled .nav-menu a {
    color: var(--color-dark);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a:focus {
    color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--color-dark);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 4.5rem;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--color-dark);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        visibility 0.3s ease,
        background 0.3s ease,
        background-color 0.3s ease;
    }

    .navbar.scrolled .nav-menu {
        background:
            linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 250, 0.98) 28%, rgba(232, 236, 244, 0.98) 52%, rgba(250, 251, 253, 0.98) 78%, rgba(255, 255, 255, 0.98) 100%);
        backdrop-filter: saturate(140%) blur(10px);
        -webkit-backdrop-filter: saturate(140%) blur(10px);
        border-top: 1px solid rgba(148, 163, 184, 0.28);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--color-white);
    }

    .navbar.scrolled .nav-menu a {
        color: var(--color-dark);
    }

    .nav-menu a::after {
        display: none;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    background: linear-gradient(135deg, #2c3e50 0%, #4a6a8a 50%, #f2a33a 100%);
    margin-top: -4.5rem;
    padding-top: 4.5rem;
    padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 45, 110, 0.85) 0%,
        rgba(20, 70, 160, 0.55) 12%,
        rgba(30, 90, 180, 0) 28%,
        rgba(30, 90, 180, 0) 70%,
        rgba(30, 90, 180, 0.7) 100%
    );
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.6vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-scroll:hover,
.hero-scroll:focus {
    opacity: 1;
    transform: translateY(4px);
    text-decoration: none;
}

.hero-scroll svg {
    animation: heroBounce 1.8s ease-in-out infinite;
}

@keyframes heroBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-base);
}

.btn-primary {
    background-color: #f2a33a;
    color: #1a2530;
    border-color: #f2a33a;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e09020;
    border-color: #e09020;
    color: #1a2530;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 163, 58, 0.35);
}

.sample-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.sample-section.alt {
    background-color: var(--color-light);
}

.sample-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.sample-section p {
    font-size: 1.0625rem;
    color: var(--color-secondary);
}

.about-section {
    padding: 5rem 0;
    background-color: var(--color-white);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 480px;
}

.about-image-item {
    margin: 0;
    position: absolute;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 45px -20px rgba(15, 23, 42, 0.35), 0 8px 16px -10px rgba(15, 23, 42, 0.2);
    background-color: var(--color-light);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-radius 0.4s ease;
}

.about-image-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 90, 180, 0) 40%, rgba(10, 40, 100, 0.18) 100%);
    pointer-events: none;
}

.about-image-item--primary {
    top: 0;
    left: 0;
    width: 78%;
    height: 74%;
    z-index: 2;
    border-radius: 22px;
    aspect-ratio: 4 / 5;
}

.about-image-item--secondary {
    right: 0;
    bottom: 0;
    width: 56%;
    height: 52%;
    z-index: 3;
    border: 6px solid var(--color-white);
    aspect-ratio: 1 / 1;
}

.about-image-item:hover {
    transform: translateY(-4px);
    border-radius: 26px;
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.45), 0 12px 24px -12px rgba(15, 23, 42, 0.25);
    z-index: 5;
}

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

.about-image-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.1) contrast(1.03);
}

.about-images__accent {
    position: absolute;
    width: 200px;
    height: 200px;
    right: 6%;
    top: 6%;
    background: radial-gradient(circle at 30% 30%, rgba(30, 90, 180, 0.5), rgba(20, 70, 160, 0.15) 50%, rgba(30, 90, 180, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(10px);
    animation: aboutAccentFloat 8s ease-in-out infinite;
}

@keyframes aboutAccentFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(-6px, 8px, 0); }
}

.about-text {
    max-width: none;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px -30px rgba(15, 40, 100, 0.25), inset 0 1px 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(30, 90, 180, 0.08);
}

.about-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-dark);
    padding-bottom: 0.875rem;
    margin-bottom: 1.125rem;
    line-height: 1.15;
    text-align: left;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    align-self: flex-start;
    letter-spacing: -0.01em;
}

.about-copy {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 0.25rem 0.5rem 0 0.25rem;
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.65;
    max-height: none;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    transition: max-height 0.5s ease, mask-image 0.5s ease, -webkit-mask-image 0.5s ease;
}

.about-copy.is-expanded {
    max-height: 3000px;
    mask-image: none;
    -webkit-mask-image: none;
}

.about-copy p {
    margin-bottom: 0.75rem;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.news-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    position: relative;
}

.news-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 90, 180, 0.2), transparent);
}

.news-section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
}

.news-section__header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.news-section__header h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-primary);
    margin: 1rem auto 0 auto;
}

.news-section__header p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.25vw, 2rem);
}

.news-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -20px rgba(15, 23, 42, 0.2), 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -24px rgba(30, 90, 180, 0.3), 0 2px 6px rgba(15, 23, 42, 0.06);
}

.news-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--color-light);
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.news-card:hover .news-card__media img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.03);
}

.news-card__date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0;
    box-shadow: 0 8px 18px -10px rgba(15, 23, 42, 0.35);
    line-height: 1;
    z-index: 1;
}

.news-card__day {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.news-card__month {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.news-card__body {
    padding: 1.5rem 1.5rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 0.625rem;
}

.news-card__category {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background-color: rgba(30, 90, 180, 0.1);
    color: var(--color-primary);
    line-height: 1;
}

.news-card__category--alt {
    background-color: rgba(15, 118, 110, 0.1);
    color: #0f766e;
}

.news-card__category--alt2 {
    background-color: rgba(194, 120, 26, 0.12);
    color: #a16207;
}

.news-card__title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-card__title a:hover,
.news-card__title a:focus {
    color: var(--color-primary);
}

.news-card__excerpt {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__more {
    margin-top: auto;
    padding-top: 0.75rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.news-card__more svg {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 0.25s ease;
}

.news-card__more:hover,
.news-card__more:focus {
    color: #0056b3;
    gap: 0.55rem;
}

.news-card__more:hover svg {
    transform: translateX(2px);
}

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

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

    .article-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .news-card__body {
        padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    }

    .news-card__title {
        font-size: 1.1rem;
    }

    .reviews-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .reviews-section__header {
        margin-bottom: 1.75rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .review-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .review-card__stars {
        margin-bottom: 0.85rem;
    }

    .review-card__stars svg {
        width: 1rem;
        height: 1rem;
    }

    .review-card__quote {
        margin-bottom: 1.25rem;
    }

    .review-card__author {
        padding-top: 0.85rem;
    }

    .article-gallery {
        margin-bottom: 1.75rem;
    }

    .article-gallery__caption {
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }

    .article-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .article-gallery__item {
        aspect-ratio: 3 / 2;
        border-radius: 10px;
    }

    .lightbox {
        padding: 4rem 0.5rem 0.5rem 0.5rem;
    }

    .lightbox__close,
    .lightbox__nav {
        width: 38px;
        height: 38px;
    }

    .lightbox__close svg,
    .lightbox__nav svg {
        width: 17px;
        height: 17px;
    }

    .lightbox__close {
        top: 0.75rem;
        right: 0.75rem;
    }

    .lightbox__nav--prev {
        left: 0.5rem;
    }

    .lightbox__nav--next {
        right: 0.5rem;
    }

    .lightbox__counter {
        top: 0.85rem;
        left: 1rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .lightbox__caption {
        font-size: 0.82rem;
        padding: 0 0.5rem;
    }
}

.cta-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(30, 90, 180, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(20, 70, 160, 0.12), transparent 55%),
        linear-gradient(180deg, #f1f5fb 0%, #eaf0fa 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 90, 180, 0.25), transparent);
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 90, 180, 0.25), transparent);
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.cta-section__tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: #0f172a;
    font-weight: 600;
    margin: 0 auto clamp(1.5rem, 3.5vw, 2.25rem) auto;
    max-width: 780px;
    letter-spacing: -0.005em;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.15rem;
}

.cta-btn {
    flex: 1 1 320px;
    max-width: 440px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-family: var(--font-family-base);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 35px -18px rgba(30, 90, 180, 0.55);
    outline: none;
}

.cta-btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(30, 90, 180, 0.2), 0 14px 35px -18px rgba(30, 90, 180, 0.55);
}

.cta-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05) saturate(1.05);
    box-shadow: 0 22px 45px -20px rgba(30, 90, 180, 0.65);
    color: #ffffff;
}

.cta-btn--email {
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.cta-btn--phone {
    background: linear-gradient(180deg, #0f766e 0%, #065f46 100%);
    box-shadow: 0 14px 35px -18px rgba(15, 118, 110, 0.55);
}

.cta-btn--phone:hover {
    box-shadow: 0 22px 45px -20px rgba(15, 118, 110, 0.65);
}

.cta-btn--phone:focus-visible {
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.2), 0 14px 35px -18px rgba(15, 118, 110, 0.55);
}

.cta-btn__icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
    opacity: 0.95;
}

.cta-btn__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.cta-btn__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
}

.cta-btn__value {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 800;
    color: #ffffff;
    word-break: break-word;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.btn-text {
    background: transparent;
    color: var(--color-primary);
    border: 0;
    padding: 0.25rem 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-base);
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-text:hover,
.btn-text:focus {
    color: #0056b3;
    text-decoration: underline;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.readmore-toggle .label-less {
    display: none;
}

.readmore-toggle[aria-expanded="true"] .label-more {
    display: none;
}

.readmore-toggle[aria-expanded="true"] .label-less {
    display: inline;
}

.readmore-toggle {
    display: none;
}

@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .about-images {
        min-height: auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 1rem;
        align-items: center;
    }

    .about-image-item,
    .about-image-item--primary,
    .about-image-item--secondary {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        transform: none;
        z-index: auto;
        border-width: 0;
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }

    .about-image-item--primary {
        aspect-ratio: 3 / 4;
    }

    .about-images__accent {
        width: 140px;
        height: 140px;
        top: -10px;
        right: 8%;
    }

    .about-text {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-buttons {
        gap: 0.875rem;
    }

    .cta-btn {
        flex: 1 1 100%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 4rem 0;
    }

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

    .about-image-item--primary,
    .about-image-item--secondary {
        aspect-ratio: 4 / 3;
    }

    .about-text {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .about-text h2 {
        font-size: 1.5rem;
        padding-bottom: 0.625rem;
        margin-bottom: 0.875rem;
    }

    .about-copy {
        padding: 0;
        line-height: 1.6;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section__tagline {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    .cta-btn {
        padding: 0.9rem 1.1rem;
        border-radius: 12px;
        gap: 0.75rem;
    }

    .cta-btn__icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .cta-btn__value {
        font-size: 1.05rem;
    }
}

/* ----- Article pages ----- */

.article-page {
    background-color: #f8fafc;
}

.article-hero {
    position: relative;
    min-height: clamp(360px, 62vh, 620px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 clamp(3rem, 7vw, 5.5rem) 0;
    overflow: hidden;
    color: #ffffff;
}

.article-hero__thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.article-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 45, 110, 0.55) 0%, rgba(10, 45, 110, 0) 35%, rgba(10, 45, 110, 0) 55%, rgba(8, 20, 55, 0.88) 100%);
}

.article-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.article-hero__date {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.article-hero__date svg {
    width: 1rem;
    height: 1rem;
    opacity: 0.85;
    color: #bfdbfe;
}

.article-hero__category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.article-hero__category--alt {
    background-color: rgba(20, 184, 166, 0.22);
    border-color: rgba(45, 212, 191, 0.32);
}

.article-hero__category--alt2 {
    background-color: rgba(245, 158, 11, 0.22);
    border-color: rgba(251, 191, 36, 0.32);
}

.article-hero__title {
    margin: 0;
    font-size: clamp(1.75rem, 4.2vw, 3.1rem);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    max-width: 960px;
}

.article-hero__breadcrumb {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(1rem, 2vw, 1.75rem);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.02em;
}

.article-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-hero__breadcrumb a:hover,
.article-hero__breadcrumb a:focus {
    color: #bfdbfe;
}

.article-hero__breadcrumb svg {
    width: 0.8rem;
    height: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.article-body {
    padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem) 0;
}

.article-content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #1e293b;
}

.article-content > p {
    margin: 0 0 1.35rem 0;
}

.article-content h2 {
    margin: 2.25rem 0 1rem 0;
    font-size: 1.55rem;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.015em;
}

.article-content h3 {
    margin: 1.75rem 0 0.75rem 0;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 700;
    color: #0f172a;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.35rem 0;
    padding-left: 1.35rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #0f172a;
    font-weight: 700;
}

.article-content blockquote {
    margin: 1.75rem 0;
    padding: 1.1rem 1.35rem;
    border-left: 4px solid var(--color-primary);
    background: linear-gradient(90deg, rgba(30, 90, 180, 0.08), rgba(30, 90, 180, 0));
    border-radius: 0 10px 10px 0;
    color: #1e293b;
    font-style: italic;
    line-height: 1.7;
}

.article-photo-pair {
    margin: 1.75rem 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.article-photo-pair__item {
    border-radius: 14px;
    overflow: hidden;
    background-color: #e2e8f0;
    box-shadow: 0 14px 35px -24px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(15, 23, 42, 0.06);
    aspect-ratio: 4 / 3;
}

.article-photo-pair__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.article-photo-pair__item:hover img {
    transform: scale(1.04);
}

.article-photo-pair__caption {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.65rem 0.9rem 0 0.9rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #475569;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding-top: 0.75rem;
}

.article-video {
    margin: 1.75rem 0 2rem 0;
}

.article-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(10, 45, 110, 0.5), 0 0 0 1px rgba(15, 23, 42, 0.08);
    isolation: isolate;
}

.article-video__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background-color: #000000;
}

.article-video__play {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.25s ease, opacity 0.25s ease;
    z-index: 2;
}

.article-video__play::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 45, 110, 0.32) 0%, rgba(8, 20, 55, 0.55) 100%);
    transition: background 0.25s ease;
    z-index: -1;
}

.article-video__play svg {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    transform: scale(1);
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.article-video__play:hover svg,
.article-video__play:focus-visible svg {
    transform: scale(1.06);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45)) brightness(1.05);
}

.article-video__play:hover::before,
.article-video__play:focus-visible::before {
    background: radial-gradient(ellipse at center, rgba(10, 45, 110, 0.25) 0%, rgba(8, 20, 55, 0.5) 100%);
}

.article-video__play-label {
    font-family: var(--font-family-base);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.article-video__frame.is-playing .article-video__play {
    opacity: 0;
    pointer-events: none;
}

.article-video__frame.is-playing .article-video__play::before {
    background: transparent;
}

.article-video__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.25rem 1rem 0.85rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 3;
    pointer-events: none;
}

.article-video__frame:hover .article-video__controls,
.article-video__frame.is-playing .article-video__controls,
.article-video__frame.is-paused .article-video__controls,
.article-video__controls:focus-within {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.article-video__progress {
    position: relative;
    height: 6px;
    width: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: height 0.2s ease;
}

.article-video__progress:hover,
.article-video__progress.is-dragging {
    height: 8px;
}

.article-video__progress-buffer,
.article-video__progress-played {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    pointer-events: none;
}

.article-video__progress-buffer {
    background: rgba(255, 255, 255, 0.32);
    width: 0%;
}

.article-video__progress-played {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    width: 0%;
}

.article-video__progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #1d4ed8;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.article-video__progress:hover .article-video__progress-handle,
.article-video__progress.is-dragging .article-video__progress-handle {
    opacity: 1;
}

.article-video__controls-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.article-video__ctrl {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0.4rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
}

.article-video__ctrl svg {
    width: 20px;
    height: 20px;
}

.article-video__ctrl:hover,
.article-video__ctrl:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    outline: none;
}

.article-video__ctrl .icon-pause,
.article-video__ctrl .icon-mute,
.article-video__ctrl .icon-fs-exit {
    display: none;
}

.article-video__frame.is-playing .article-video__ctrl--play .icon-play {
    display: none;
}

.article-video__frame.is-playing .article-video__ctrl--play .icon-pause {
    display: inline-block;
}

.article-video__frame.is-muted .article-video__ctrl--mute .icon-volume {
    display: none;
}

.article-video__frame.is-muted .article-video__ctrl--mute .icon-mute {
    display: inline-block;
}

.article-video__frame.is-fullscreen .article-video__ctrl--fullscreen .icon-fs-enter {
    display: none;
}

.article-video__frame.is-fullscreen .article-video__ctrl--fullscreen .icon-fs-exit {
    display: inline-block;
}

.article-video__time {
    margin-left: auto;
    font-family: var(--font-family-base);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    padding-right: 0.2rem;
}

.article-video__time .sep {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0.1rem;
}

.article-video__caption {
    margin: 0.75rem 0 0 0;
    padding: 0 0.9rem 0 0.9rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #475569;
}

.article-contact-cta {
    margin-top: 1.75rem;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 90, 180, 0.08), rgba(30, 90, 180, 0));
    border: 1px solid rgba(30, 90, 180, 0.15);
}

.article-contact-cta__lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #1e293b;
}

.article-contact-cta__lead a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 90, 180, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.article-contact-cta__lead a:hover,
.article-contact-cta__lead a:focus {
    color: #0056b3;
    border-color: rgba(0, 86, 179, 0.55);
}

/* Customer reviews section */
.reviews-section {
    position: relative;
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
    background:
        radial-gradient(1200px 420px at 10% -10%, rgba(30, 90, 180, 0.14), rgba(30, 90, 180, 0) 60%),
        radial-gradient(1000px 380px at 95% 110%, rgba(30, 90, 180, 0.1), rgba(30, 90, 180, 0) 60%),
        linear-gradient(180deg, #ffffff 0%, #f3f6fc 100%);
}

.reviews-section::before,
.reviews-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(1140px, 92%);
    height: 1px;
    background: linear-gradient(90deg, rgba(30, 90, 180, 0), rgba(30, 90, 180, 0.35), rgba(30, 90, 180, 0));
    pointer-events: none;
}

.reviews-section::before { top: 0; }
.reviews-section::after  { bottom: 0; }

.reviews-section__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(1.75rem, 3.5vw, 3rem) auto;
}

.reviews-section__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.65rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    padding-bottom: 0.85rem;
}

.reviews-section__header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 999px;
}

.reviews-section__header p {
    margin: 0;
    color: #475569;
    font-size: clamp(0.97rem, 1.2vw, 1.1rem);
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.75rem);
}

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 2.2vw, 1.8rem);
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.06),
        0 14px 40px -24px rgba(15, 23, 42, 0.32);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    transform: scaleX(0.25);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.review-card:hover,
.review-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(30, 90, 180, 0.25);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.06),
        0 30px 60px -30px rgba(30, 90, 180, 0.55);
}

.review-card:hover::before,
.review-card:focus-within::before {
    transform: scaleX(1);
}

.review-card__stars {
    display: inline-flex;
    gap: 0.22rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    line-height: 0;
}

.review-card__stars svg {
    width: 1.1rem;
    height: 1.1rem;
    filter: drop-shadow(0 1px 1px rgba(245, 158, 11, 0.22));
}

.review-card__quote {
    position: relative;
    margin: 0 0 1.5rem 0;
    font-size: clamp(0.97rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #1e293b;
    z-index: 1;
}

.review-card__quote::before {
    content: "\201C";
    position: absolute;
    top: -1.25rem;
    left: -0.25rem;
    font-size: 4.2rem;
    line-height: 1;
    color: rgba(30, 90, 180, 0.08);
    font-weight: 800;
    pointer-events: none;
    z-index: 0;
}

.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.review-card__name {
    font-weight: 800;
    color: #0f172a;
    font-size: 1rem;
    letter-spacing: -0.005em;
}

.review-card__role {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.4;
}

.article-gallery {
    margin: 1.5rem 0 2.25rem 0;
}

.article-gallery__caption {
    margin: 0 0 0.85rem 0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-gallery__caption::before {
    content: "";
    width: 3px;
    height: 0.9rem;
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
    display: inline-block;
}

.article-gallery__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.article-gallery__item {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background-color: #e2e8f0;
    box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 45, 110, 0) 55%, rgba(10, 45, 110, 0.32) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
    pointer-events: none;
}

.article-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.25s ease;
    will-change: transform;
}

.article-gallery__item:hover,
.article-gallery__item:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -20px rgba(30, 90, 180, 0.5);
    border-color: rgba(30, 90, 180, 0.25);
    outline: none;
}

.article-gallery__item:hover img,
.article-gallery__item:focus-visible img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.article-gallery__item:hover::after,
.article-gallery__item:focus-visible::after {
    opacity: 1;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
    padding: 4.5rem 1rem 1rem 1rem;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
    background: rgba(30, 90, 180, 0.65);
    transform: translateY(-1px);
    outline: none;
}

.lightbox__close svg,
.lightbox__nav svg {
    width: 20px;
    height: 20px;
}

.lightbox__close {
    top: 1rem;
    right: 1rem;
}

.lightbox__nav--prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--prev:hover,
.lightbox__nav--prev:focus-visible {
    transform: translateY(-50%) translateX(-2px);
}

.lightbox__nav--next:hover,
.lightbox__nav--next:focus-visible {
    transform: translateY(-50%) translateX(2px);
}

.lightbox__stage {
    position: relative;
    max-width: min(1200px, 100%);
    max-height: min(82vh, 100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.65rem;
}

.lightbox__image-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.8);
}

.lightbox__image {
    width: 100%;
    max-width: 100%;
    max-height: 78vh;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox__caption {
    max-width: 1000px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    padding: 0 1rem;
    letter-spacing: 0.01em;
}

.lightbox__counter {
    position: absolute;
    top: 1.05rem;
    left: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    z-index: 2;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.article-footer {
    max-width: 780px;
    margin: clamp(2rem, 4vw, 3rem) auto 0 auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.article-footer__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.25s ease, color 0.25s ease;
}

.article-footer__back svg {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 0.25s ease;
}

.article-footer__back:hover,
.article-footer__back:focus {
    color: #0056b3;
    gap: 0.6rem;
}

.article-footer__back:hover svg {
    transform: translateX(-2px);
}

.article-footer__share-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 640px) {
    .article-body {
        padding-top: 2.25rem;
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }

    .article-content h3 {
        font-size: 1.1rem;
    }

    .article-photo-pair {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1.5rem 0 1.75rem 0;
    }

    .article-photo-pair__caption {
        font-size: 0.82rem;
        padding-top: 0.6rem;
    }

    .article-video {
        margin: 1.5rem 0 1.75rem 0;
    }

    .article-video__frame {
        border-radius: 14px;
    }

    .article-video__play svg {
        width: 64px;
        height: 64px;
    }

    .article-video__play-label {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }

    .article-video__controls {
        padding: 2rem 0.75rem 0.7rem 0.75rem;
        gap: 0.45rem;
    }

    .article-video__progress {
        height: 5px;
    }

    .article-video__progress:hover,
    .article-video__progress.is-dragging {
        height: 7px;
    }

    .article-video__progress-handle {
        width: 12px;
        height: 12px;
    }

    .article-video__controls-row {
        gap: 0.45rem;
    }

    .article-video__ctrl {
        width: 30px;
        height: 30px;
        padding: 0.3rem;
    }

    .article-video__ctrl svg {
        width: 17px;
        height: 17px;
    }

    .article-video__time {
        font-size: 0.75rem;
    }

    .article-video__caption {
        font-size: 0.85rem;
        padding: 0;
    }

    .article-contact-cta {
        padding: 1rem 1.1rem;
        border-radius: 12px;
    }

    .article-contact-cta__lead {
        font-size: 0.98rem;
        line-height: 1.6;
    }

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


/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
    position: relative;
    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(244, 246, 250, 0.98) 22%,
            rgba(229, 233, 242, 0.98) 46%,
            rgba(219, 224, 235, 0.96) 54%,
            rgba(244, 246, 250, 0.98) 78%,
            rgba(255, 255, 255, 0.98) 100%);
    color: #334155;
    padding-top: clamp(3rem, 6vw, 4.5rem);
    overflow: hidden;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 -1px 0 rgba(148, 163, 184, 0.3) inset,
        0 -20px 50px -40px rgba(15, 23, 42, 0.55);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(212, 216, 224, 0) 0%,
        rgba(255, 255, 255, 0.95) 24%,
        rgba(188, 196, 212, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 76%,
        rgba(212, 216, 224, 0) 100%);
    opacity: 0.9;
}

.site-footer::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(212, 216, 224, 0) 0%,
        rgba(255, 255, 255, 0.9) 24%,
        rgba(188, 196, 212, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 76%,
        rgba(212, 216, 224, 0) 100%);
    opacity: 0.9;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.site-footer__col { min-width: 0; }

.site-footer__brand {
    margin-bottom: 1rem;
}

.site-footer__logo {
    height: 54px;
    width: auto;
    display: block;
    max-width: 100%;
}

.site-footer__tagline {
    margin: 0;
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 360px;
}

.site-footer__heading {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 1.15rem 0;
    position: relative;
    padding-bottom: 0.65rem;
}

.site-footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.site-footer__address {
    font-style: normal;
    color: #334155;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 1.1rem 0;
}

.site-footer__contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-footer__contacts li,
.site-footer__socials li {
    list-style: none;
}

.site-footer__contacts a,
.site-footer__location,
.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #334155;
    text-decoration: none;
    font-size: 0.94rem;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 2px 0;
}

.site-footer__contacts a svg,
.site-footer__location svg,
.site-footer__socials a svg {
    width: 1.05rem;
    height: 1.05rem;
    color: #1d4ed8;
    flex-shrink: 0;
}

.site-footer__contacts a:hover,
.site-footer__contacts a:focus,
.site-footer__location:hover,
.site-footer__location:focus,
.site-footer__socials a:hover,
.site-footer__socials a:focus {
    color: #1e3a8a;
    transform: translateX(2px);
}

.site-footer__contacts a:hover svg,
.site-footer__contacts a:focus svg,
.site-footer__location:hover svg,
.site-footer__location:focus svg,
.site-footer__socials a:hover svg,
.site-footer__socials a:focus svg {
    color: #3b82f6;
}

.site-footer__socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.site-footer__divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(212, 216, 224, 0) 0%,
        rgba(255, 255, 255, 0.95) 22%,
        rgba(188, 196, 212, 0.92) 50%,
        rgba(255, 255, 255, 0.95) 78%,
        rgba(212, 216, 224, 0) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8),
        0 -1px 0 rgba(148, 163, 184, 0.2);
}

.site-footer__bottom {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.6;
}

.site-footer__legal a {
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 90, 180, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus {
    color: #1e3a8a;
    border-color: rgba(30, 90, 180, 0.6);
}

.site-footer__legal .sep {
    color: rgba(100, 116, 139, 0.45);
}

.site-footer__company {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.55;
}

/* Footer responsive: tablet ≤992px */
@media (max-width: 992px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }

    .site-footer__tagline {
        max-width: 520px;
    }
}

/* Footer responsive: mobile ≤640px */
@media (max-width: 640px) {
    .site-footer {
        padding-top: 2.75rem;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__logo {
        height: 46px;
    }

    .site-footer__socials {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom {
        padding-top: 1.25rem;
        padding-bottom: 1.5rem;
        gap: 0.75rem;
    }

    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .site-footer__legal .sep { display: none; }
}

/* ============================================================
   Policy pages (Privacy / Cookie)
   ============================================================ */
.article-hero--policy {
    min-height: 0;
    height: auto;
    padding-top: clamp(7.5rem, 11vw, 10rem);
    padding-bottom: clamp(2.25rem, 5vw, 3.75rem);
    background:
        radial-gradient(820px 260px at 0% 0%, rgba(59, 130, 246, 0.45), rgba(59, 130, 246, 0) 65%),
        radial-gradient(760px 260px at 100% 100%, rgba(29, 78, 216, 0.45), rgba(29, 78, 216, 0) 65%),
        linear-gradient(135deg, #0e2a66 0%, #0a1d4d 45%, #081535 100%);
}

.article-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.article-hero__content h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    max-width: 820px;
}

.article-breadcrumbs {
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
}

.article-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.6rem;
}

.article-breadcrumbs li + li::before {
    content: "/";
    margin-right: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
}

.article-breadcrumbs a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus {
    color: #bfdbfe;
}

.article-body--policy {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.article-content--policy {
    max-width: 880px;
}

.article-content--policy a {
    color: var(--color-primary, #1d4ed8);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 90, 180, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.article-content--policy a:hover,
.article-content--policy a:focus {
    color: #0b3288;
    border-color: rgba(11, 50, 136, 0.55);
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: 500;
    color: #0f172a;
    padding: 1.25rem 1.4rem;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.07), rgba(59, 130, 246, 0.02));
    border-left: 4px solid #1d4ed8;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
}

.policy-contact-list,
.policy-browser-list {
    list-style: none;
    padding: 1rem 1.15rem;
    margin: 0 0 1.35rem 0;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 30px -20px rgba(15, 23, 42, 0.35);
}

.policy-contact-list li,
.policy-browser-list li {
    padding: 0.35rem 0;
    line-height: 1.65;
}

.policy-contact-list li + li,
.policy-browser-list li + li {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.policy-table-wrap {
    margin: 0 0 2rem 0;
    overflow-x: auto;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 10px 34px -24px rgba(15, 23, 42, 0.45);
    -webkit-overflow-scrolling: touch;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #1e293b;
    min-width: 640px;
}

.policy-table thead th {
    background: linear-gradient(180deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #ffffff;
    text-align: left;
    padding: 0.8rem 1rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    border: none;
    position: sticky;
    top: 0;
}

.policy-table tbody td {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    vertical-align: top;
}

.policy-table tbody tr:nth-child(even) td {
    background-color: rgba(59, 130, 246, 0.035);
}

.policy-table tbody tr:hover td {
    background-color: rgba(59, 130, 246, 0.075);
}

@media (max-width: 640px) {
    .article-hero--policy {
        padding-top: 7rem;
        padding-bottom: 2.25rem;
    }

    .policy-intro {
        font-size: 1rem;
        padding: 1rem 1.1rem;
    }

    .policy-table {
        font-size: 0.88rem;
        min-width: 560px;
    }

    .policy-table thead th,
    .policy-table tbody td {
        padding: 0.65rem 0.85rem;
    }
}

/* ============================================================
   Cookie Consent Banner + Settings Modal
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: clamp(0.75rem, 1.5vw, 1.1rem);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__inner {
    max-width: 1200px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(30, 90, 180, 0.16);
    border-radius: 16px;
    box-shadow:
        0 10px 36px rgba(15, 23, 42, 0.12),
        0 0 0 4px rgba(59, 130, 246, 0.04) inset;
    padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1rem, 2.2vw, 1.6rem);
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: clamp(0.9rem, 2vw, 1.6rem);
    align-items: center;
}

.cookie-banner__heading {
    margin: 0 0 0.35rem 0;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.005em;
    line-height: 1.25;
}

.cookie-banner__text {
    margin: 0;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.55;
}

.cookie-banner__text a {
    color: var(--color-primary, #1d4ed8);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(29, 78, 216, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus {
    color: #0b3288;
    border-color: rgba(11, 50, 136, 0.55);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.cookie-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.68rem 1.1rem;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.cookie-banner__btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.cookie-banner__btn:active { transform: translateY(1px); }

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 8px 22px -8px rgba(29, 78, 216, 0.7);
}

.cookie-banner__btn--accept:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 10px 26px -8px rgba(29, 78, 216, 0.85);
}

.cookie-banner__btn--reject {
    background: #ffffff;
    color: #334155;
    border-color: rgba(15, 23, 42, 0.14);
}

.cookie-banner__btn--reject:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.28);
}

.cookie-banner__btn--save,
.cookie-banner__btn--manage {
    background: #0f172a;
    color: #ffffff;
}

.cookie-banner__btn--save:hover,
.cookie-banner__btn--manage:hover {
    background: #1e293b;
}

@media (max-width: 992px) {
    .cookie-banner__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 0.7rem;
    }

    .cookie-banner__inner {
        border-radius: 14px;
        padding: 1rem 1.05rem;
    }

    .cookie-banner__btn {
        padding: 0.62rem 1rem;
        font-size: 0.86rem;
        width: 100%;
    }

    .cookie-banner__actions {
        gap: 0.5rem;
    }
}

/* --- Cookie Settings modal --- */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.cookie-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease, visibility 0s;
}

.cookie-modal__scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 35, 0.68);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-modal__panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 2rem);
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px -25px rgba(8, 15, 35, 0.55);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-modal.is-open .cookie-modal__panel {
    transform: translateY(0) scale(1);
}

.cookie-modal__header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), transparent);
}

.cookie-modal__header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.cookie-modal__close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e2e8f0;
    color: #0f172a;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cookie-modal__close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.cookie-modal__close:hover {
    background: #ffffff;
    color: #1d4ed8;
    border-color: rgba(29, 78, 216, 0.3);
    transform: scale(1.04);
}

.cookie-modal__close:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.cookie-modal__body {
    padding: 1.3rem 1.5rem;
    overflow-y: auto;
    flex: 1 1 auto;
}

.cookie-modal__intro {
    margin: 0 0 1.25rem 0;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
}

.cookie-switch {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #ffffff;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 16px -12px rgba(15, 23, 42, 0.4);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cookie-switch:hover {
    border-color: rgba(29, 78, 216, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -16px rgba(15, 23, 42, 0.5);
}

.cookie-switch__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
}

.cookie-switch__info h3 {
    margin: 0 0 0.25rem 0;
    color: #0f172a;
    font-size: 0.96rem;
    font-weight: 700;
}

.cookie-switch__info p {
    margin: 0;
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.55;
}

/* --- Toggle switch --- */
.cookie-switch__toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-switch__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch__slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #cbd5e1;
    border-radius: 999px;
    transition: background 0.25s ease;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05) inset;
}

.cookie-switch__slider::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25);
}

.cookie-switch__toggle input:checked + .cookie-switch__slider {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.cookie-switch__toggle input:checked + .cookie-switch__slider::before {
    transform: translateX(22px);
}

.cookie-switch__toggle input:focus-visible + .cookie-switch__slider {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.cookie-switch__toggle--disabled {
    opacity: 0.75;
}

.cookie-switch__toggle--disabled .cookie-switch__slider {
    cursor: not-allowed;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.cookie-switch__toggle--disabled .cookie-switch__slider::before {
    transform: translateX(22px);
}

.cookie-modal__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(0deg, rgba(59, 130, 246, 0.05), transparent);
}

.cookie-modal__link {
    color: #1d4ed8;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(29, 78, 216, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-modal__link:hover,
.cookie-modal__link:focus {
    color: #0b3288;
    border-color: rgba(11, 50, 136, 0.55);
}

.cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .cookie-modal {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .cookie-modal__panel {
        max-height: calc(100vh - 1rem);
        border-radius: 16px 16px 14px 14px;
    }

    .cookie-modal__header {
        padding: 1rem 1.1rem;
    }

    .cookie-modal__header h2 {
        font-size: 1.1rem;
    }

    .cookie-modal__body {
        padding: 1.1rem;
    }

    .cookie-switch__row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.75rem;
        padding: 0.85rem 0.95rem;
    }

    .cookie-switch__toggle {
        width: 48px;
        height: 28px;
    }

    .cookie-switch__slider::before {
        width: 22px;
        height: 22px;
    }

    .cookie-switch__toggle input:checked + .cookie-switch__slider::before,
    .cookie-switch__toggle--disabled .cookie-switch__slider::before {
        transform: translateX(20px);
    }

    .cookie-modal__footer {
        padding: 0.9rem 1.1rem 1.1rem;
    }

    .cookie-modal__actions {
        width: 100%;
    }

    .cookie-modal__actions .cookie-banner__btn {
        width: 100%;
    }
}

/* --- Cookie settings re-open (always visible after consent) --- */
.cookie-reopen {
    position: fixed;
    left: clamp(0.75rem, 1.5vw, 1.1rem);
    bottom: clamp(0.75rem, 1.5vw, 1.1rem);
    z-index: 9990;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    color: #1d4ed8;
    cursor: pointer;
    box-shadow:
        0 10px 26px -14px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.cookie-reopen svg {
    width: 1.35rem;
    height: 1.35rem;
}

.cookie-reopen.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-reopen:hover,
.cookie-reopen:focus-visible {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px -14px rgba(29, 78, 216, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.cookie-reopen:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .cookie-reopen {
        width: 42px;
        height: 42px;
    }

    .cookie-reopen svg {
        width: 1.2rem;
        height: 1.2rem;
    }
}

/* ============================================================
   Fleet page
   ============================================================ */
.fleet-hero {
    position: relative;
    width: 100%;
    padding-top: clamp(8rem, 12vw, 11rem);
    padding-bottom: clamp(3rem, 6vw, 5.5rem);
    overflow: hidden;
    background:
        radial-gradient(820px 260px at 0% 0%, rgba(59, 130, 246, 0.45), rgba(59, 130, 246, 0) 65%),
        radial-gradient(760px 260px at 100% 100%, rgba(29, 78, 216, 0.45), rgba(29, 78, 216, 0) 65%),
        linear-gradient(135deg, #0e2a66 0%, #0a1d4d 45%, #081535 100%);
    color: #ffffff;
}

.fleet-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 15, 35, 0.55) 0%, rgba(8, 15, 35, 0) 30%),
        linear-gradient(0deg, rgba(8, 15, 35, 0.35) 0%, rgba(8, 15, 35, 0) 55%);
    pointer-events: none;
}

.fleet-hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.fleet-hero__content h1 {
    margin: 0 0 1rem 0;
    font-size: clamp(2.1rem, 4.8vw, 3.25rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.fleet-hero__subtitle {
    margin: 0 0 1.8rem 0;
    max-width: 820px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.fleet-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.fleet-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #ffffff;
    background: rgba(59, 130, 246, 0.22);
    border: 1px solid rgba(147, 197, 253, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.fleet-hero__chip--alt {
    background: rgba(13, 148, 136, 0.22);
    border-color: rgba(94, 234, 212, 0.35);
}

.fleet-hero__chip--alt2 {
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(251, 191, 36, 0.42);
    color: #fff7ed;
}

/* --- Fleet sections --- */
.fleet-section {
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
    margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.fleet-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow:
        0 12px 36px -22px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fleet-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 26%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 0 0 6px 6px;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    opacity: 0.85;
    z-index: 2;
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 78, 216, 0.22);
    box-shadow:
        0 26px 56px -28px rgba(29, 78, 216, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

.fleet-card:hover::before {
    width: 100%;
    opacity: 1;
}

.fleet-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(29, 78, 216, 0.18)),
        linear-gradient(180deg, #eaf1fb 0%, #d6e2f5 100%);
    overflow: hidden;
}

.fleet-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fleet-card__pill {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 10px 22px -14px rgba(29, 78, 216, 0.85);
}

.fleet-card__pill--alt {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    box-shadow: 0 10px 22px -14px rgba(13, 148, 136, 0.9);
}

.fleet-card__pill--alt2 {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    box-shadow: 0 10px 22px -14px rgba(245, 158, 11, 0.95);
    color: #fffbeb;
}

.fleet-card__body {
    padding: 1.2rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 auto;
}

.fleet-card__title {
    margin: 0;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.005em;
    line-height: 1.25;
}

.fleet-card__spec {
    margin: 0;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
}

.fleet-card__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.fleet-card__tags li {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1;
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.09);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 999px;
}

.fleet-card__badge {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
}

.fleet-card__badge--ok {
    color: #065f46;
    background: rgba(16, 185, 129, 0.13);
    border-color: rgba(16, 185, 129, 0.35);
}

.fleet-card__badge--ok::before {
    content: "";
    display: inline-block;
    width: 0.42rem;
    height: 0.42rem;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.fleet-card__badge--warn {
    color: #78350f;
    background: rgba(245, 158, 11, 0.13);
    border-color: rgba(245, 158, 11, 0.35);
}

.fleet-card__badge--warn::before {
    content: "";
    display: inline-block;
    width: 0.42rem;
    height: 0.42rem;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* --- Fleet CTA block --- */
.fleet-cta {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(800px 300px at 0% 0%, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0) 65%),
        radial-gradient(800px 300px at 100% 100%, rgba(29, 78, 216, 0.22), rgba(29, 78, 216, 0) 65%),
        linear-gradient(180deg, #f3f6fc 0%, #e6eefa 100%);
}

.fleet-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.fleet-cta__content h2 {
    margin: 0 0 0.8rem 0;
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: #0f172a;
}

.fleet-cta__content p {
    margin: 0;
    color: #334155;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 640px;
}

.fleet-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* --- Reusable buttons (used on fleet page + elsewhere) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.45rem;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.btn--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 14px 34px -16px rgba(29, 78, 216, 0.85);
}

.btn--primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn--ghost {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.55);
}

.btn--ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 78, 216, 0.4);
    color: #1d4ed8;
}

/* --- Fleet responsive --- */
@media (max-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .fleet-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .fleet-hero {
        padding-top: 7.5rem;
        padding-bottom: 2.75rem;
    }

    .fleet-hero__meta {
        gap: 0.5rem;
    }

    .fleet-hero__chip {
        font-size: 0.78rem;
        padding: 0.45rem 0.85rem;
    }

    .fleet-section {
        padding-top: 2.5rem;
    }

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

    .fleet-card {
        border-radius: 16px;
    }

    .fleet-card__body {
        padding: 1rem 1.05rem 1.15rem;
    }

    .fleet-cta {
        padding: 2.5rem 0 2.75rem;
    }

    .fleet-cta__actions .btn {
        width: 100%;
    }
}

/* ============================================================
   Fleet Specs downloads page
   ============================================================ */
.fleet-specs {
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: clamp(3.25rem, 6vw, 5.5rem);
}

.fleet-specs__grid {
    margin-top: clamp(1.6rem, 3vw, 2.4rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.6vw, 1.35rem);
}

.fleet-spec {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow:
        0 12px 36px -22px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.fleet-spec__inner {
    position: relative;
    padding: 1.2rem 1.25rem 1.25rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 1rem;
    align-items: start;
}

.fleet-spec__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.fleet-spec:hover {
    transform: translateY(-3px);
    border-color: rgba(29, 78, 216, 0.22);
    box-shadow:
        0 24px 52px -28px rgba(29, 78, 216, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

.fleet-spec:hover .fleet-spec__inner::before {
    opacity: 1;
}

.fleet-spec__icon {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(29, 78, 216, 0.14));
    color: #1d4ed8;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.fleet-spec__icon svg {
    width: 26px;
    height: 26px;
}

.fleet-spec:hover .fleet-spec__icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    transform: translateY(-1px);
}

.fleet-spec__text {
    grid-column: 2;
    min-width: 0;
}

.fleet-spec__title {
    margin: 0 0 0.35rem 0;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.005em;
}

.fleet-spec__meta {
    margin: 0 0 1rem 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #64748b;
}

.fleet-spec__btn {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 14px 30px -16px rgba(29, 78, 216, 0.85);
    justify-self: start;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.fleet-spec__btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.fleet-spec__btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 18px 34px -16px rgba(29, 78, 216, 0.95);
}

.fleet-spec__btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* --- Fleet Specs responsive --- */
@media (max-width: 992px) {
    .fleet-specs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .fleet-specs {
        padding-top: 2.5rem;
    }

    .fleet-specs__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.9rem;
    }

    .fleet-spec__inner {
        padding: 1rem 1rem 1.1rem;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0 0.85rem;
    }

    .fleet-spec__icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .fleet-spec__icon svg {
        width: 22px;
        height: 22px;
    }

    .fleet-spec__title {
        font-size: 0.98rem;
    }

    .fleet-spec__btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
}

/* Machinery-dimensions hero photo background */
.fleet-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.fleet-hero__overlay {
    background:
        linear-gradient(180deg, rgba(8, 15, 35, 0.78) 0%, rgba(15, 35, 82, 0.58) 35%, rgba(8, 15, 35, 0.78) 100%) !important;
}
