/*
 * responsive.css — Mobil & tablet düzenlemeleri
 * Ana stiller: main.css (varsayılan + min-width ile büyük ekran)
 * Bu dosya main.css’ten SONRA yüklenir; max-width ile küçük ekran düzeltmeleri burada toplanır.
 */

/* -------------------------------------------------------------------------
   ≤1023px — Ana container: yan boşluk artırılır (içerik alanı daralır)
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .container,
  .container--relative {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 1023px) {
  .blog-featured__card,
  .blog-detail-hero__grid,
  .blog-detail__layout {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-detail__aside {
    position: static;
  }
}

/* 1024-1299px: desktop header/footer gecisinde sikismayi onle */
@media (min-width: 1024px) and (max-width: 1299px) {
  .header-bar {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 22px 24px;
  }
  .header-logo-img {
    width: 132px;
  }
  .header-nav {
    margin-left: 12px;
    gap: 18px;
  }
  .header-nav .nav-trigger,
  .header-nav .nav-link,
  .header-lang-btn {
    font-size: 1rem !important;
  }
  .nav-trigger,
  .header-lang-btn {
    padding: 0.45rem 0.5rem;
  }
  .header-phones {
    display: none !important;
  }
  .header-right {
    gap: 0.45rem;
  }
  .header-search-burger {
    gap: 0.35rem;
  }
  .header-search-btn .header-icon-fa,
  .header-lang-btn--globe .header-lang-globe {
    font-size: 1.35rem;
  }
  .header-lang-btn--globe .header-lang-chevron {
    font-size: 0.6rem;
  }
  .header-search-overlay {
    padding-top: 7rem;
  }

  .footer__inner {
    padding: 2rem 2rem 2.25rem;
  }
  .footer__main {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer__cols {
    flex: 1 1 100%;
  }
  .footer__part-5 {
    flex: 1 1 100%;
  }
  .footer__trust-wrap,
  .footer__trust,
  .footer__badges {
    width: 100%;
  }
  .footer__social {
    flex-wrap: wrap;
  }
  .footer__chamber {
    max-width: 100%;
  }
  .footer__bottom,
  .footer__legal-block {
    padding-right: 5rem;
  }
}

@media (max-width: 767px) {
  .blog-hero-card {
    min-height: 0;
    padding: 1rem 1rem 4.75rem;
  }
  .blog-hero-card a {
    margin-left: 3.5rem;
  }
  .blog-featured,
  .blog-list,
  .blog-detail,
  .blog-related {
    padding: 2.75rem 0;
  }
  .blog-featured {
    padding-bottom: 1.5rem;
  }
  .blog-featured__media,
  .blog-detail-hero__media {
    min-height: 15rem;
  }
  .blog-featured__content,
  .blog-card__body {
    padding: 1rem;
  }
  .blog-featured h2 {
    font-size: 1.8rem;
  }
  .blog-grid,
  .blog-related__grid {
    grid-template-columns: 1fr;
  }
  .blog-detail__article {
    font-size: 1rem;
    line-height: 1.65;
  }
  .blog-card__link {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------
   ≤1023px — Our Services: arka plan görselleri her zaman görünsün (hover/3D yok)
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .services__card {
    perspective: none;
  }

  .services__card-inner {
    transform: none !important;
    -webkit-transform: none !important;
    transition: box-shadow 0.2s ease;
    min-height: 260px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .services__card-inner::before {
    background: rgb(7 28 56 / 62%);
  }

  .services__card-inner .services__card-content,
  .services__card-inner .services__card-btn {
    transform: none !important;
    -webkit-transform: none !important;
  }

  .services__card:hover .services__card-inner,
  .services__card:hover .services__card-inner .services__card-content,
  .services__card:hover .services__card-inner .services__card-btn {
    transform: none !important;
    -webkit-transform: none !important;
  }

  /* Her kartın görseli (masaüstü hover ile aynı dosyalar) */
  .services__card:nth-child(1) .services__card-inner {
    background-image: url('../assets/images/services/service-stage-equipment-rental.webp') !important;
  }
  .services__card:nth-child(2) .services__card-inner {
    background-image: url('../assets/images/services/service-technical-event-support.webp') !important;
  }
  .services__card:nth-child(3) .services__card-inner {
    background-image: url('../assets/images/services/service-online-hybrid-events.webp') !important;
  }
  .services__card:nth-child(4) .services__card-inner {
    background-image: url('../assets/images/services/service-internet-streaming.webp') !important;
  }
  .services__card:nth-child(5) .services__card-inner {
    background-image: url('../assets/images/services/service-simultaneous-interpretation.webp') !important;
  }

  /* Test-reverse kart: mobilde düz yüzey, görsel hep açık */
  .services__card.services__card--test-reverse .services__card-inner {
    transform: none !important;
    -webkit-transform: none !important;
    background-image: url('../assets/images/services/service-stage-equipment-rental.webp') !important;
  }
  .services__card.services__card--test-reverse .services__card-inner .services__card-content,
  .services__card.services__card--test-reverse .services__card-inner .services__card-btn {
    transform: none !important;
    -webkit-transform: none !important;
  }
  .services__card.services__card--test-reverse:hover .services__card-inner {
    transform: none !important;
    -webkit-transform: none !important;
    background-image: url('../assets/images/services/service-stage-equipment-rental.webp') !important;
  }
  .services__card.services__card--test-reverse:hover .services__card-inner .services__card-content,
  .services__card.services__card--test-reverse:hover .services__card-inner .services__card-btn {
    transform: none !important;
    -webkit-transform: none !important;
  }
}

/* -------------------------------------------------------------------------
   Mobil header — masaüstü ile aynı renk ve logo; sol telefon, ortada logo, sağda hamburger
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .header .header-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-bar {
    border-radius: 20px;
    padding: 12px 20px;
    justify-content: space-between;
    background: linear-gradient(145deg, #071c38 0%, #0d2844 50%, #071c38 100%);
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(70, 120, 170, 0.18);
  }
  .header-phone-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    flex-shrink: 0;
  }
  .header-phone-btn .header-phone-icon {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  .header-phone-btn:hover .header-phone-icon {
    opacity: 0.9;
    filter: brightness(0) invert(1);
  }
  .header-logo-mobile-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
  .header-logo-shape {
    display: block;
    background: transparent;
    padding: 0;
    clip-path: none;
    flex-shrink: 0;
  }
  .header-logo-shape .header-logo-img {
    display: block;
    width: 120px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
  }
  .header-tagline-mobile {
    display: none !important;
  }
  .header-right .header-btn,
  .header-right .header-search-btn,
  .header-right .header-lang {
    display: none !important;
  }
  .header-right .header-burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    flex-shrink: 0;
  }
  .header-right .header-burger .header-icon-fa {
    font-size: 1.35rem;
  }
  .header-search-overlay {
    padding: 5.75rem 0.75rem 1rem;
  }
  .header-search-panel {
    width: 100%;
    padding: 0.75rem;
    border-radius: 16px;
  }
  .header-search-inner {
    gap: 0.55rem;
    padding: 0.35rem;
    border-radius: 14px;
  }
  .header-search-leading,
  .header-search-close {
    width: 2.45rem;
    height: 2.45rem;
    flex-basis: 2.45rem;
    border-radius: 10px;
  }
  .header-search-input {
    padding: 0.72rem 0.15rem;
    font-size: 0.95rem;
  }
  .header-search-suggestions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 0.65rem;
  }
  .header-search-suggestion {
    min-height: 2.55rem;
    justify-content: flex-start;
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
  }
}

@media (min-width: 1024px) {
  .header-logo-mobile-wrap {
    display: block;
    flex: none;
    min-width: 0;
  }
  .header-tagline-mobile { display: none !important; }
  .header-logo-shape {
    display: block;
    background: transparent;
    padding: 0;
    clip-path: none;
  }
  .header-logo-shape .header-logo-img {
    max-height: none;
    filter: none;
    width: 150px;
  }
}

/* -------------------------------------------------------------------------
   ≤1023px — Hero: koyu gradient kart, başlık, eğik kenarlı görsel, metin, outline CTA
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .container .hero {
    height: auto;
    min-height: 0;
    margin-top: 30px;
    margin-bottom: 0;
    border-radius: clamp(20px, 5vw, 28px);
    overflow: hidden;
    background-image: none;
    background: linear-gradient(165deg, #09101d 0%, #0b1321 30%, #0a111e 58%, #1b2841 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  }

  .hero__overlay {
    display: none !important;
  }

  .hero__content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: clamp(1.25rem, 4vw, 1.5rem);
    padding-bottom: clamp(1.35rem, 4.5vw, 1.75rem);
    padding-left: 0;
    padding-right: 0;
  }

  .hero__image-wrap {
    display: block;
    width: 100%;
    margin: 0 0 1.1rem;
    padding: 0;
  }

  .hero__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 15rem;
    object-fit: cover;
    object-position: center;
    /* Üst kenar soldan sağa hafif yukarı, alt kenar daha belirgin eğim */
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  }

  .hero__title {
    margin: 0;
    max-width: none;
    font-size: clamp(1.35rem, 5.2vw, 1.7rem);
    line-height: 1.22;
    text-align: left;
    padding: 30px 15px;
    font-weight: 300;
  }

  .hero__desc {
    margin: 0;
    max-width: none;
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    padding: 30px 15px;
  }

  .hero__cta-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero__cta {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.92);
    box-sizing: border-box;
    align-self: stretch;
  }
}

