/* ==========================================================================
   Авто для перемоги — головна сторінка
   Джерело макета: Figma (Cars for Victory), файл eIv5IlZEaTvvdNjeqB3PkC
========================================================================== */

/* #region Fonts */
@font-face {
  font-family: "Roboto Flex";
  src: url("../fonts/roboto-flex-variable.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
/* #endregion */

   :root {
    /* Colors */
    --color-dark: #1c1a1f;
    --color-bg-page: #18161a;
    --color-bg-card: #363732;
    --color-bg-card-light: #565751;
    --color-accent: #e7b434;
    --color-white: #ffffff;
  
    --color-text-on-dark-70: rgba(255, 255, 255, 0.7);
    --color-text-on-dark-80: rgba(255, 255, 255, 0.8);
    --color-text-on-dark-40: rgba(255, 255, 255, 0.4);
    --color-overlay-10: rgba(255, 255, 255, 0.1);
    --color-overlay-black-60: rgba(0, 0, 0, 0.6);
  
    /* Typography */
    --font-main: "Roboto Flex", "Roboto", Arial, sans-serif;
  
    /* Layout */
    --container-max: 1360px;
    --page-gutter: 16px;
    --card-radius: 24px;
    --radius-md: 6px;
    --radius-pill: 100px;
  
    --section-gap: 110px;
  }
  
  /* ==========================================================================
     Reset & base
     ========================================================================== */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body,
  h1,
  h2,
  h3,
  p,
  ul,
  ol,
  dl,
  dd,
  figure {
    margin: 0;
  }
  
  ul,
  ol {
    padding: 0;
    list-style: none;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    /* prevent iOS tap highlight */
    -webkit-tap-highlight-color: transparent;
    
  }
  
  body {
    font-family: var(--font-main);
    background-color: var(--color-bg-page);
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
  }
  
  .page {
    overflow-x: hidden;
  }
  
  /* ==========================================================================
     Layout helpers
     ========================================================================== */
  
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--page-gutter);
  }
  
  .main > section + section {
    margin-top: var(--section-gap);
  }
  
  @media (min-width: 1024px) {
    /* .header floats via position: absolute (to overlay the hero image) and
       takes no space in normal flow, so pages without a hero need this
       reserved offset to avoid their first heading sitting under the header. */
    .main {
      padding-top: 148px;
    }
  
    .mob-btn-hide {
      display: none;
    }
  
    .hero {
      margin-top: -148px;
    }
  }
  
  .card-section {
    background-color: var(--color-bg-card);
    border-radius: var(--card-radius);
    margin-inline: var(--page-gutter);
    padding-block: 60px;
  }
  
  .card-section .container {
    padding-inline: 24px;
  }
  
  /* ==========================================================================
     Buttons & links
     ========================================================================== */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  
  .btn:hover {
    opacity: 0.88;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .btn--accent {
    background-color: var(--color-accent);
    color: var(--color-dark);
  }
  
  .btn--white {
    background-color: var(--color-white);
    color: var(--color-dark);
    border: 1px solid var(--color-white);
    padding: 10px 20px;
  }
  
  .link {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
  }
  
  .link--accent {
    color: var(--color-accent);
  }
  
  .link--accent:hover {
    text-decoration: underline;
  }
  
  /* ==========================================================================
     Header
     ========================================================================== */
  
  .header {
    position: absolute;
    inset: 32px 40px auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Mobile Menu */
  
  .mob-menu {
    padding: 194px 16px 0 16px;
    background-color: #1e1e1e;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform: translateY(-100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
  }
  
  .mob-menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .mob-menu-item {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mob-menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .mob-menu-item a {
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    color: var(--color-white);
  }
  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  
  .is-hidden {
    display: none;
  }
  
  .mob-menu.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .burger.active {
    display: none;
  }
  
  .close-mob-menu {
    display: none;
  }
  
  .close-mob-menu.active {
    display: block;
    z-index: 1002;
  }
  
  .mob-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 17px;
    gap: 36px;
  }
  
  .header-phone {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: var(--color-white);
    transition: color 0.3s ease;
  }
  
  .mob_menu-soc-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .mob_menu-soc-item {
  }
  .mob_menu-soc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: var(--color-dark);
  }
  
  .btn-mob {
    width: 100%;
    height: 56px;
  }
  
  .header-mob-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .header-burger-icon {
    fill: #e3e3e3;
  }
  
  .close-mob-menu {
    fill: #000;
  }
  
  /* end mob-menu */
  
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
  }
  
  .header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  
  .header__logo-image {
    width: 174px;
    height: 72px;
    z-index: 1001;
  }
  
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background-color: var(--color-overlay-10);
    backdrop-filter: blur(1px);
  }
  
  .header__nav-link {
    font-size: 16px;
    color: var(--color-text-on-dark-70);
    white-space: nowrap;
    transition: color 0.2s ease;
  }
  
  .header__nav-link:hover {
    color: var(--color-white);
  }
  
  .header__cta {
    flex-shrink: 0;
    height: 44px;
  }
  
  /* ==========================================================================
     Hero
     ========================================================================== */
  
  .hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    margin-inline: var(--page-gutter);
    min-height: 723px;
    isolation: isolate;
  }
  
  .hero__media {
    position: absolute;
    inset: 0;
  }
  
  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero__scrim {
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-black-60);
  }
  
  .hero__top-gradient {
    position: absolute;
    inset: 0 0 auto 0;
    height: 149px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    pointer-events: none;
  }
  
  .hero__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    min-height: 723px;
    padding: 24px 24px 60px;
  }
  
  .hero__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 625px;
  }
  
  .hero__intro-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .hero__title {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
  }
  
  .hero__description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
  }

  .hero__cta { 
    height: 56px;
  }
  
  .hero__stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 24px;
    border-radius: var(--radius-md);
    background-color: var(--color-overlay-10);
    backdrop-filter: blur(4px);
  }
  
  .hero__stats-icons {
    display: flex;
    gap: 6px;
  }
  
  .hero__stats-icon {
    width: 52px;
    height: 60px;
  }

  .hero__stats-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .hero__stats-number {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-accent);
  }
  
  .hero__stats-label {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  /* ==========================================================================
     About
     ========================================================================== */
  
  .about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about__media {
    flex: 1 1 560px;
    max-width: 670px;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 670 / 479;
  }
  
  .about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about__content {
    flex: 1 1 480px;
    max-width: 649px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .about__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
  }
  
  .about__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
  }
  
  .about__text strong {
    color: var(--color-white);
    font-weight: 700;
  }
  
  .about__link {
    margin-top: 20px;
  }
  
  /* ==========================================================================
     Deliveries
     ========================================================================== */
  
  .deliveries__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .deliveries__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 545px;
  }
  
  .deliveries__description {
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
    max-width: 567px;
    padding-top: 16px;
  }
  
  .deliveries__description strong {
    color: var(--color-white);
    font-weight: 700;
  }
  
  .deliveries__list {
    margin-bottom: 32px;
  }
  
  .deliveries-swiper .deliveries__item.swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .deliveries__image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-white);
    aspect-ratio: 654 / 426;
  }
  
  .deliveries__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .deliveries__caption {
    font-size: 16px;
    line-height: 1.4;
  }
  
  /* ==========================================================================
     Slider navigation (deliveries, news)
     ========================================================================== */
  
  .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  
  .slider-nav__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }
  
  .slider-nav__arrow--prev,
  .slider-nav__arrow--next {
    border: 1px solid var(--color-white);
  }
  
  .slider-nav__arrow--prev,
  .slider-nav__arrow--next {
    border: 1px solid var(--color-white);
    transition: background-color 0.3s ease;
  }
  
  .slider-nav__arrow--prev:hover,
  .slider-nav__arrow--next:hover {
    background-color: var(--color-white); /* или любой нужный цвет */
  }
  
  /* .slider-nav__arrow--prev .slider-nav__icon {
    transform: rotate(180deg);
  } */
  
  /* .slider-nav__arrow--next .slider-nav__icon {
    filter: brightness(0);
  } */
  
  .slider-nav__icon {
    fill: var(--color-white);
    width: 28px;
    height: 28px;
  }
  
  .slider-nav__arrow--prev:hover .slider-nav__icon,
  .slider-nav__arrow--next:hover .slider-nav__icon {
    fill: var(--color-dark);
  }
  
  .slider-nav__arrow:hover {
    opacity: 0.8;
  }
  
  .slider-nav__dots {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .slider-nav .slider-nav__dots.swiper-pagination-horizontal {
    width: auto;
  }
  
  .slider-nav__dots--standalone {
    justify-content: center;
    margin-top: 40px;
  }
  
  .swiper-pagination-bullet.slider-nav__dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-pill);
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .swiper-pagination-bullet.slider-nav__dot.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: var(--color-white);
  }
  
  /* ==========================================================================
     Partners
     ========================================================================== */
  
  .partners__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .partners__list {
    margin-bottom: 40px;
  }
  
  .partners__item.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 20px;
  }
  
  .partners__logo {
    max-height: 53px;
    width: auto;
    object-fit: contain;
  }
  
  /* ==========================================================================
     Team
     ========================================================================== */
  
  .team__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .team__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .team__member {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-bg-card-light);
    aspect-ratio: 317.5 / 375;
    display: flex;
    align-items: flex-end;
  }

  .team__link {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }
  
  .team__member--lead {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 653 / 771;
  }
  
  .team__photo {
    position: absolute;
    inset: 0;
  }
  
  .team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team__member::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 43%;
    background: linear-gradient(to top, var(--color-bg-card-light), transparent);
    pointer-events: none;
  }
  
  .team__info {
    position: relative;
    z-index: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .team__name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .team__role {
    font-size: 16px;
    color: var(--color-text-on-dark-80);
    line-height: 1.4;
  }
  
  /* ==========================================================================
     Video
     ========================================================================== */
  
  .video__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .video__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
  }
  
  .video__subtitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
  }
  
  .video__play {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1360 / 578;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-dark);
  }
  
  .video__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video__scrim {
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-black-60);
  }
  
  .video__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-pill);
    background-color: var(--color-white);
    transition: transform 0.2s ease;
  }
  
  .video__play:hover .video__play-icon {
    transform: translate(-50%, -50%) scale(1.08);
  }
  
  /* ==========================================================================
     News
     ========================================================================== */
  
  .news__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .news__list {
    margin-bottom: 30px;
  }
  
  .news__item .swiper-slide {
    flex: 1 1 320px;
  }
  
  .news__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .news__image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-bg-card-light);
    aspect-ratio: 670 / 400;
  }
  
  .news__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .news__date {
    font-size: 16px;
    color: var(--color-text-on-dark-40);
  }
  
  .news__headline {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .news__more {
    display: flex;
    margin-inline: auto;
    margin-top: 30px;
    height: 50px;
    width: 191px;
  }
  
  /* ==========================================================================
     Support / donate
     ========================================================================== */
  
  .support__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .support__content {
    flex: 1 1 480px;
    max-width: 618px;
    display: flex;
    flex-direction: column;
  }
  
  .support__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  
  .support__description {
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
    margin-bottom: 28px;
  }
  
  .support__description strong {
    color: var(--color-white);
    font-weight: 700;
  }
  
  .support__details {
    display: flex;
    flex-direction: column;
  }
  
  .support__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-block: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .support__detail:first-child {
    padding-top: 0;
  }
  
  .support__detail-label {
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-text-on-dark-80);
  }
  
  .support__detail-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
  }
  
  .support__copy {
    display: inline-flex;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }

  .support__copy img {
    display: block;
    width: 18px;
    height: 18px;
  }
  
  .support__copy:hover,
  .support__copy.is-copied {
    opacity: 1;
  }
  
  .support__media {
    flex: 1 1 480px;
    max-width: 653px;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 653 / 500;
  }
  
  .support__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  
  .footer {
    background-color: var(--color-bg-page);
    margin-top: var(--section-gap);
    padding-block: 60px;
  }
  
  .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer__logo {
    display: flex;
    align-items: center;
  }
  
  .footer__logo-image {
    width: 174px;
    height: 72px;
  }
  
  .footer__nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  
  .footer__nav-link {
    font-size: 16px;
    transition: color 0.2s ease;
  }
  
  .footer__nav-link:hover {
    color: var(--color-accent);
  }
  
  .footer__contacts {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer__phone {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .footer__socials {
    display: flex;
    gap: 12px;
  }
  
  .footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: var(--color-dark);
    transition: background-color 0.2s ease;
  }
  
  .footer__social:hover {
    background-color: var(--color-accent);
  }

  .footer__cta {
    height: 44px;
    padding-top: 0;
    padding-bottom: 0;
    
  }
  
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    font-size: 14px;
    color: var(--color-text-on-dark-40);
  }
  
  .footer__credit-accent {
    color: var(--color-accent);
  }
  
  /* ==========================================================================
     Responsive
     ========================================================================== */
  
  @media (max-width: 1279px) {
    :root {
      --section-gap: 90px;
    }
  
    .hero__title {
      font-size: 64px;
    }
  
    .about__title,
    .deliveries__title,
    .partners__title,
    .team__title,
    .video__title,
    .news__title,
    .support__title {
      font-size: 48px;
    }
  
    .team__list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .team__member--lead {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 653 / 480;
    }
  }

  @media (min-width: 1280px) and (max-width: 1399px) {
    .support__title {
      font-size: 54px;
    }
  }
  
  @media (max-width: 1023px) {
    .header {
      inset: 16px var(--page-gutter) auto;
      padding: 0;
      background-color: transparent;
    }

    .main {
      padding-top: 104px;
    }
  
    .header__nav {
      display: none;
    }
  
    .header__cta-hide {
      display: none;
    }
  
    .hero {
      margin-top: -104px;
      min-height: min(100dvh, 800px);
    }
  
    .hero__body {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
      min-height: min(100dvh, 800px);
      padding-top: 120px;
    }
  
    .hero__title {
      font-size: 48px;
    }
  
    .about__inner,
    .support__inner {
      flex-direction: column;
    }
  
    .about__media,
    .about__content,
    .support__content,
    .support__media {
      max-width: 100%;
      flex-basis: auto;
    }
  
    .deliveries__header {
      flex-direction: column;
      gap: 12px;
    }
  
    .deliveries__description {
      padding-top: 0;
    }
  }
  
  @media (max-width: 767px) {
    :root {
      --section-gap: 64px;
      --page-gutter: 12px;
    }
  
    .card-section {
      padding-block: 40px;
    }
  
    .card-section .container {
      padding-inline: 16px;
    }
  
    .hero__title {
      font-size: 36px;
    }
  
    .hero__description {
      font-size: 16px;
    }

    .hero__cta {
      width: 100%;
    }

    .hero__stats {
      flex-direction: row;
      align-items: center;
      gap: 20px;
      width: 100%;
    }

    .hero__stats-text {
      align-items: center;
    }
  
    .hero__stats-number {
      font-size: 40px;
    }

    .hero__stats-label {
      font-size: 16px;
      text-transform: lowercase;
      line-height: 1.1;
      font-weight: 600;
    }
  
    .about__title,
    .deliveries__title,
    .partners__title,
    .team__title,
    .video__title,
    .news__title,
    .support__title {
      font-size: 32px;
    }

    .support__inner {
      gap: 24px;
    }

    .support__title {
      margin-bottom: 20px;
    }

    .support__description {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .support__detail-value {
      font-size: 15px;
    }
  
    .video__subtitle {
      font-size: 18px;
    }
  
    .team__list {
      grid-template-columns: 1fr;
    }
  
    .team__member,
    .team__member--lead {
      grid-column: span 1;
      grid-row: span 1;
      aspect-ratio: 343 / 375;
    }
  
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer__contacts {
      width: 100%;
      justify-content: space-between;
    }

    .footer__cta {
      width: 100%;
    }
  
    .footer__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }
  
  @media (max-width: 479px) {
    .hero__title {
      /* font-size: 28px; */
      font-size: 36px;
    }
  
    .hero__stats {
      padding: 16px;
    }
  
    .support__detail-value {
      flex-wrap: wrap;
    }
  }
  
  /* ==========================================================================
     Inner pages — shared page title
     (новини / про нас / фото / відео)
     ========================================================================== */
  
  .page-title {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    /* margin-bottom: 60px; */
    margin-bottom: 30px;
  }

  .page-title--center {
    text-align: center;
  }
  
  /* ==========================================================================
     News listing (news.html)
     ========================================================================== */
  
  .news-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-bottom: 60px;
  }
  
  .news-list__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .news-list__image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-bg-card-light);
    aspect-ratio: 440 / 263;
  }
  
  .news-list__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .news-list__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .news-list__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .news-list__date {
    font-size: 13px;
    color: var(--color-text-on-dark-40);
  }
  
  .news-list__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }

  .news-list__title a {
    color: inherit;
    text-decoration: none;
  }
  
  .news-list__more {
    display: flex;
    margin-inline: auto;
    height: 50px;
    width: 190px;
  }
  
  /* ==========================================================================
     Gallery — photo & video listings (gallery.html / videos.html)
     ========================================================================== */
  
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-bottom: 60px;
  }
  
  .gallery__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .gallery__frame {
    display: block;
    width: 100%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-white);
    aspect-ratio: 440 / 287;
  }
  
  .gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery__scrim {
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay-black-60);
  }
  
  .gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-pill);
    background-color: var(--color-white);
  }
  
  .gallery__caption {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .gallery__more {
    display: flex;
    margin-inline: auto;
    height: 50px;
    width: 190px;
  }
  
  /* ===========Gallery & Video lightbox==================== */
  /* #region Gallery & Video lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  
  .lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .lightbox__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
  }
  
  .lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 100%;
     max-width: min(100%, 1280px); */
    max-width:1280px;
    width:100%;
    max-height: 100%;
  }
  
  .lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    background-color: var(--color-overlay-10);
    transition: opacity 0.2s ease;
  }
  
  .lightbox__close:hover {
    opacity: 0.8;
  }
  
  .lightbox__close-icon {
    display: block;
    width: 14px;
    height: 14px;
  }
  
  .lightbox__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 32px);
    margin: 0;
  }
  
  .lightbox__image {
    display: block;
    width: min(70vw, 960px);
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
  }

  .lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-white);
    background-color: transparent;
    transform: translateY(-50%);
    transition:
      opacity 0.2s ease,
      background-color 0.3s ease;
  }
  
  .lightbox__nav:hover {
    background-color: var(--color-white);
  }
  
  .lightbox__nav--prev {
    left: 16px;
  }
  
  .lightbox__nav--next {
    right: 16px;
  }
  
  .lightbox__nav-icon {
    fill: var(--color-white);
    width: 28px;
    height: 28px;
  }
  
  .lightbox__nav:hover .lightbox__nav-icon {
    fill: var(--color-dark);
  }
  
  @media (max-width: 767px) {
    .lightbox {
      padding: 12px;
    }
  
    .lightbox__close {
      top: 12px;
      right: 12px;
      width: 40px;
      height: 40px;
    }
  
    .lightbox__nav {
      width: 40px;
      height: 40px;
    }
  
    .lightbox__nav--prev {
      left: 8px;
    }
  
    .lightbox__nav--next {
      right: 8px;
    }
  
    .lightbox__image {
      width: min(70vw, calc(100% - 88px));
      max-height: 80vh;
    }

  }

  body.lightbox-open {
    overflow: hidden;
  }

  .lightbox__video {
    position: relative;
    /* width: min(100%, 1280px); */
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
    max-height: 90vh;
  }
  
  .lightbox__video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-md);
  }

  @media (max-width: 1023px) {
    .lightbox {
      padding: 56px 16px 16px;
    }

    .lightbox__video {
      width: min(90vw, 720px);
      max-height: 70vh;
    }
  }

  @media (max-height: 700px) {
    .lightbox {
      padding: 56px 16px 16px;
    }

    .lightbox__video {
      width: min(80vw, calc((100vh - 80px) * 16 / 9));
      max-height: calc(100vh - 80px);
    }
  }

  /*#endregion*/
  
  /* ==========================================================================
     Single article (article.html)
     ========================================================================== */
  
  .article__head {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 39px;
  }
  
  .article__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
  }
  
  .article__date {
    font-size: 14px;
    color: var(--color-text-on-dark-40);
  }
  
  .article__media {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1360 / 496;
    margin-bottom: 40px;
  }
  
  .article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .article__body {
    max-width: 900px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .article__text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-70);
  }
  
  .article__text p + p {
    margin-top: 20px;
  }
  
  .article__media--inline {
    margin-bottom: 0;
  }
  
  .article__cta {
    display: flex;
    margin-inline: auto;
    margin-top: 40px;
  }
  
  /* ==========================================================================
     Founder story (about.html)
     ========================================================================== */
  
  .story__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1360 / 496;
    margin-bottom: 40px;
  }
  
  .story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .story__text {
    max-width: 880px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
    font-weight: 400;

    margin-bottom: 40px;
  }

  .story__text p + p,
  .story__text p + ul,
  .story__text ul + p {
    margin-top: 20px;
  }

  .story__text ul {
    padding-left: 0;
    list-style: none;
  }

  .story__text li {
    position: relative;
    padding-left: 20px;
  }

  .story__text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent); /* #E7B434 */
  }

  .story__text li + li {
    margin-top: 8px;
  }
  
  .story__quote {
    max-width: 881px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
    text-align: center;
    margin-bottom: 40px;
  }
  
  .story__cta {
    display: flex;
    margin-inline: auto;
    margin-bottom: 60px;
    height: 50px;
    width: 100%;
    max-width: 270px;
  }
  
  .story__closing {
    max-width: 881px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
    text-align: center;
  }
  
  /* ==========================================================================
     Team member profile (team-member.html)
     ========================================================================== */
  
  .profile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: var(--section-gap);
  }
  
  .profile__media-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 360px;
    max-width: 441px;
  }
  
  .profile__media {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-bg-card-light);
    aspect-ratio: 441 / 505;
  }
  
  .profile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .profile__link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: color 0.2s ease;
  }
  
  .profile__link:hover {
    color: var(--color-accent);
  }
  
  .profile__link-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  
  .profile__info {
    flex: 1 1 480px;
    max-width: 881px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .profile__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .profile__name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
  }
  
  .profile__role {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .profile__bio {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .profile__tagline {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .profile__text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-on-dark-80);
  }
  
  .profile__text p + p {
    margin-top: 10px;
  }
  
  /* ==========================================================================
     Inner pages — responsive
     ========================================================================== */
  
  @media (max-width: 1279px) {
    .page-title,
    .article__title {
      font-size: 48px;
    }
  
    .news-list__grid,
    .gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 1023px) {
    .profile {
      flex-direction: column;
    }
  
    .profile__media-col,
    .profile__info {
      max-width: 100%;
      flex-basis: auto;
    }
  }
  
  @media (max-width: 767px) {
    .page-title {
      font-size: 32px;
      margin-bottom: 32px;
    }

    .story__media {
      aspect-ratio: 343 / 249;
    }

    .story__cta {
      max-width: none;
    }
  
    .article__title {
      font-size: 32px;
    }
  
    .news-list__grid,
    .gallery__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .profile__name {
      font-size: 28px;
    }
  
    .profile__tagline {
      font-size: 20px;
    }
  
    .news__more {
      width: 100%;
    }

    .news-list__more {
      width: 100%;
    }

    .gallery__more {
      width: 100%;
    }
  }
  

/* ===============styles from dist for swiper================ */

.swiper{
  z-index:1;
  margin-left:auto;
  margin-right:auto;
  padding:0;
  list-style:none;
  display:block;
  position:relative;
  overflow:hidden;
}

.swiper-vertical>.swiper-wrapper{
  flex-direction:column;
}

.swiper-wrapper{
  z-index:1;
  width:100%;
  height:100%;
  transition-property:transform;
  transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);
  box-sizing:content-box;
  display:flex;
  position:relative;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper{
  transform:translate3d(0,0,0);
}

.swiper-horizontal{
  touch-action:pan-y;
}

.swiper-vertical{
  touch-action:pan-x;
}

.swiper-slide{
  flex-shrink:0;
  width:100%;
  height:100%;
  position:relative;
  display:block;
  transition-property:transform;
}