/* -------------------------------------------------------------------------
   ≤1023px — We in figures: dikey kartlar; sayı + ikon yan yana, satır ortada; metin ortalı
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .figures__grid {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .figures__card {
    width: 100%;
  }

  .figures__card-inner {
    aspect-ratio: auto;
    min-height: 0;
    padding: 1.25rem 1.25rem 1.5rem;
    border-radius: 18px;
    background: linear-gradient(165deg, #0d1520 0%, #132238 40%, #0f1c2e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .figures__card-blur {
    opacity: 0.4;
  }

  .figures__card-content {
    min-height: 0;
    gap: 1rem;
  }

  .figures__number-block {
    flex-grow: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding: 0 0 0.75rem;
    margin-bottom: 0.25rem;
    width: 100%;
  }

  .figures__number-inner {
    justify-content: center;
    flex-shrink: 0;
  }

  .figures__number-placeholder,
  .figures__number-visible {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    font-weight: 300;
  }

  .figures__number-icons {
    margin-left: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .figures__number-unit {
    font-size: 1rem;
    font-weight: 300;
    margin-right: 0;
  }

  .figures__svg {
    width: 2rem;
    height: 2rem;
    opacity: 0.9;
  }

  .figures__desc {
    text-align: center;
    padding: 0 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    min-height: 0;
  }
}

/* -------------------------------------------------------------------------
   Mobil menü: sağdan beyaz panel + karartılmış arka plan
   ------------------------------------------------------------------------- */
.mobile-drawer-layer {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
}
.mobile-drawer-layer.is-open {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(7, 28, 56, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-drawer-layer.is-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  /* Drawer panel – sağdan sola kayar; .mobile-drawer-layer içine taşındığında gösterilir */
  .mobile-drawer-layer .header-nav,
  .header-nav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(420px, 88vw);
    max-width: 85vw;
    margin: 0;
    padding: 1.35rem 1.25rem 2rem;
    gap: 0;
    background: #fff;
    border-radius: 40px 0 0 0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1;
    pointer-events: none;
    will-change: transform;
  }
  .mobile-drawer-layer .header-nav.open,
  .header-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-drawer-head {
    flex-shrink: 0;
    margin-bottom: 1rem;
  }
  .mobile-drawer-title {
    margin: 0 0 0.85rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--header-bg);
    letter-spacing: -0.02em;
  }
  .mobile-drawer-search-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }
  .mobile-drawer-search {
    position: relative;
    flex: 1;
    min-width: 0;
  }
  .mobile-drawer-input {
    width: 100%;
    padding: 0.65rem 2.5rem 0.65rem 1rem;
    border: 2px solid var(--header-accent);
    border-radius: 9999px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--header-bg);
    background: #fff;
    outline: none;
  }
  .mobile-drawer-input::placeholder {
    color: #6b7280;
  }
  .mobile-drawer-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--header-accent);
    font-size: 1rem;
    pointer-events: none;
  }
  .mobile-drawer-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header-accent);
    font-size: 1.35rem;
    border-radius: 12px;
  }
  .mobile-drawer-close:active {
    background: #e9f1f9;
  }

  .mobile-drawer-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }
  .mobile-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.35rem;
    background: #e9f1f9;
    border-radius: 10px;
    text-decoration: none;
    color: var(--header-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
  }
  .mobile-cat-card:active {
    transform: scale(0.98);
    background: #d4e2f2;
  }
  .mobile-cat-card__icon {
    font-size: 1.35rem;
    color: var(--header-accent);
  }
  .mobile-cat-card__label {
    line-height: 1.2;
  }
  .mobile-drawer-categories .mobile-cat-card:nth-child(5),
  .mobile-drawer-categories .mobile-cat-card:nth-child(6) {
    grid-column: span 1;
  }
  @media (min-width: 380px) {
    .mobile-drawer-categories {
      grid-template-columns: repeat(3, 1fr);
    }
    .mobile-drawer-categories .mobile-cat-card:nth-child(5),
    .mobile-drawer-categories .mobile-cat-card:nth-child(6) {
      grid-column: auto;
    }
  }

  .mobile-drawer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .mobile-drawer-nav-links .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #e9f1f9;
    border-radius: 12px;
    color: var(--header-bg) !important;
    font-weight: 600;
    font-size: 1rem !important;
    text-decoration: none;
    margin: 0;
  }
  .mobile-drawer-nav-links .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #e9f1f9;
    border-radius: 12px;
    color: var(--header-bg) !important;
    font-weight: 600;
    font-size:1rem !important;
  }
  .mobile-drawer-nav-links .nav-trigger .nav-trigger-tab {
    display: none;
  }
  .mobile-drawer-nav-links .nav-chevron {
    color: var(--header-accent);
  }
  .header-nav .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #e9f1f9;
    border-radius: 10px;
    margin-top: 0.35rem;
    padding: 0.35rem 0;
    display: none;
  }
  .header-nav .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .header-nav .dropdown-menu .dropdown-item {
    color: #444 !important;
    font-size: 0.9rem !important;
  }
  .header-nav .dropdown-menu .dropdown-item:hover {
    color: var(--header-accent) !important;
    background: #d4e2f2;
  }
  .header-nav .dropdown-item .dropdown-item-icon {
    color: var(--header-accent);
  }

  .dropdown-submenu-list {
    position: static;
    box-shadow: none;
    background: rgba(70, 120, 170, 0.12);
    border-radius: 0.5rem;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
    padding-left: 0.35rem;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.25s ease;
  }
  .header-nav .dropdown-submenu.open .dropdown-submenu-list {
    max-height: 500px;
  }

  .header-burger { display: flex !important; }

  .gallery__list {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 0 0.25rem 0.65rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    cursor: grab;
  }
  .gallery__list:active {
    cursor: grabbing;
  }
  .gallery__list::-webkit-scrollbar {
    height: 6px;
  }
  .gallery__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
  }
  .gallery__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }

  .gallery__item {
    width: 17.5rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .gallery__item--featured-mobile {
    display: none;
  }
  .gallery__item .gallery__card {
    width: 100%;
  }
  .gallery__list-fade {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0.65rem;
    left: auto;
    width: 3.5rem;
    height: auto;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 88%);
  }

  /* Our Team: sol/sağ ileri–geri okları (<768’de varsayılan gizliydi) */
  .team-swiper-wrap {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
  .team-swiper-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .team-swiper-nav--prev {
    left: 0.15rem;
  }
  .team-swiper-nav--next {
    right: 0.15rem;
  }
  .team-swiper-nav:active {
    background: rgba(7, 28, 56, 0.08);
  }

  .swiper-team .swiper-slide__inner {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Sabit WhatsApp / form — mobilde kenarlardan içeri */
@media (max-width: 1023px) {
  .page-catalog .catalog-list {
    padding-bottom: calc(2.65rem + 8.75rem + env(safe-area-inset-bottom));
  }
  .fab-actions {
    left: 0;
    right: auto;
    width: auto;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.65rem;
    padding-left: 0.85rem;
    padding-right: 0;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .fab-actions__btn,
  .cart-floating {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    font-size: 1.3rem;
  }
  .cart-floating {
    right: 0.85rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .cookie-consent {
    bottom: calc(7.4rem + max(0.85rem, env(safe-area-inset-bottom)));
  }
  .cookie-consent__inner {
    max-height: calc(100dvh - 9.75rem);
    overflow-y: auto;
  }
}

/* Urun modali - dar ekran */
@media (max-width: 767px) {
  .product-modal__media {
    min-height: 200px;
    aspect-ratio: 1;
  }
}

/* Mobile polish pass */
@media (max-width: 767px) {
  .request-modal {
    align-items: center;
    padding: 0.75rem;
    background: rgba(3, 10, 20, 0.9);
  }
  .request-modal__panel {
    max-height: calc(100dvh - 1.5rem);
    padding: 2.75rem 1rem 1.4rem;
    border-radius: 16px;
    background: #071c38;
  }
  .request-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.35rem;
    height: 2.35rem;
    background: rgba(255, 255, 255, 0.12);
  }
  .request-modal__title {
    margin-bottom: 0.9rem;
    padding-right: 2.25rem;
    font-size: 1.18rem;
    line-height: 1.22;
    letter-spacing: 0;
  }
  .request-modal__form {
    padding-top: 0.6rem;
  }
  .request-modal__grid {
    gap: 0.85rem;
    margin-bottom: 0.9rem;
  }
  .request-modal__col--fields {
    gap: 0.85rem;
  }
  .request-modal__field {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.08);
  }
  .request-modal__field--textarea {
    min-height: 7rem;
  }
  .request-modal__textarea {
    min-height: 5rem;
  }
  .request-modal__footer {
    gap: 0.85rem;
    padding-top: 0.75rem;
  }
  .request-modal__submit {
    min-height: 3rem;
  }
  .request-modal__consent {
    align-items: center;
    gap: 0.65rem;
  }
  .request-modal__consent-text {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .gallery-modal {
    align-items: center;
    padding: 0.75rem;
  }
  .gallery-modal__inner {
    border-radius: 12px;
  }
  .gallery-modal__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }
  .gallery-modal__fallback {
    min-height: 2.75rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }

  .products {
    padding: 2.65rem 0 1.5rem;
  }
  .products__head {
    align-items: flex-end;
    gap: 0.65rem;
  }
  .products__title.section-title {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    font-size: 1.55rem;
    line-height: 1.15;
  }
  .products__nav {
    gap: 0.4rem;
    margin-bottom: 0.1rem;
  }
  .products-swiper-nav {
    width: 2.7rem;
    height: 2.7rem;
  }
  .products-swiper-wrap {
    margin-top: 1rem;
  }
  .product-card {
    border-radius: 18px;
  }
  .product-card__img-wrap {
    aspect-ratio: 16 / 11;
    max-height: 255px;
    border-radius: 18px 18px 0 0;
  }
  .product-card__img {
    object-fit: contain;
    padding: 0.75rem;
  }
  .product-card__body {
    padding: 1rem 1rem 1.2rem;
    gap: 0.3rem;
  }
  .product-card__title {
    flex: 0 0 auto;
    font-size: 1rem;
  }
  .product-card__btn {
    margin-top: 0.65rem;
  }

  .figures__number-visible {
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .team {
    padding: 2.65rem 0;
  }
  .team__head {
    max-width: 100%;
  }
  .team__title {
    text-align: left;
    font-size: 1.6rem;
  }
  .team__title.section-title::after {
    left: 0;
    transform: none;
  }
  .team__intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .team-swiper-wrap {
    margin-top: 1.35rem;
    padding-left: 0;
    padding-right: 0;
  }
  .swiper-team .swiper-slide {
    width: min(82vw, 20rem);
  }
  .team-slide__img-wrap {
    height: min(82vw, 20rem);
    border-radius: 14px;
  }
  .team-slide__name {
    max-width: 88%;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
  }
  .team-slide__role {
    font-size: 1.05rem;
  }
  .team-slide__desc {
    font-size: 0.82rem;
  }
  .team__cta-wrap {
    margin-top: 1.5rem;
  }

  .trust {
    min-height: 0;
    padding: 2.65rem 0;
  }
  .trust__title.section-title {
    max-width: 22rem;
    margin: 0 auto 1.5rem;
    font-size: 1.45rem;
    line-height: 1.18;
  }
  .trust__logos {
    height: auto;
    margin-top: 1.35rem;
    overflow: visible;
  }
  .trust__logos::before,
  .trust__logos::after {
    display: none;
  }
  .trust__track {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0 0.75rem;
    gap: 0.75rem;
    animation: none !important;
  }
  .trust__track .trust__logo:nth-child(n+7) {
    display: none;
  }
  .trust__logo {
    width: auto;
    height: 84px;
    padding: 0.75rem;
    border-radius: 8px;
  }

  .footer {
    padding: 1.25rem 0 2rem;
  }
  .footer__inner {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .footer__main {
    gap: 1rem;
    margin-bottom: 1.35rem !important;
  }
  .footer__cols {
    gap: 0;
    padding-bottom: 0.75rem;
  }
  .footer__brand {
    padding-bottom: 0.9rem;
  }
  .footer__logo-img {
    max-height: 3rem;
  }
  .footer__col {
    margin-top: 0;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .footer__title {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
  }
  .footer__list li {
    margin-bottom: 0.35rem;
  }
  .footer__link,
  .footer__contact-label,
  .footer__email-note,
  .footer__chamber,
  .footer__copy,
  .footer__disclaimer,
  .footer__legal {
    font-size: 0.9rem;
  }
  .footer__contact-link,
  .footer__contact-text,
  .footer__cta {
    font-size: 1rem;
  }
  .footer__actions {
    margin-top: 1rem;
  }
  .footer__icon-link {
    width: 2.8rem;
    height: 2.8rem;
  }
  .footer__icon-link i,
  .footer__social-link i {
    font-size: 1.35rem;
  }
  .footer__social {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .footer__social-link {
    width: 2.9rem;
    height: 2.9rem;
  }
  .footer__divider {
    margin: 0.75rem 0 1rem;
  }
  .footer__bottom {
    align-items: flex-start;
  }
  .footer__disclaimer {
    text-align: left;
  }
  .footer__legal-block {
    margin-top: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 1.75rem 0 2.5rem;
  }
  .footer__inner {
    padding: 1.75rem;
    border-radius: 18px;
  }
  .footer__main {
    display: block;
    margin-bottom: 1.5rem !important;
  }
  .footer__cols {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.35rem 1.75rem;
    width: 100%;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .footer__brand,
  .footer__col,
  .footer__part-1,
  .footer__col--1,
  .footer__col--2,
  .footer__col--3,
  .footer__part-5 {
    width: auto;
    min-width: 0;
    flex: none;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .footer__brand {
    align-self: start;
    min-height: 7rem;
  }
  .footer__logo-img {
    max-height: 3.6rem;
  }
  .footer__title {
    margin-bottom: 0.55rem;
    font-size: 1.12rem;
    line-height: 1.25;
  }
  .footer__list li {
    margin-bottom: 0.42rem;
  }
  .footer__link,
  .footer__contact-label,
  .footer__email-note,
  .footer__chamber,
  .footer__copy,
  .footer__disclaimer,
  .footer__legal {
    font-size: 0.94rem;
  }
  .footer__link {
    line-height: 1.38;
  }
  .footer__contact-link,
  .footer__contact-text,
  .footer__cta {
    font-size: 1.02rem;
  }
  .footer__contact-link,
  .footer__contact-text,
  .footer__legal,
  .footer__disclaimer {
    overflow-wrap: anywhere;
  }
  .footer__actions {
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer__cta {
    padding: 0.48rem 0.9rem;
    line-height: 1.35;
  }
  .footer__icon-link {
    width: 2.75rem;
    height: 2.75rem;
  }
  .footer__icon-link i,
  .footer__social-link i {
    font-size: 1.32rem;
  }
  .footer__trust-wrap {
    width: 100%;
    margin-top: 1.25rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .footer__trust {
    width: auto;
    min-width: 0;
  }
  .footer__social {
    flex-wrap: wrap;
    gap: 0.45rem;
  }
  .footer__social-link {
    width: 2.9rem;
    height: 2.9rem;
  }
  .footer__trust-wrap .footer__cta {
    flex-shrink: 0;
    align-self: center;
    margin-top: 0;
    white-space: nowrap;
  }
  .footer__chamber {
    max-width: 100%;
    margin-top: 0.7rem;
  }
  .footer__divider {
    margin: 1rem 0;
  }
  .footer__bottom {
    align-items: flex-start;
    gap: 0.55rem;
    padding-right: 4.25rem;
    padding-left: 4.25rem;
  }
  .footer__disclaimer {
    text-align: left;
  }
  .footer__legal-block {
    margin-top: 0.9rem;
    padding-right: 4.25rem;
    padding-left: 4.25rem;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .footer__cols {
    gap: 1.25rem;
  }
  .footer__trust-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__trust-wrap .footer__cta {
    align-self: flex-start;
    white-space: normal;
  }
}

@media (max-width: 1023px) {
  .subpage-hero {
    padding: 2.5rem 0 3rem;
  }
  .subpage-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-radius: 20px;
  }
  .subpage-hero__media,
  .subpage-hero__img {
    min-height: 20rem;
  }
  .about-intro__grid,
  .about-team-band__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-workflow__grid,
  .about-capabilities__grid,
  .about-services__grid,
  .catalog-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .advantages__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-focus__grid {
    grid-template-columns: 1fr;
  }
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-workspace__grid {
    grid-template-columns: 1fr;
  }
  .subpage-cta__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .subpage-cta__actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .subpage-hero {
    padding: 1.75rem 0 2.5rem;
  }
  .subpage-breadcrumb {
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
  }
  .subpage-hero__grid {
    padding: 1.1rem;
    border-radius: 18px;
  }
  .subpage-hero__title {
    font-size: clamp(2.35rem, 13vw, 3rem);
  }
  .subpage-hero__lead {
    font-size: 0.98rem;
  }
  .subpage-hero__actions {
    flex-direction: column;
    margin-top: 1.25rem;
  }
  .about-button {
    width: 100%;
    min-height: 2.85rem;
  }
  .subpage-hero__panel {
    min-height: 0;
    padding: 1rem;
    border-radius: 8px;
  }
  .subpage-hero__panel h2 {
    font-size: 1.2rem;
  }
  .subpage-hero__address {
    padding: 0.85rem;
  }
  .subpage-hero__quick a {
    padding: 0.75rem;
  }
  .subpage-hero__quick strong {
    overflow-wrap: anywhere;
  }
  .subpage-hero__media {
    display: grid;
  }
  .subpage-hero__media,
  .subpage-hero__img {
    min-height: 16rem;
  }
  .subpage-hero__metric {
    position: static;
    min-width: 0;
    margin-top: 0.75rem;
    margin-left: 3.6rem;
  }
  .about-intro,
  .advantages,
  .projects,
  .about-services,
  .about-focus,
  .about-workflow,
  .about-capabilities,
  .about-team-band,
  .contact-workspace {
    padding: 2.75rem 0;
  }
  .contact-details {
    padding: 0 0 2.75rem;
  }
  .about-stats {
    padding: 0 0 2.75rem;
  }
  .about-stats__grid,
  .about-workflow__grid,
  .about-capabilities__grid,
  .about-services__grid,
  .advantages__grid,
  .projects__grid,
  .catalog-categories-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
  .advantages__card,
  .about-service-card,
  .catalog-category-card {
    min-height: 0;
  }
  .projects__actions {
    flex-direction: column;
  }
  .projects__link,
  .about-focus__link {
    width: 100%;
  }
  .about-focus__content,
  .about-focus__list {
    padding: 1.1rem;
    border-radius: 8px;
  }
  .about-focus__list article {
    grid-template-columns: 1fr;
  }
  .about-capability__body {
    padding: 1.05rem;
  }
  .about-capability__badge {
    left: 0.85rem;
    bottom: 0.85rem;
  }
  .contact-card {
    aspect-ratio: auto;
    min-height: 11rem;
    padding: 1.2rem 1rem;
  }
  .contact-map,
  .contact-form {
    border-radius: 8px;
  }
  .contact-workspace__head {
    margin-bottom: 1rem;
  }
  .contact-workspace__head h2 {
    font-size: 1.8rem;
  }
  .contact-map__head {
    padding: 1.1rem;
  }
  .contact-form {
    padding: 1.1rem;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-map__frame {
    min-height: 20rem;
    margin: 1rem;
    border-radius: 8px;
  }
  .contact-form__field input {
    min-height: 3rem;
  }
  .contact-form__field textarea {
    min-height: 7rem;
  }
  .contact-form__submit {
    width: 100%;
    justify-self: stretch;
  }
  .contact-form__consent {
    align-items: flex-start;
  }
  .about-stat {
    min-height: 7.8rem;
    padding: 1rem;
  }
  .about-stat__icon {
    width: 3rem;
    height: 3rem;
  }
  .about-workflow__head,
  .about-capabilities__head {
    margin-bottom: 1.25rem;
  }
  .about-step {
    min-height: 0;
    padding: 1.1rem;
  }
  .about-step__top {
    margin-bottom: 1.25rem;
  }
  .about-step__number {
    right: 0.85rem;
    bottom: 0.55rem;
    font-size: 4rem;
  }
  .about-team-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .subpage-cta {
    padding: 0 0 2rem;
  }
  .subpage-cta__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
  }
  .subpage-cta__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  .subpage-cta__actions {
    grid-column: auto;
    width: 100%;
    flex-direction: column;
  }
  .subpage-cta__button {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .catalog-controls {
    grid-template-columns: 1fr;
  }
  .catalog-controls__side,
  .catalog-controls__side--links {
    justify-content: flex-start;
  }
  .catalog-filters {
    justify-content: flex-start;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail-layout,
  .product-detail-body__grid {
    grid-template-columns: 1fr;
  }
  .related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .products__catalog-link {
    order: 3;
    width: 100%;
    min-height: 2.7rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
  }
  .product-card__actions {
    gap: 0.5rem;
    margin-top: 0.65rem;
  }
  .catalog-list {
    padding: 2.65rem 0;
  }
  .catalog-list__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
  }
  .catalog-list__count {
    margin-bottom: 0;
  }
  .catalog-controls {
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }
  .catalog-sort,
  .catalog-controls__link {
    width: 100%;
  }
  .catalog-filters {
    flex-wrap: nowrap;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .catalog-advanced {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
  }
  .catalog-advanced__head {
    flex-direction: column;
    gap: 0.75rem;
  }
  .catalog-advanced__actions {
    width: 100%;
  }
  .catalog-advanced__apply,
  .catalog-advanced__clear {
    width: 100%;
  }
  .catalog-advanced__groups {
    grid-template-columns: 1fr;
  }
  .catalog-advanced .catalog-filters {
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }
  .catalog-filter {
    min-height: 2.55rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .catalog-hero-card {
    min-height: 17rem;
    padding: 1.05rem;
    border-radius: 12px;
  }
  .catalog-hero-card__stats {
    grid-template-columns: 1fr;
  }
  .catalog-hero-card__stats span {
    min-height: 0;
  }
  .product-detail-hero {
    padding: 1.75rem 0 2.65rem;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-detail-media,
  .product-detail-info {
    border-radius: 16px;
  }
  .product-detail-media {
    min-height: 18rem;
    padding: 1rem;
  }
  .product-gallery {
    grid-template-columns: 4.35rem minmax(0, 1fr);
    gap: 0.75rem;
  }
  .product-gallery__main {
    min-height: 15rem;
    padding: 0.75rem;
    border-radius: 12px;
  }
  .product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    max-height: 15rem;
    margin: 0;
    padding: 0 0.15rem 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .product-gallery__thumb {
    flex: 0 0 4.05rem;
    width: 4.05rem;
    height: 4.05rem;
  }
  .product-detail-info {
    padding: 1.15rem;
  }
  .product-detail-title {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }
  .product-detail-cart,
  .product-detail-actions {
    flex-direction: column;
  }
  .product-qty,
  .product-detail-add,
  .product-detail-actions .about-button {
    width: 100%;
  }
  .product-qty {
    justify-content: space-between;
  }
  .product-detail-body {
    padding-bottom: 2.65rem;
  }
  .product-description-block,
  .product-detail-note {
    padding: 1.15rem;
  }
  .related-products {
    padding-bottom: 3rem;
  }
  .related-products__grid {
    grid-template-columns: 1fr;
  }
  .related-product-card {
    grid-template-rows: 11.5rem 1fr;
  }
  .related-product-card__actions {
    flex-direction: column;
  }
  .related-product-card__link,
  .related-product-card__cart {
    width: 100%;
  }
  .cart-floating {
    right: 0.85rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    font-size: 1.3rem;
  }
  .cart-drawer__panel {
    width: min(26rem, 92vw);
    padding: 1.15rem;
  }
  .cart-drawer__head h2 {
    font-size: 1.45rem;
  }
  .cart-item {
    grid-template-columns: 4.75rem minmax(0, 1fr);
  }
  .checkout-hero {
    padding: 1.75rem 0 2.5rem;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-title {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }
  .checkout-lead {
    font-size: 1rem;
  }
  .checkout-summary {
    position: static;
  }
  .checkout-fields,
  .checkout-payment-options,
  .checkout-card-preview {
    grid-template-columns: 1fr;
  }
  .checkout-actions,
  .checkout-submit,
  .checkout-secondary {
    width: 100%;
  }
  .checkout-panel__head,
  .checkout-summary__head {
    align-items: flex-start;
  }
  .checkout-payment-option {
    min-height: 0;
  }
}

@media (max-width: 1023px) {
  .services__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.4rem;
  }

  .services__head-cta {
    width: 100%;
  }

  .services__card {
    perspective: none;
  }

  .services__card-inner {
    min-height: 100%;
    padding: 0;
    background: #fff !important;
    background-image: none !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  .services__card:nth-child(n) .services__card-inner,
  .services__card.services__card--test-reverse .services__card-inner,
  .services__card.services__card--test-reverse:hover .services__card-inner {
    background-image: none !important;
  }

  .services__card-inner::before,
  .services__card-inner::after {
    display: none !important;
  }

  .services__card-content,
  .services__card-btn {
    transform: none !important;
    -webkit-transform: none !important;
  }
}

@media (max-width: 767px) {
  .services.services--light {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

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

  .services__card-inner {
    grid-template-rows: 12rem 1fr;
  }

  .services__card-content {
    padding: 1rem;
  }

  .services__card-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .services--flip .services__card {
    perspective: none;
  }

  .services--flip .services__card-inner,
  .services--flip .services__card.services__card--test-reverse .services__card-inner,
  .services--flip .services__card.services__card--test-reverse:hover .services__card-inner {
    min-height: 260px;
    padding: 1.5rem 1.5rem 4.25rem;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition: box-shadow 0.2s ease;
  }

  .services--flip .services__card-inner::before {
    display: block !important;
    background: linear-gradient(180deg, rgb(7 28 56 / 24%) 0%, rgb(7 28 56 / 68%) 100%);
  }

  .services--flip .services__card-inner .services__card-content,
  .services--flip .services__card-inner .services__card-btn,
  .services--flip .services__card:hover .services__card-inner,
  .services--flip .services__card:hover .services__card-inner .services__card-content,
  .services--flip .services__card:hover .services__card-inner .services__card-btn {
    transform: none !important;
    -webkit-transform: none !important;
  }

  .services--flip .services__card:nth-child(1) .services__card-inner,
  .services--flip .services__card.services__card--test-reverse .services__card-inner,
  .services--flip .services__card.services__card--test-reverse:hover .services__card-inner {
    background-image: url('../assets/images/services/service-stage-equipment-rental.webp') !important;
  }
  .services--flip .services__card:nth-child(2) .services__card-inner {
    background-image: url('../assets/images/services/service-technical-event-support.webp') !important;
  }
  .services--flip .services__card:nth-child(3) .services__card-inner {
    background-image: url('../assets/images/services/service-online-hybrid-events.webp') !important;
  }
  .services--flip .services__card:nth-child(4) .services__card-inner {
    background-image: url('../assets/images/services/service-internet-streaming.webp') !important;
  }
  .services--flip .services__card:nth-child(5) .services__card-inner {
    background-image: url('../assets/images/services/service-simultaneous-interpretation.webp') !important;
  }
}

@media (max-width: 767px) {
  .services--flip .services__card-content {
    padding: 0;
  }

  .services--flip .services__card-btn {
    width: auto;
    justify-content: center;
  }
}

@media (max-width: 1180px) {
  .cookie-consent__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .cookie-consent__actions {
    justify-content: flex-start;
  }
  .legal-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .legal-hero__aside {
    min-height: 12rem;
  }
  .checkout-section {
    padding-top: 1.4rem;
  }
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  .checkout-form {
    order: 2;
  }
  .checkout-summary {
    position: static;
    order: 1;
  }
  .checkout-summary__empty {
    min-height: 11rem;
  }
  .checkout-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkout-payment-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .checkout-card-preview {
    grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  }
  .checkout-bank-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .checkout-payment-options {
    grid-template-columns: minmax(0, 1fr);
  }
  .checkout-payment-option {
    min-height: 0;
    grid-template-columns: 2.65rem minmax(0, 1fr);
    align-items: start;
    padding: 0.95rem 3rem 0.95rem 0.95rem;
  }
  .checkout-payment-option__icon {
    grid-row: 1 / span 2;
  }
  .checkout-card-preview {
    grid-template-columns: minmax(0, 1fr);
  }
  .checkout-bank-panel__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .checkout-card-preview__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkout-card-preview__fields .checkout-field--card-number {
    grid-column: 1 / -1;
  }
  .checkout-card-preview__mock {
    min-height: 9.5rem;
  }
  .checkout-summary__empty {
    min-height: 10rem;
  }
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 0.75rem;
  }
  .cookie-consent__inner {
    max-height: calc(100dvh - 9.75rem);
    overflow-y: auto;
    padding: 0.9rem;
  }
  .cookie-consent__main {
    gap: 0.65rem;
  }
  .cookie-consent__icon {
    width: 2.35rem;
    height: 2.35rem;
    flex-basis: 2.35rem;
    font-size: 1.05rem;
  }
  .cookie-consent__actions,
  .cookie-consent__preference-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }
  .cookie-consent__btn {
    width: 100%;
    white-space: normal;
  }
  .cookie-consent__option {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
  }
  .cookie-consent__option input {
    justify-self: start;
  }
  .legal-hero {
    padding: 1.75rem 0 2.5rem;
  }
  .legal-hero__aside {
    min-height: 10rem;
    padding: 1rem;
  }
  .legal-content {
    padding: 1rem 0 2.65rem;
  }
  .legal-document {
    padding: 1rem;
    border-radius: 8px;
  }
  .legal-section {
    padding: 1rem 0;
  }
  .checkout-section {
    padding: 1rem 0 2.65rem;
  }
  .checkout-panel,
  .checkout-summary {
    padding: 1rem;
    border-radius: 10px;
  }
  .checkout-panel__head,
  .checkout-summary__head {
    gap: 0.75rem;
  }
  .checkout-summary__head {
    flex-direction: column;
  }
  .checkout-summary__count {
    align-self: flex-start;
  }
  .checkout-panel__icon {
    width: 2.45rem;
    height: 2.45rem;
    flex-basis: 2.45rem;
  }
  .checkout-panel h2,
  .checkout-summary h2 {
    font-size: 1.28rem;
    line-height: 1.15;
  }
  .checkout-fields,
  .checkout-card-preview,
  .checkout-card-preview__fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }
  .checkout-card-preview {
    padding: 0.85rem;
  }
  .checkout-bank-panel {
    padding: 0.85rem;
  }
  .checkout-bank-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-bank-card__details div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
  }
  .checkout-card-preview__head,
  .checkout-card-preview__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-card-preview__fields .checkout-field--card-number {
    grid-column: auto;
  }
  .checkout-field input,
  .checkout-field select,
  .checkout-field textarea {
    min-height: 3rem;
    font-size: 0.94rem;
  }
  .checkout-field .phone-control {
    grid-template-columns: minmax(5rem, 5.35rem) minmax(0, 1fr);
  }
  .checkout-actions,
  .checkout-submit,
  .checkout-secondary {
    width: 100%;
  }
  .checkout-summary-item {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.7rem;
  }
  .checkout-summary__totals div {
    display: grid;
    gap: 0.25rem;
  }
  .checkout-summary__totals strong {
    text-align: left;
  }
  .checkout-support {
    grid-template-columns: 1fr;
  }
}
