/* Mobil/tablet (max-width) düzenlemeleri: theme/css/responsive.css — index.html’de bu dosyadan sonra yüklenir */
/* ===== Fonts (Gilroy) ===== */
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Gilroy-Regular.woff2') format('woff2'),
       url('../assets/fonts/Gilroy-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/Gilroy-Bold.woff2') format('woff2'),
       url('../assets/fonts/Gilroy-Bold.woff') format('woff');
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: hidden;
}
/* Düz beyaz gövde — koyu gradient yalnızca .figures ve .trust bölümlerinde */
body {
  margin: 0;
  font-family: var(--font);
  color: #071c38;
  background-color: #fff;
  background-image: none;
  min-height: 100vh;
  padding-top: 76px;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body { padding-top: 128px; }
}

/* ===== Container (senin ekranın: 1897px) ===== */
.container {
  width: 100%;
  max-width: 1897px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.flex { display: flex; }
.flex-column { flex-direction: column; }
.items-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.ms-1 { margin-inline-start: 0.25rem; }
.ms-3 { margin-inline-start: 0.75rem; }
.ms-auto { margin-inline-start: auto; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
@media (min-width: 992px) {
  .d-lg-flex { display: flex !important; }
  .d-lg-none { display: none !important; }
}

.btn-reset {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.rounded-pill { border-radius: 9999px; }
.rounded-circle { border-radius: 50%; }
.fw-semibold { font-weight: 600; }

.m-0 { margin: 0; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.text-center { text-align: center; }

.list-unstyled { list-style: none; margin: 0; padding: 0; }
/* Font Awesome header ikonları */
.header-icon-fa { color: inherit; flex-shrink: 0; }
.header-icon-fa-sm { font-size: 0.65rem; }
.header-icon-fa-lg { font-size: 1.25rem; }

/* ===== Variables ===== */
:root {
  --bg-dark: #1a1520;
  --header-accent: #4678AA;
  --header-bg: #071C38;
  --header-ash: rgba(255, 255, 255, 0.9);
  --text: #ffffff;
  --font: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  /* Sayfa gövdesi gradient paleti */
  --page-1: #071c38;
  --page-2: #103058;
  --page-3: #204e81;
  --page-4: #4678aa;
  --page-5: #0f4c81;
  --page-text: rgba(255, 255, 255, 0.94);
  --page-text-muted: rgba(255, 255, 255, 0.76);
  /* Eski body arka planı — yalnızca figures + trust */
  --page-bg-dark: #0a0e14;
  --page-bg-dark-gradient: linear-gradient(
    180deg,
    rgba(7, 28, 56, 0.5) 0%,
    transparent 28%,
    transparent 72%,
    rgba(15, 76, 129, 0.12) 100%
  );
  /* Çizgi ↔ başlık ve bölüm sonu ↔ çizgi aynı boşluk */
  --section-gap: 3.5rem;
}
@media (min-width: 768px) {
  :root {
    --section-gap: 5rem;
  }
}

/* ===== Section başlıkları – tüm bölümlerde ortak stil ===== */
.section-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: var(--header-accent);
}
@media (min-width: 768px) {
  .section-title::after {
    width: 4rem;
    height: 4px;
  }
}

#services,
#figures,
#gallery,
#about,
#trust,
#products,
#contact-workspace-title,
#contact-cta-title,
#about-cta-title,
#about-workflow-title,
#about-capabilities-title,
#blog-list-title,
#blog-related-title,
#blog-cta-title,
#contacts,
.footer {
  scroll-margin-top: 132px;
}

@media (max-width: 1023px) {
  #services,
  #figures,
  #gallery,
  #about,
  #trust,
  #products,
  #contact-workspace-title,
  #contact-cta-title,
  #about-cta-title,
  #about-workflow-title,
  #about-capabilities-title,
  #blog-list-title,
  #blog-related-title,
  #blog-cta-title,
  #contacts,
  .footer {
    scroll-margin-top: 96px;
  }
}

#contact-cta-title,
#about-cta-title {
  scroll-margin-top: 220px;
}

@media (max-width: 1023px) {
  #contact-cta-title,
  #about-cta-title {
    scroll-margin-top: 124px;
  }
}

#about-workflow-title {
  scroll-margin-top: 180px;
}

#about-capabilities-title {
  scroll-margin-top: 180px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}
@media (min-width: 768px) {
  .header { top: 40px; }
}
/* Aşağı kaydırınca header üste yapışır, opacity hafif düşer */
.header.is-stuck {
  top: 0 !important;
}
.header.is-stuck .header-bar {
  opacity: 0.97;
  transition: opacity 0.25s ease;
}
.header:not(.is-stuck) .header-bar {
  opacity: 1;
}

.header-bar {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 20px;
  background: linear-gradient(145deg, #071c38 0%, #0d2844 50%, #071c38 100%);
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(70, 120, 170, 0.18);
}
@media (min-width: 768px) {
  .header-bar {
    padding: 30px 34px;
    justify-content: space-between;
  }
}

.header-phone-btn { color: #fff; }
.header-phone-btn:hover { color: var(--header-accent); }
.header-phone-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.header-phone-btn:hover .header-phone-icon {
  opacity: 0.85;
}
@media (min-width: 1024px) {
  .header-phone-btn { display: none !important; }
}

.header-logo { color: inherit; text-decoration: none; display: block; }
.header-logo-img { display: block; width: 150px; height: auto; object-fit: contain; }

.header-nav {
  display: none;
  align-items: center;
  margin-left: 24px;
  gap: 36px;
}
@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .mobile-drawer-head,
  .mobile-drawer-categories { display: none !important; }
  .mobile-drawer-nav-links { display: contents; }
}
/* Menü + telefon numaraları: 1.2rem, kalın 600 (dropdown öğeleri kendi stilinde) */
.header-nav .nav-trigger,
.header-nav .nav-link,
.header-tel {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}

/* Trigger: orijinal sitedeki gibi relative, içinde beyaz tab */
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s;
}
.nav-trigger-text,
.nav-trigger .nav-chevron { position: relative; z-index: 1; }
/* Beyaz tab (hover’da görünür) – border-radius animasyonla 1.25rem’e gelir */
.nav-trigger-tab {
  position: absolute;
  left: -0.5rem;
  top: -1.25rem;
  width: calc(100% + 1rem);
  height: 4.75rem;
  background: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0;
  opacity: 0;
  transition: opacity 0.12s ease, border-top-left-radius 0.5s ease, border-top-right-radius 0.5s ease, border-bottom-right-radius 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
.nav-dropdown:hover .nav-trigger-tab {
  opacity: 1;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 0;
}
.nav-dropdown:hover .nav-trigger { color: var(--header-accent); }
.nav-dropdown:hover .nav-trigger .header-icon-fa { color: var(--header-accent); }
.nav-chevron { transition: transform 0.3s; display: inline-block; vertical-align: middle; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-link {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover { color: var(--header-accent); }

.nav-dropdown { position: relative; }
/* Dropdown panel: tab ile aynı hizada (tab left -0.5rem olduğu için dropdown da -0.5rem) */
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% - -17px);
  left: -0.5rem;
  margin: 0;
  min-width: 280px;
  padding: 0.75rem 0;
  background: #fff;
  border-top-left-radius: 0 !important;
  border-radius: 0.5rem;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0s linear 0.12s, border-radius 0.5s ease;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  border-radius: 1.25rem;
  transition: opacity 0.12s ease, visibility 0s, border-radius 0.5s ease;
}
/* Öğe: ikon sol, metin sağ; gri ikon, koyu metin */
.nav-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.65rem 1.25rem;
  color: #444;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-dropdown .dropdown-item .dropdown-item-icon {
  width: 1.25rem;
  text-align: center;
  color: #888;
  flex-shrink: 0;
}
.nav-dropdown .dropdown-item:hover {
  color: var(--header-accent);
  background: #e9f1f9;
}
.nav-dropdown .dropdown-item:hover .dropdown-item-icon { color: var(--header-accent); background: #e9f1f9; }
.nav-dropdown .dropdown-item.is-active {
  color: var(--header-accent);
  background: #e9f1f9;
  font-weight: 700;
}
.nav-dropdown .dropdown-item.is-active .dropdown-item-icon {
  color: var(--header-accent);
}
.header-nav .nav-link.is-active,
.header-nav .nav-trigger.is-active {
  color: #9fcefd;
  font-weight: 700;
  box-shadow: none;
}

/* Services: Congress and Conference Systems – alt menü (desktop: hover, mobil: tıklanınca açılır) */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: none;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 500;
}
.dropdown-submenu-chevron {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.dropdown-submenu:hover .dropdown-submenu-chevron,
.dropdown-submenu.open .dropdown-submenu-chevron {
  transform: translateX(2px);
}
.dropdown-submenu-list {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 280px;
  margin: 0;
  padding: 0.5rem 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0s linear 0.12s;
  z-index: 51;
  list-style: none;
}
.dropdown-submenu:hover .dropdown-submenu-list {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.header-phones { align-items: flex-start; gap: 28px; }
.header-phone-item { display: flex; flex-direction: column; gap: 4px; }
/* Telefon başlıkları (Москва, Санкт-Петербург): 1rem */
.header-city { font-size: 1rem; color: var(--header-ash); font-weight: 500; }
.header-outdoor-link {
  text-decoration: none;
  display: block;
  line-height: 0;
}
.header-outdoor-link:hover .header-outdoor-logo {
  opacity: 0.9;
}
.header-outdoor-link:focus-visible {
  outline: 2px solid var(--header-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.header-outdoor-logo-wrap {
  line-height: 0;
  margin-top: 2px;
  display: block;
}
.header-outdoor-logo {
  display: block;
  height: auto;
  max-height: 2rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
  object-position: left center;
}
.header-tel {
  color: #fff;
  text-decoration: none;
}
.header-tel:hover { color: #fff; }

/* Buton: koyu mor, ince beyaz çerçeve, pill (görseldeki gibi) */
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.9);
  padding: 12px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.header-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #071C38;
}

/* Sağ blok: telefonlar + buton + arama + hamburger aralıkları */
.header-right { gap: 24px; }

/* Dil seçici – menü dropdown ile aynı açılış (beyaz tab + panel) */
.header-lang { position: relative; }
.header-lang-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  color: #fff;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
}
.header-lang-btn .header-lang-flag,
.header-lang-btn .header-lang-name,
.header-lang-btn .header-lang-chevron { position: relative; z-index: 1; }
.header-lang-tab {
  position: absolute;
  left: -0.5rem;
  top: -1.25rem;
  width: calc(100% + 1rem);
  height: 4.75rem;
  background: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0;
  opacity: 0;
  transition: opacity 0.12s ease, border-top-left-radius 0.5s ease, border-top-right-radius 0.5s ease, border-bottom-right-radius 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
.header-lang:hover .header-lang-tab {
  opacity: 1;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 0;
}
.header-lang:hover .header-lang-btn { color: var(--header-accent); }
.header-lang:hover .header-lang-btn .header-icon-fa { color: var(--header-accent); }
.header-lang-flag {
  width: 1.5rem;
  height: 1rem;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.header-lang:hover .header-lang-flag { box-shadow: 0 0 0 1px rgba(7, 28, 56, 0.15); }
.header-lang-name { white-space: nowrap; }
.header-lang-chevron { transition: transform 0.3s; display: inline-block; vertical-align: middle; }
.header-lang:hover .header-lang-chevron { transform: rotate(180deg); }
.header-lang-dropdown {
  position: absolute;
  top: calc(100% - -16px);
  right: -0.5rem;
  left: auto;
  min-width: 11rem;
  padding: 0.75rem 0;
  background: #fff;
  border-top-right-radius: 0 !important;
  border-radius: 0.5rem;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0s linear 0.12s, border-radius 0.5s ease;
  z-index: 50;
}
.header-lang:hover .header-lang-dropdown {
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  border-radius: 1.25rem;
  transition: opacity 0.12s ease, visibility 0s, border-radius 0.5s ease;
}
.header-lang-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  color: #444;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.15s;
}
.header-lang-item:hover { color: var(--header-accent); background: #e9f1f9; }
.header-lang-flag-item {
  width: 1.25rem;
  height: 0.875rem;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.header-lang-btn--globe {
  padding: 0.5rem 0.65rem;
  min-width: 2.75rem;
  justify-content: center;
  gap: 0.35rem;
}
.header-lang-btn--globe .header-lang-globe {
  font-size: 1.35rem;
  z-index: 1;
  position: relative;
}
.header-lang-btn--globe .header-lang-chevron {
  font-size: 0.65rem;
  opacity: 0.9;
}

/* Sabit WhatsApp (sol) + form (sağ) */
.fab-actions {
  position: fixed;
  z-index: 900;
  left: auto;
  right: 0;
  bottom: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: flex-end;
  align-items: flex-end;
  width: auto;
  padding: 0 1rem max(1rem, env(safe-area-inset-bottom)) 0;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
body.is-modal-open .fab-actions {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
}
body.is-search-open .fab-actions {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
}
.fab-actions__btn {
  pointer-events: auto;
  width: 3.25rem;
  height: 3.25rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-actions__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.fab-actions__btn--whatsapp {
  background: #25d366;
}
.fab-actions__btn--form {
  background: linear-gradient(145deg, #071c38 0%, #204e81 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

/* Search ikonu */
.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: #fff;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header-search-btn .header-icon-fa { font-size: 1.7rem; }

/* Arama overlay (açılır panel) */
.header-search-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8.5rem 1rem 1rem;
  background: rgba(3, 10, 20, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 1200;
}
.header-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-search-panel {
  width: min(56rem, calc(100vw - 2rem));
  padding: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #071c38 0%, #0d2844 55%, #071c38 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(70, 120, 170, 0.2);
  transform: translateY(-0.5rem);
  transition: transform 0.22s ease;
}
.header-search-overlay.is-open .header-search-panel {
  transform: translateY(0);
}
body.is-modal-open .header-search-overlay {
  display: none;
}
.header-search-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}
.header-search-leading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.header-search-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.85rem 0.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
}
.header-search-input::placeholder { color: rgba(255,255,255,0.62); }
.header-search-close {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.18s ease, transform 0.18s ease;
}
.header-search-close:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.03);
}
.header-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.header-search-suggestion {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.header-search-suggestion:hover {
  color: #fff;
  background: rgba(70, 120, 170, 0.28);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.header-container { position: relative; }

/* Hamburger (mobilde menü açma) – font icon */
.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: #fff;
  border: none;
  background: transparent;
  cursor: pointer;
}
/* Masaüstünde gizli; mobilde hero içinde eğik kenarlı görsel */
.hero__image-wrap {
  display: none;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Hero: tam genişlikte görsel + cam overlay (diğer section’lardan ayrı) */
.hero {
  position: relative;
  height: 710px;
  background-image: url("https://main.yp.uz/uploads/organizations/gallery/7d97ef142e95a09214218fbd7eccf897.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.hero__overlay {
  will-change: transform;
  contain: layout paint;
  position: absolute;
  left: 0;
  top: -38%;
  z-index: 10;
  height: 100%;
  width: 18.5rem;
  transform: translateZ(0);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  background: rgb(0 0 0 / 20%);
}
@media (min-width: 640px) {
  .hero__overlay {
    width: 18.25rem;
  }
}
@media (min-width: 768px) {
  .hero__overlay {
    top: 0;
    /*width: 70%;*/
    transform: translateX(-30%) skewX(-35deg);
  }
  .hero__overlay::after {
    content: '';
    position: absolute;
    pointer-events: none;
    left: -31.25rem;
    top: -10.25rem;
    height: 25.25rem;
    width: 62.5rem;
    transform: skewX(35deg);
  }
}

.hero__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  pointer-events: none;
}
.hero__content > * {
  pointer-events: auto;
}
.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 45rem;
}
.hero__desc {
  margin: 0 0 1.75rem;
  font-family: var(--font);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.9);
  padding: 12px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: fit-content;
}
.hero__cta:hover {
  background: #fff;
  border-color: #fff;
  color: #071C38;
}

/* ===== Hizmetler – kullanışlı, anlaşılır, kaliteli blok ===== */
.services {
  padding: 0 0 var(--section-gap);
  margin-top: 0;
}
.services.services--light {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  box-shadow: 0 1px 0 rgba(7, 28, 56, 0.06);
}
.services.services--light .services__label {
  color: var(--header-accent);
}
.services.services--light .services__title.section-title {
  color: #071c38;
}
.services.services--light .services__lead {
  color: rgba(7, 28, 56, 0.72);
}
.services.services--light .services__card-inner {
  box-shadow: 0 8px 32px rgba(7, 28, 56, 0.12);
}

.services__head {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}
.services__label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--header-accent);
  margin-bottom: 0.5rem;
}
.services__title.section-title {
  color: #fff;
}
.services__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--page-text-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
/* Desktop: solda 2x2 (4 kutu), sağda 1 kutu (aynı yükseklik) */
@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.75rem;
  }
  .services__card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .services__card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .services__card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .services__card:nth-child(4) { grid-column: 2; grid-row: 2; }
  .services__card--tall {
    grid-column: 3;
    grid-row: 1 / -1;
    display: flex;
  }
  .services__card--tall .services__card-inner {
    flex: 1;
    min-height: 0;
  }
}

/* Canlı site (sv.ticaretplus.com/ptest) ile aynı: kartın tamamı döner, hover’da resim görünür */
.services__card {
  border-radius: 14px;
  overflow: hidden;
  perspective: 1000px;
}

.services__card-inner {
  position: relative;
  min-height: 370px;
  padding: 1.5rem 1.5rem 4.25rem;
  background-color: #0d2844;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: none;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.7s ease, background-image 0.25s ease 0.7s;
  overflow: hidden;
  transform-style: preserve-3d;
}
.services__card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(7 28 56 / 83%);
  border-radius: 14px;
  z-index: 0;
  transition: background-color 0.3s ease 0.4s;
}
.services__card:hover .services__card-inner::before {
  background: rgb(7 28 56 / 75%);
}
.services__card-inner::after {
  display: none;
}
/* İçerik sarmalayıcı: başlık, for rent, buton birlikte döner, eski yerinde kalır */
.services__card-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.7s ease;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}

/* Hover: kart 180° döner, arka yüzde resim görünür */
.services__card:hover .services__card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
/* Döndükten sonra for rent ve buton eski yerinde: içerik + buton ters yönde döner */
.services__card:hover .services__card-inner .services__card-content,
.services__card:hover .services__card-inner .services__card-btn {
  transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}

/* Her kartın kendi görseli – theme/assets/images/services/ içine bu isimlerle koyun */
.services__card:nth-child(1):hover .services__card-inner { background-image: url('../assets/images/services/service-stage-equipment-rental.webp'); }
.services__card:nth-child(2):hover .services__card-inner { background-image: url('../assets/images/services/service-technical-event-support.webp'); }
.services__card:nth-child(3):hover .services__card-inner { background-image: url('../assets/images/services/service-online-hybrid-events.webp'); }
.services__card:nth-child(4):hover .services__card-inner { background-image: url('../assets/images/services/service-internet-streaming.webp'); }
.services__card:nth-child(5):hover .services__card-inner { background-image: url('../assets/images/services/service-simultaneous-interpretation.webp'); }

/* Test kartı: başta resimli yüz, hover’da resimsiz düz kutu (ters davranış) */
.services__card.services__card--test-reverse .services__card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  background-image: url('../assets/images/services/service-stage-equipment-rental.webp');
}
.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: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}
.services__card.services__card--test-reverse:hover .services__card-inner {
  transform: rotateY(0deg) !important;
  -webkit-transform: rotateY(0deg) !important;
  background-image: none !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: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
}

/* Kart: başlık ve içerik beyaz */
.services__card-title {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.services__card-subtitle {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.2rem 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  width: fit-content;
}
.services__card-excerpt {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 26em;
}
.services__card-content {
  flex: 1;
}
.services__card-content--text {
  margin-bottom: 2rem;
}
.services__card-desc {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}
.services__card-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}
.services__card-list li {
  position: relative;
  padding-left: 0.4rem;
}
.services__card-list li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

/* Sağ alttaki ürün görseli kaldırıldı */
.services__card-content--img {
  display: none !important;
}

/* CTA: beyaz çerçeve, hover’da dolgu */
.services__card-btn {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  min-height: 48px;
  padding: 0 1rem 0 1.1rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.7s ease, box-shadow 0.2s;
  text-decoration: none;
}
.services__card-btn:hover {
  background: #fff;
  color: var(--header-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.services__card-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}
.services__card-btn-text {
  white-space: nowrap;
}
.services__card-btn .fa-arrow-right {
  font-size: 1rem;
    margin-top: 3px;
}
.services__card-inner p, .services__card-inner span, .services__card-inner ul {
  font-size: 1.1rem !important;
}
.services__card-inner .services__card-subtitle {
  font-size:0.9rem !important;
}

/* ===== Services redesign ===== */
.services.services--light {
  background: #f4f7fb;
  box-shadow: inset 0 1px 0 rgba(7, 28, 56, 0.06);
}

.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.services__head > div {
  max-width: 48rem;
}

.services__head-cta {
  min-height: 2.9rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid #071c38;
  border-radius: 9999px;
  background: #071c38;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.services__head-cta:hover {
  border-color: #4678aa;
  background: #4678aa;
  color: #fff;
  transform: translateY(-1px);
}

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

.services__grid > .services__card:nth-child(n),
.services__grid > .services__card--tall:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  display: block;
}

.services__card {
  min-width: 0;
  border-radius: 8px;
  overflow: visible;
  perspective: none;
}

.services__card-inner {
  min-height: 100%;
  padding: 0;
  display: grid;
  grid-template-rows: 13.5rem 1fr;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 8px;
  background: #fff !important;
  background-image: none !important;
  box-shadow: 0 18px 45px rgba(7, 28, 56, 0.08);
  overflow: hidden;
  transform: none !important;
  -webkit-transform: none !important;
  transform-style: flat;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.services__card:hover .services__card-inner {
  background-image: none !important;
  box-shadow: 0 24px 55px rgba(7, 28, 56, 0.12);
  transform: translateY(-3px) !important;
  -webkit-transform: translateY(-3px) !important;
}

.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;
}

.services__card-media {
  display: block;
  min-width: 0;
  background: #071c38;
  overflow: hidden;
}

.services__card-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.services__card-content {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 1.1rem;
  display: flex;
  flex: initial;
  flex-direction: column;
  gap: 0.55rem;
  color: #071c38;
  transform: none !important;
  -webkit-transform: none !important;
}

.services__card-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.15rem;
  border-radius: 8px;
  background: #071c38;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem !important;
}

.services__card-icon i {
  font-size: 1rem;
}

.services__card-inner .services__card-icon {
  font-size: 1rem !important;
}

.services__card-subtitle {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #4678aa;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.services__card-inner .services__card-subtitle {
  font-size: 0.72rem !important;
}

.services__card-title {
  margin: 0;
  color: #071c38;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.services__card-desc {
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
  font-size: 0.95rem !important;
  line-height: 1.55;
}

.services__card-inner .services__card-desc {
  font-size: 0.95rem !important;
}

.services__card-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.services__card-btn {
  position: static;
  right: auto;
  bottom: auto;
  min-height: 2.7rem;
  margin-top: auto;
  padding: 0.62rem 1rem;
  border: 1px solid #071c38;
  border-radius: 9999px;
  background: #071c38;
  color: #fff;
  box-shadow: none;
  font-size: 0.9rem;
  transform: none !important;
  -webkit-transform: none !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.services__card-actions .services__card-btn {
  flex: 1 1 9rem;
  margin-top: 0;
}

.services__card-btn--secondary {
  background: #fff;
  color: #071c38;
  border-color: rgba(7, 28, 56, 0.18);
}

.services__card-btn:hover {
  border-color: #4678aa;
  background: #4678aa;
  color: #fff;
  box-shadow: none;
  transform: translateY(-1px) !important;
  -webkit-transform: translateY(-1px) !important;
}

.services__card-btn .services__card-btn-text {
  font-size: 0.9rem !important;
}

.services__card-inner > .services__card-btn.btn-reset {
  display: none !important;
}

@media (min-width: 720px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .services__grid > .services__card--featured:nth-child(n) {
    grid-column: span 2;
  }

  .services__card--featured .services__card-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    grid-template-rows: 1fr;
  }

  .services__card--featured .services__card-media {
    order: 2;
  }

  .services__card--featured .services__card-content {
    order: 1;
    padding: 1.5rem;
  }
}

/* ===== We in figures ===== */
.figures {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--section-gap) 0;
  margin-top: 0;
  background-color: var(--page-bg-dark);
  background-image: var(--page-bg-dark-gradient);
  background-attachment: scroll;
}
.figures__head {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}
.figures__label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--header-accent);
  margin-bottom: 0.5rem;
}
.figures__title.section-title {
  color: #fff;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
}
.figures__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--page-text-muted);
}
.figures__title.section-title::after {
  background: var(--header-accent);
}

.figures__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .figures__grid {
    margin-top: 2.5rem;
    flex-wrap: nowrap;
  }
}

.figures__card {
  width: 100%;
}
@media (min-width: 768px) {
  .figures__card {
    flex: 1;
    min-width: 0;
  }
}

.figures__card-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding: 0.75rem;
  background: #071c38;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .figures__card-inner {
    aspect-ratio: 1;
  }
}

/* Blur orb dekorasyonu – varsayılan konum */
.figures__card-blur {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: rgba(70, 120, 170, 0.5);
  filter: blur(5rem);
  transform: rotate(-12deg);
  pointer-events: none;
  transition: left 0.15s ease-out, top 0.15s ease-out, bottom 0.15s ease-out, right 0.15s ease-out;
}
.figures__card-blur--br {
  bottom: -25%;
  right: -10%;
}
.figures__card-blur--tr {
  top: -25%;
  right: -10%;
}
.figures__card-blur--b {
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%) rotate(-12deg);
}

/* Mouse ile ışıklı alan takibi – hover’da blur fareyi takip eder */
.figures__card-inner--mouse .figures__card-blur {
  bottom: auto;
  right: auto;
  left: var(--figures-blur-x, 50%);
  top: var(--figures-blur-y, 50%);
  transform: translate(-50%, -50%) rotate(-12deg);
}
.figures__card-inner--mouse .figures__card-blur--b {
  transform: translate(-50%, -50%) rotate(-12deg);
}

.figures__card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 200px;
}
@media (min-width: 768px) {
  .figures__card-content {
    min-height: 0;
  }
}

/* Rakam alanı: placeholder (görünmez) + visible (animasyonla görünür) */
.figures__number-block {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
}
@media (min-width: 768px) {
  .figures__number-block {
    padding: 1.5rem 1.25rem;
  }
}

.figures__number-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.figures__number-placeholder {
  opacity: 0;
  font-family: var(--font);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 100;
  line-height: 1.14;
  color: #fff;
}
@media (min-width: 992px) {
  .figures__number-placeholder {
    font-size: 5rem;
  }
}
@media (min-width: 1280px) {
  .figures__number-placeholder {
    font-size: 6.25rem;
  }
}

.figures__number-visible {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 100;
  line-height: 1.14;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.figures__number-visible.is-visible {
  opacity: 1;
}
@media (min-width: 992px) {
  .figures__number-visible {
    font-size: 5rem;
  }
}
@media (min-width: 1280px) {
  .figures__number-visible {
    font-size: 6.25rem;
  }
}

.figures__number-icons {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.figures__svg {
  display: inline-block;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
}
@media (min-width: 768px) {
  .figures__svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (min-width: 992px) {
  .figures__svg {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 1280px) {
  .figures__svg {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.figures__number-unit {
  font-family: var(--font);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 100;
  color: #fff;
  line-height: 1.14;
  margin-right: 0.5rem;
}
@media (min-width: 992px) {
  .figures__number-unit {
    font-size: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .figures__number-unit {
    font-size: 2.75rem;
  }
}

.figures__desc {
  margin: 0;
  padding: 0 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
@media (min-width: 768px) {
  .figures__desc {
    text-align: left;
    min-height: 4.5rem;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .figures__desc {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
  }
}
@media (min-width: 1280px) {
  .figures__desc {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

/* ===== Trust: referans logoları marquee ===== */
/* Bölüm içi üst boşluk; üst çizgi kapalı */
section .container,
section .container--relative {
  /* border-top: 1px solid rgba(255, 255, 255, 0.06); */
  padding-top: 20px;
}
/* Services = hero'dan sonra gelen ilk bölüm; çizgi yok, üstte sadece boşluk */
.services .container,
.services .container--relative {
  border-top: none;
  padding-top: 5.5rem;
}
.trust {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--section-gap) 0;
  margin-top: 0;
  background-color: var(--page-bg-dark);
  background-image: var(--page-bg-dark-gradient);
  background-attachment: scroll;
  color: var(--page-text);
  min-height: 12rem;
}

/* Orijinal: başlık – text-32/100 md:text-48/100 font-semibold text-center */
.trust__title.section-title {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.trust__title.section-title::after {
  display: none;
}
@media (min-width: 768px) {
  .trust__title.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

/* Logo şeridi – bant: sola durmadan kayar, sonsuz döngü */
.trust__logos {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 170px;
  margin-top: 3rem;
  background: transparent;
  user-select: none;
  isolation: isolate;
}
.trust__logos::before,
.trust__logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.trust__logos::before {
  left: 0;
  background: linear-gradient(90deg, #0a0e14 0%, transparent 100%);
}
.trust__logos::after {
  right: 0;
  background: linear-gradient(270deg, #0a0e14 0%, transparent 100%);
}

/* Bant: marquee – referans logoları sola tek tek ilerler, kesintisiz sonsuz döngü */
.trust__track {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  min-width: max-content;
  height: 170px;
  padding: 0 1rem;
  white-space: nowrap;
  animation: trust-marquee 50s linear infinite;
  -webkit-animation: trust-marquee 50s linear infinite;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

@keyframes trust-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes trust-marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust__track {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
    -webkit-animation: none;
    padding: 0.5rem;
  }
}

/* Orijinal: her logo – flex-shrink 0, opacity, hover, zoom */
.trust__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 270px;
  height: 150px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.trust__logo--ref {
  opacity: 0.95;
}
.trust__logo--ref:hover {
  opacity: 1;
}

/* Logo: sadece yüksekliğe göre boyutlandır, hover’da zoom */
.trust__ref-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}


.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.product-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.82);
  cursor: pointer;
}
.product-modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.product-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #071c38;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.product-modal__layout {
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .product-modal__layout {
    flex-direction: row;
    align-items: stretch;
  }
  .product-modal__media {
    flex: 0 0 42%;
  }
}
.product-modal__media {
  background: #f0f4f8;
  min-height: 200px;
  position: relative;
}
.product-modal__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  inset: 0;
}
.product-modal__body {
  padding: 1.5rem 1.25rem 1.5rem;
  color: #071c38;
}
@media (min-width: 640px) {
  .product-modal__body {
    flex: 1;
    padding: 1.75rem 1.5rem;
  }
}
.product-modal__brand {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--header-accent);
}
.product-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}
.product-modal__specs {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: rgba(7, 28, 56, 0.7);
}
.product-modal__desc {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(7, 28, 56, 0.85);
}
.product-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #071c38 0%, #204e81 100%);
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.product-modal__cta:hover {
  opacity: 0.92;
}

/* ===== Gallery ===== */
.container--relative {
  position: relative;
}

.gallery {
  background: #fff;
  padding: var(--section-gap) 0;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-shadow: 0 -1px 0 rgba(7, 28, 56, 0.06);
}
.gallery__section-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}
.gallery__section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--header-accent);
  margin-bottom: 0.5rem;
}
.gallery__section-title.section-title {
  color: #071c38;
  margin-bottom: 0.5rem;
}
.gallery__section-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(7, 28, 56, 0.72);
}
.gallery .gallery__card {
  box-shadow: 0 6px 28px rgba(7, 28, 56, 0.1);
  border: 1px solid rgba(7, 28, 56, 0.08);
}
.gallery .gallery__meta-title {
  color: #071c38;
}
.gallery .gallery__meta-desc {
  color: rgba(7, 28, 56, 0.72);
}
/* Başlık: text-24/100 lg:text-48/100 font-semibold tracking-tighter */
.gallery__title.section-title {
  color: #fff;
  font-size: 1.5rem;   /* 24px */
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  padding-bottom: 0;
  margin-bottom: 0;
}
.gallery__title.section-title::after {
  display: none;
}
@media (min-width: 1024px) {
  .gallery__title.section-title {
    font-size: 3rem;   /* 48px */
  }
}

/* Wrapper: mt-5 md:mt-10 flex items-stretch max-lg:flex-col lg:space-x-5 md:max-lg:space-y-2 */
.gallery__inner {
  display: flex;
  align-items: stretch;
  margin-top: 1.25rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .gallery__inner {
    margin-top: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__inner {
    row-gap: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .gallery__inner {
    flex-direction: row;
    column-gap: 1.25rem;
    align-items: stretch; /* iki kolon aynı yükseklikte, videolar yan yana hizalı */
  }
}

/* Featured block: sol kolon 60rem, video alanı kadar büyür */
.gallery__featured {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 20;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .gallery__featured {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .gallery__featured {
    width: 70rem;
    max-width: 70rem;
  }
}

/* Featured button: mobil/tablet full | lg: sol alanın tamamı (100%), 16:9 */
.gallery__card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  border: none;
  border-radius: 1.25rem;  /* 20px = rounded-20 */
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.gallery__card--featured {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__card--featured {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .gallery__card--featured {
    width: 100%; /* sol kolon (60rem) kadar büyür */
    aspect-ratio: 16 / 9;
  }
}
.gallery__card:hover .gallery__play {
  opacity: 1;
}

.gallery__thumb {
  display: block;
  position: absolute;
  inset: 0;
}
/* img: rounded-8 object-cover xl:rounded-12 */
.gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
}
@media (min-width: 1280px) {
  .gallery__thumb-img {
    border-radius: 0.75rem;
  }
}

/* Label featured: max-md:top-0 left-0 max-md:rounded-tl-8 max-md:rounded-br-8 | md:bottom-0 md:rounded-bl-8 md:rounded-tr-8 | xl:rounded-bl-12 xl:rounded-tr-12 */
/* p-2.5 lg:p-4 xl:px-8 xl:py-6 | text-16/120 md:text-20/120 xl:text-48/100 xl:tracking-[-0.15rem] font-semibold text-ash-200 | bg-video-title */
.gallery__label {
  position: absolute;
  left: 0;
  font-family: var(--font);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgb(11 33 63 / 90%);
}
.gallery__card--featured .gallery__label {
  top: 0;
  bottom: auto;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 8px 0 8px 0;  /* tl-8 br-8 */
  max-width: 90%;
}
@media (min-width: 768px) {
  .gallery__card--featured .gallery__label {
    top: auto;
    bottom: 0;
    padding: 1rem;
    font-size: 1.25rem;
    line-height: 1.2;
    border-radius: 0 8px 8px 0;  /* tr-8 bl-8 */
    max-width: 85%;
  }
}
@media (min-width: 1280px) {
  .gallery__card--featured .gallery__label {
    padding: 1.5rem 2rem;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.15rem;
    border-radius: 0 12px 12px 0;
  }
}
/* Side card label: left-0 top-0 text-left md:w-full max-md:rounded-tl-8 max-md:rounded-br-8 md:rounded-t-8 md:p-2 xl:rounded-t-12 xl:px-4 xl:py-3 xl:text-24/100 xl:tracking-[-0.075rem] */
.gallery__card:not(.gallery__card--featured) .gallery__label {
  top: 0;
  bottom: auto;
  text-align: left;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 8px 0 0 0;
}
@media (min-width: 768px) {
  .gallery__card:not(.gallery__card--featured) .gallery__label {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 8px 8px 0 0;
  }
}
@media (min-width: 1280px) {
  .gallery__card:not(.gallery__card--featured) .gallery__label {
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
    letter-spacing: -0.075rem;
    border-radius: 12px 12px 0 0;
  }
}

/* Duration: bottom-2 right-2 rounded-4 bg-black/50 px-2 py-1 text-14/148 xl:rounded-8 xl:p-2.5 xl:text-16/120 */
.gallery__duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1280px) {
  .gallery__duration {
    padding: 0.5rem 0.625rem;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.2;
  }
}

/* Play: size-[5.375rem] absolute inset-1/2 -translate-x-1/2 -translate-y-1/2 text-accent opacity-25 group-hover:opacity-100 */
.gallery__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5.375rem;
  height: 5.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header-accent);
  opacity: 0.25;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery__play--sm {
  width: 3.75rem;
  height: 3.75rem;
}
@media (min-width: 1280px) {
  .gallery__play--sm {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.gallery__play-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Featured meta: space-y-1 md:space-y-3 md:max-lg:ml-5 lg:mt-5 w-full */
.gallery__meta {
  width: 100%;
}
.gallery__featured .gallery__meta {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .gallery__featured .gallery__meta {
    margin-top: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__featured .gallery__meta {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .gallery__featured .gallery__meta {
    margin-top: 1.25rem;
    margin-left: 0;
  }
}
/* Meta h3: text-20/120 line-clamp-2 font-semibold text-ash-200 md:max-lg:h-12 */
.gallery__meta-title {
  margin: 0 0 0.25rem;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__meta-title {
    min-height: 3rem;
  }
}
/* Meta p: line-clamp-2 text-16/132 text-accent-100 xl:line-clamp-4 */
.gallery__meta-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.32;
  color: var(--page-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .gallery__meta-desc {
    -webkit-line-clamp: 4;
  }
}

/* List wrap: mobil full width | lg: flex kolon, featured’ın yanında yan yana (top/left gerekmez) */
.gallery__list-wrap {
  position: relative;
  width: 100%;
  min-height: 0;
}
@media (min-width: 1024px) {
  .gallery__list-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
}

.gallery__list {
  display: flex;
  gap: 0;
  overflow-y: auto;
  overflow-x: visible;
  scroll-behavior: smooth;
}
@media (min-width: 1024px) {
  .gallery__list {
    flex: 1;
    min-height: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.25rem;
  }
  .gallery__list .gallery__item--featured-mobile {
    display: none;
  }
}

/* Item: max-lg:flex-col | lg: card w-[15rem] h-[9rem], xl:w-[16.25rem] xl:h-[11.875rem], meta lg:ml-3 */
.gallery__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .gallery__item {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom:17px;
  }
  .gallery__item .gallery__card {
    width: 15rem;
    height: 9rem;
    flex-shrink: 0;
    aspect-ratio: auto;
  }
  .gallery__item .gallery__meta {
    flex: 1;
    min-width: 0;
    margin-left: 0.75rem;
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .gallery__item .gallery__card {
    width: 16.25rem;
    height: 11.875rem;
  }
}

.gallery__list-fade {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(to top, #fff, transparent 95%);
  pointer-events: none;
  z-index: 30;
}
@media (min-width: 768px) {
  .gallery__list-fade {
    display: block;
  }
}
@media (min-width: 992px) {
  .gallery__list-fade {
    display: none;
  }
}

.gallery__cta-wrap {
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery__cta-wrap {
    margin-top: 5rem;
  }
}

.gallery__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  color: #071c38;
  border: 3px solid #071c38;
  padding: 12px 32px;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gallery__cta:hover {
  background: #071c38;
  border-color: #071c38;
  color: #fff;
}
.gallery__cta-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: currentColor;
}
@media (min-width: 768px) {
  .gallery__cta {
    padding: 14px 36px;
    font-size: 1.25rem;
  }
}

/* Contact / Request popup – gradient, rounded-20, floating labels */
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3, 10, 20, 0.82);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-x: hidden;
  overflow-y: auto;
}
.request-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.request-modal__backdrop {
  position: fixed;
  inset: 0;
  cursor: pointer;
}
.request-modal__panel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 2.5rem 1rem 2rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #071c38 0%, #0d2844 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  z-index: 1;
  flex-shrink: 0;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .request-modal__panel {
    padding: 5rem 3rem 3rem;
  }
}
.request-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 2;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) {
  .request-modal__close {
    top: 1.25rem;
    right: 1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}
.request-modal__close:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.request-modal__title {
  margin: 0 0 1.5rem;
  padding-right: 2.5rem;
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}
@media (min-width: 768px) {
  .request-modal__title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
}
.request-modal__form {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .request-modal__form {
    padding-top: 2.5rem;
  }
}
.request-modal__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .request-modal__grid {
    flex-direction: row;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.request-modal__col--fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .request-modal__col--fields {
    flex: 1 1 auto;
    max-width: 50%;
  }
}
/* Floating label alanı – border rounded-8, pt-4 */
.request-modal__field {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 1rem;
  padding-top: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.request-modal__field:focus-within {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.09);
}
.request-modal__field--textarea {
  min-height: 8rem;
}
@media (min-width: 1024px) {
  .request-modal__field--textarea {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 10rem;
  }
}
.request-modal__input,
.request-modal__textarea {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.request-modal__input::placeholder,
.request-modal__textarea::placeholder {
  color: transparent;
  opacity: 0;
}
.request-modal__input {
  height: 1.5rem;
}
.phone-control {
  display: grid;
  grid-template-columns: minmax(5.25rem, 0.24fr) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-width: 0;
}
.phone-control__country,
.phone-control__input {
  min-width: 0;
  font-family: var(--font);
}
.phone-control__country-wrap {
  position: relative;
  display: flex;
  align-self: stretch;
  width: 100%;
  min-width: 0;
}
.phone-control__flag {
  flex: 0 0 auto;
  width: 1.25rem;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(7, 28, 56, 0.12);
}
.phone-control__country {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.phone-control__country-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 2.8rem;
  padding: 0 0.7rem;
  color: #071c38;
  background: #e9f1f9;
  border: 1px solid rgba(7, 28, 56, 0.14);
  border-radius: 10px 0 0 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}
.phone-control__country-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(70, 120, 170, 0.18);
}
.phone-control__country-code {
  display: inline-block;
  min-width: 0;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.phone-control__country-chevron {
  margin-left: auto;
  color: #4678aa;
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}
.phone-control__country-wrap.is-open .phone-control__country-chevron {
  transform: rotate(180deg);
}
.phone-control__country-list {
  position: absolute;
  left: 0;
  top: calc(100% + 0.4rem);
  z-index: 80;
  display: grid;
  width: min(19rem, calc(100vw - 2rem));
  min-width: 100%;
  max-height: 17rem;
  padding: 0.45rem;
  overflow-y: auto;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(7, 28, 56, 0.18);
}
.phone-control__country-list[hidden] {
  display: none;
}
.phone-control__country-wrap.is-align-right .phone-control__country-list {
  right: 0;
  left: auto;
}
.phone-control__country-wrap.is-fixed-list .phone-control__country-list {
  position: fixed;
  left: var(--phone-list-left);
  top: var(--phone-list-top);
  right: auto;
  width: var(--phone-list-width);
  min-width: 0;
  max-height: var(--phone-list-max-height);
  z-index: 10010;
}
.phone-control__country-option {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 2.55rem;
  padding: 0.5rem 0.55rem;
  color: #071c38;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
}
.phone-control__country-option:hover,
.phone-control__country-option:focus,
.phone-control__country-option.is-active {
  background: #e9f1f9;
  outline: none;
}
.phone-control__country-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-control__country-option strong {
  color: #4678aa;
  font-size: 0.84rem;
}
.request-modal__field .phone-control {
  grid-template-columns: minmax(5rem, 5.35rem) minmax(0, 1fr);
  gap: 0.55rem;
}
.request-modal__field .phone-control__country-wrap {
  height: 1.95rem;
}
.request-modal__field .phone-control__flag {
  width: 1.12rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.request-modal__field .phone-control__country-button {
  height: 1.95rem;
  min-height: 1.95rem;
  padding: 0 0.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
}
.request-modal__field .phone-control__country-chevron {
  color: rgba(255, 255, 255, 0.82);
}
.request-modal__field .phone-control__country-list {
  left: -0.1rem;
}
.request-modal__field .phone-control__input {
  height: 1.95rem;
  padding: 0;
}
.request-modal__field--phone {
  min-height: 3.25rem;
  padding: 0;
  overflow: visible;
}
.request-modal__field--phone .request-modal__float {
  display: none;
}
.request-modal__field--phone .phone-control {
  grid-template-columns: minmax(5.5rem, 5.85rem) minmax(0, 1fr);
  gap: 0;
  min-height: 3.25rem;
}
.request-modal__field--phone .phone-control__country-wrap {
  height: auto;
  min-height: 3.25rem;
}
.request-modal__field--phone .phone-control__country-button {
  min-height: 3.25rem;
  height: 100%;
  padding: 0 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 7px 0 0 7px;
}
.request-modal__field--phone .phone-control__input {
  height: auto;
  min-height: 3.25rem;
  padding: 0 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.request-modal__field--phone .phone-control__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  opacity: 1;
}
.request-modal__textarea {
  min-height: 6rem;
  resize: none;
  vertical-align: top;
}
.request-modal__float {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.65);
  pointer-events: none;
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}
.request-modal__input:focus ~ .request-modal__float,
.request-modal__input:not(:placeholder-shown) ~ .request-modal__float,
.request-modal__input.has-value ~ .request-modal__float,
.request-modal__field:focus-within .request-modal__float,
.request-modal__field.has-value .request-modal__float,
.request-modal__textarea:focus ~ .request-modal__float,
.request-modal__textarea:not(:placeholder-shown) ~ .request-modal__float,
.request-modal__textarea.has-value ~ .request-modal__float {
  top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.9);
}
/* Footer: buton + consent – lg:ml-auto, rounded-full buton */
.request-modal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .request-modal__footer {
    padding-top: 1.25rem;
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .request-modal__footer {
    margin-left: auto;
  }
}
.request-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .request-modal__submit {
    width: auto;
  }
}
.request-modal__submit:hover {
  background: #fff;
  color: var(--header-accent);
  border-color: #fff;
}
.request-modal__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.request-modal__consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  max-width: 100%;
}
@media (min-width: 768px) {
  .request-modal__consent {
    max-width: 220px;
    flex-shrink: 0;
  }
}
.request-modal__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.request-modal__checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.request-modal__checkmark::after {
  content: '';
  width: 0.4rem;
  height: 0.7rem;
  margin-bottom: 0.15rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.request-modal__checkbox:focus-visible + .request-modal__checkmark {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.request-modal__checkbox:checked + .request-modal__checkmark {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.9);
}
.request-modal__checkbox:checked + .request-modal__checkmark::after {
  transform: rotate(45deg) scale(1);
}
.request-modal__consent-text {
  font-family: var(--font);
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

/* Gallery modal (YouTube iframe) */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3, 10, 20, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.gallery-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.gallery-modal__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #071c38;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
}
.gallery-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071c38;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.gallery-modal__close:hover {
  background: #fff;
  transform: scale(1.04);
}
.gallery-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.gallery-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.gallery-modal__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: #071c38;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}
.gallery-modal__fallback:hover {
  background: #0d2844;
}

/* ===== Products section – kaydırmalı carousel (Team üstü) ===== */
.products {
  padding: var(--section-gap) 0;
  background: #fff;
}
.products__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.products__title.section-title {
  color: #071c38;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  padding-bottom: 0.75rem;
  text-align: left;
}
.products__title.section-title::after {
  left: 0;
  transform: none;
}
.products__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.products-swiper-wrap {
  position: relative;
  margin-top: 1.5rem;
  overflow: visible;
}
@media (min-width: 768px) {
  .products-swiper-wrap {
    margin-top: 2.5rem;
  }
}
.products-swiper-nav {
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(7, 28, 56, 0.25);
  font-weight: 700;
  color: #071c38;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.products-swiper-nav:hover {
  background: #071c38;
  border-color: #071c38;
  color: #fff;
}
.products-swiper-nav__icon {
  font-size: 1rem;
}
.products-swiper-nav__icon--flip {
  display: inline-block;
  transform: rotate(180deg);
}

.swiper-products {
  overflow: visible;
}
.swiper-products .swiper-wrapper {
  align-items: stretch;
}
.swiper-products .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0d2743;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card__img-wrap {
  display: block;
  aspect-ratio: 10 / 10;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.product-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(91, 132, 177, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-card__brand {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b84b1;
  margin-bottom: 0.15rem;
}
.product-card__title {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  flex: 1;
}
.product-card__specs {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #7a9fc4;
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  color: #071C38;
  background: rgba(220, 230, 245, 0.95);
  border-radius: 9999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.product-card__btn:hover {
  background: #fff;
  color: #051529;
}
.product-card__btn i {
  font-size: 0.95rem;
  line-height: 1;
}

/* ===== Team section – Coverflow carousel (above footer) ===== */
.team {
  position: relative;
  overflow-x: visible;
  overflow-y: hidden;
  padding: var(--section-gap) 0;
  background: #eef1f6;
}
.team__blur {
  display: none;
}
.team__container {
  position: relative;
  overflow: visible;
}
.team__head {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (min-width: 768px) {
  .team__head {
    text-align: center;
  }
}
.team__title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #071c38;
  text-align: center;
}
.team__title.section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .team__title {
    margin-bottom: 2rem;
  }
}
.team__intro {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(7, 28, 56, 0.72);
}
@media (min-width: 768px) {
  .team__intro {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.team__intro p + p {
  margin-top: 1rem;
}
/* Team: Swiper team, slide__inner blur/opacity */
.team-swiper-wrap {
  position: relative;
  margin-top: 1.25rem;
  padding-left: 3rem;
  padding-right: 3rem;
  overflow: visible;
}
@media (min-width: 768px) {
  .team-swiper-wrap {
    margin-top: 4rem;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
.team-swiper-nav {
  position: absolute;
  top: 33.333%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(7, 28, 56, 0.2);
  background: #fff;
  color: #071c38;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .team-swiper-nav {
    display: flex;
  }
}
.team-swiper-nav:hover {
  background: rgba(7, 28, 56, 0.06);
  border-color: var(--header-accent);
}
.team-swiper-nav--prev {
  left: 0;
}
@media (min-width: 768px) {
  .team-swiper-nav--prev {
    left: 0.5rem;
  }
}
.team-swiper-nav--next {
  right: 0;
}
@media (min-width: 768px) {
  .team-swiper-nav--next {
    right: 0.5rem;
  }
}
.team-swiper-nav i {
  font-size: 1rem;
}
/* Team swiper: her iki düğmede sağ ok; sol = geri (180°), sağ = ileri */
.team-swiper-nav__icon--flip {
  display: inline-block;
  transform: rotate(180deg);
}
.swiper-team {
  overflow: hidden;
  margin-top: 0;
  padding: 0.25rem 0;
}
@media (min-width: 1024px) {
  .swiper-team {
    overflow: visible;
  }
  .swiper-team .swiper-wrapper {
    overflow: visible;
  }
}
.swiper-team .swiper-slide {
  width: 18rem;
  height: auto;
  box-sizing: border-box;
  cursor: pointer;
}
/* Orijinal lg: Swiper'ın inline z-index'ini ezip aktif üstte */
@media (min-width: 1024px) {
  .swiper-team .swiper-slide {
    width: 23.75rem;
    perspective: none !important;
    transform-style: flat !important;
    z-index: 1 !important;
  }
  .swiper-team .swiper-slide.swiper-slide-prev,
  .swiper-team .swiper-slide.swiper-slide-next {
    z-index: 2 !important;
  }
  .swiper-team .swiper-slide.swiper-slide-active {
    z-index: 3 !important;
  }
}
.swiper-team .swiper-slide__inner {
  width: 100%;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
/* Desktop: içerikte yelpaze + blur (swiper-slide-visible / merkez üçlü net) */
@media (min-width: 1024px) {
  .swiper-team .swiper-slide__inner {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.85);
    transform-origin: center center;
  }
  .swiper-team .swiper-slide-visible .swiper-slide__inner {
    opacity: 1;
  }
  .swiper-team .swiper-slide-prev .swiper-slide__inner,
  .swiper-team .swiper-slide-active .swiper-slide__inner,
  .swiper-team .swiper-slide-next .swiper-slide__inner {
    filter: blur(0);
  }
  .swiper-team .swiper-slide:not(.swiper-slide-active) .swiper-slide__inner {
    transform: scale(0.85);
  }
  .swiper-team .swiper-slide.swiper-slide-active .swiper-slide__inner {
    transform: scale(1);
  }
  /* prev'in hemen solundaki kart → sağa itilir */
  .swiper-team .swiper-slide:has(+ .swiper-slide.swiper-slide-prev) .swiper-slide__inner {
    transform: scale(0.7) translateX(230px);
    filter: blur(8px);
  }
  /* next'ten sonraki tüm kartlar → sola itilir */
  .swiper-team .swiper-slide.swiper-slide-next ~ .swiper-slide .swiper-slide__inner {
    transform: scale(0.7) translateX(-230px);
    filter: blur(8px);
  }
  .swiper-team .swiper-slide.swiper-slide-prev .swiper-slide__inner,
  .swiper-team .swiper-slide.swiper-slide-next .swiper-slide__inner {
    filter: blur(0);
  }
}
.team-slide__img-wrap {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .team-slide__img-wrap {
    width: 23.75rem;
    height: 23.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.team-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-slide__name {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 81%;
  padding: 0.75rem 1rem;
  background: rgb(15 72 123);
  color: #e2e8f0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  border-top-right-radius: 12px;
}
.team-slide__meta {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .team-slide__meta {
    margin-top: 1.25rem;
  }
}
.team-slide__role {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #071c38;
}
.team-slide__desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(7, 28, 56, 0.68);
}
@media (min-width: 768px) {
  .team-slide__desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.75rem;
  }
}
.team__cta-wrap {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .team__cta-wrap {
    margin-top: 4rem;
  }
}
.team__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  color: #071c38;
  border: 3px solid rgba(7, 28, 56, 0.35);
  padding: 12px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
@media (min-width: 1024px) {
  .team__cta {
    padding: 14px 36px;
    font-size: 1.25rem;
  }
}
.team__cta:hover {
  background: #071c38;
  border-color: #071c38;
  color: #fff;
}

/* ===== Shared subpage hero template ===== */
.page-about {
  background: #fff;
}
.about-page-main {
  overflow: hidden;
}
.subpage-hero {
  padding: 3.5rem 0;
  background: #fff;
}
.subpage-hero__container {
  max-width: 1897px;
}
.subpage-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
}
.subpage-breadcrumb a {
  color: #9fcefd;
  text-decoration: none;
}
.subpage-breadcrumb a:hover {
  text-decoration: underline;
}
.subpage-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: 2.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  background: linear-gradient(145deg, #071c38 0%, #0d2844 54%, #071c38 100%);
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(7, 28, 56, 0.24),
    0 0 0 1px rgba(70, 120, 170, 0.18);
}
.subpage-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 54rem;
}
.subpage-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 6.4vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
}
.subpage-hero__lead {
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1rem);
  line-height: 1.45;
}
.subpage-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.3rem;
  border-radius: 9999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.about-button:hover {
  transform: translateY(-1px);
}
.about-button--light {
  color: #071c38;
  background: #fff;
  border: 1px solid #fff;
}
.about-button--light:hover {
  color: #071c38;
  background: #e7eef7;
  border-color: #e7eef7;
}
.about-button--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.about-button--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.subpage-hero__media {
  position: relative;
  min-height: 24rem;
}
.subpage-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}
.subpage-hero__metric {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 9.5rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: rgba(7, 28, 56, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}
.subpage-hero__metric strong {
  font-size: 1.9rem;
  line-height: 1;
}
.subpage-hero__metric span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.25;
}
.subpage-hero__metric--top {
  top: 1rem;
  left: 1rem;
}
.subpage-hero__metric--bottom {
  right: 1rem;
  bottom: 1rem;
}
.about-intro {
  padding: 4rem 0;
  background: #fff;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}
.about-section-title {
  color: #071c38;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.12;
}
.about-intro__copy {
  max-width: 58rem;
  color: rgba(7, 28, 56, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}
.about-intro__copy p {
  margin: 0;
}
.about-intro__copy p + p {
  margin-top: 1.25rem;
}
.about-stats {
  padding: 0 0 4.25rem;
  background: #fff;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.about-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon value"
    "icon label";
  gap: 0.35rem 0.9rem;
  align-items: center;
  min-height: 8.8rem;
  padding: 1.15rem;
  overflow: hidden;
  text-align: left;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 28, 56, 0.07);
}
.about-stat__icon {
  grid-area: icon;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.18);
}
.about-stat strong {
  grid-area: value;
  display: block;
  color: #071c38;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 0.95;
}
.about-stat span {
  display: block;
}
.about-stat > span:not(.about-stat__icon) {
  grid-area: label;
  max-width: none;
  margin: 0;
  color: rgba(7, 28, 56, 0.65);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}
.about-workflow {
  padding: 5rem 0;
  color: #fff;
  background: #071c38;
}
.about-workflow__head {
  max-width: 52rem;
  margin-bottom: 2rem;
}
.about-workflow__title {
  color: #fff;
}
.about-workflow__title::after {
  background: #9fcefd;
}
.about-workflow__head p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
}
.about-workflow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.about-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 16rem;
  padding: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}
.about-step__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.25rem;
}
.about-step__number {
  position: absolute;
  right: 1rem;
  bottom: 0.65rem;
  color: #fff;
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-weight: 800;
  line-height: 0.82;
  opacity: 0.08;
  pointer-events: none;
}
.about-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #9fcefd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.about-step h3 {
  margin: 0 0 0.65rem;
  font-size: 1.28rem;
  line-height: 1.15;
}
.about-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}
.about-capabilities {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}
.about-capabilities__head {
  max-width: 52rem;
  margin-bottom: 2rem;
}
.about-capabilities__head p {
  margin: 1rem 0 0;
  color: rgba(7, 28, 56, 0.68);
  font-size: 1.05rem;
  line-height: 1.55;
}
.about-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.about-capability {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(7, 28, 56, 0.08);
}
.about-capability__media {
  position: relative;
  overflow: hidden;
  background: #dce5ef;
}
.about-capability__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 28, 56, 0), rgba(7, 28, 56, 0.5));
  pointer-events: none;
}
.about-capability img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-capability__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  color: #fff;
  background: rgba(7, 28, 56, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.about-capability__body {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-content: start;
  column-gap: 0.85rem;
  row-gap: 0.38rem;
  padding: 1.15rem 1.2rem 1.25rem;
}
.about-capability__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 3rem;
  height: 3rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 28, 56, 0.14);
  font-size: 1.1rem;
}
.about-capability h3 {
  margin: 0;
  color: #071c38;
  font-size: 1.15rem;
  line-height: 1.2;
}
.about-capability p {
  grid-column: 2;
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
  line-height: 1.5;
}
.about-team-band {
  padding: 5rem 0;
  background: #fff;
}
.about-team-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: center;
}
.about-team-band p {
  margin: 1rem 0 0;
  color: rgba(7, 28, 56, 0.7);
  font-size: 1.06rem;
  line-height: 1.65;
}
.about-team-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  color: #fff;
  background: #0d2743;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(7, 28, 56, 0.18);
}
.about-team-card img {
  flex: 0 0 7rem;
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  background: #173a5d;
  border-radius: 14px;
}
.about-team-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.25;
}
.about-team-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.45;
}
.subpage-cta {
  padding: 0 0 3rem;
  background: #fff;
}
.subpage-cta__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #071c38;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(7, 28, 56, 0.08);
}
.subpage-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.18);
}
.subpage-cta__kicker {
  display: block;
  margin: 0 0 0.35rem;
  color: #1f6fae;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.subpage-cta h2 {
  margin: 0;
  color: #071c38;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.1;
}
.subpage-cta p {
  margin: 0.45rem 0 0;
  color: rgba(7, 28, 56, 0.68);
  font-size: 1.02rem;
  line-height: 1.45;
}
.subpage-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}
.subpage-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.subpage-cta__button:hover {
  transform: translateY(-1px);
}
.subpage-cta__button--primary {
  color: #fff;
  background: #071c38;
  border: 1px solid #071c38;
}
.subpage-cta__button--primary:hover {
  color: #fff;
  background: #1f6fae;
  border-color: #1f6fae;
}
.subpage-cta__button--secondary {
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.16);
}
.subpage-cta__button--secondary:hover {
  color: #071c38;
  background: #eef3f8;
  border-color: rgba(31, 111, 174, 0.28);
}
.footer__link.is-active {
  color: #fff;
  font-weight: 700;
}

/* ===== Contacts page ===== */
.page-contact {
  background: #fff;
}
.contact-page-main {
  overflow: hidden;
}
.subpage-hero__panel {
  display: grid;
  gap: 1rem;
  align-content: space-between;
  min-height: 22rem;
  padding: 1.25rem;
  color: #071c38;
  background: #f7f9fc;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.subpage-hero__panel-head {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(7, 28, 56, 0.1);
}
.subpage-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 3.4rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.18);
}
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  color: #fff;
  background: #1f6fae;
  border-radius: 14px;
}
.contact-kicker {
  display: block;
  margin: 0 0 0.3rem;
  color: #1f6fae;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.subpage-hero__panel h2 {
  margin: 0;
  color: #071c38;
  font-size: 1.35rem;
  line-height: 1.15;
}
.subpage-hero__address {
  display: grid;
  gap: 0.28rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
}
.subpage-hero__address span {
  color: rgba(7, 28, 56, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.subpage-hero__address strong {
  color: #071c38;
  font-size: 1.08rem;
  line-height: 1.25;
}
.subpage-hero__address p {
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
  line-height: 1.45;
}
.subpage-hero__quick {
  display: grid;
  gap: 0.7rem;
}
.subpage-hero__quick a {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.subpage-hero__quick a:hover {
  color: #071c38;
  border-color: rgba(31, 111, 174, 0.3);
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.1);
  transform: translateY(-1px);
}
.subpage-hero__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
}
.subpage-hero__quick small {
  display: block;
  margin: 0 0 0.18rem;
  color: rgba(7, 28, 56, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.subpage-hero__quick strong {
  display: block;
  color: #071c38;
  font-size: 0.98rem;
  line-height: 1.25;
}
.contact-details {
  padding: 0 0 4rem;
  background: #fff;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  aspect-ratio: 1.35 / 1;
  min-height: 14.5rem;
  padding: 1.5rem;
  overflow: hidden;
  color: #071c38;
  text-align: center;
  text-decoration: none;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 28, 56, 0.07);
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
a.contact-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid #9fcefd;
  border-right: 1.5px solid #9fcefd;
  opacity: 0.65;
  transform: rotate(45deg);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
a.contact-card:hover,
a.contact-card:focus-visible {
  color: #071c38;
  background: #fff;
  border-color: rgba(31, 111, 174, 0.28);
  box-shadow: 0 18px 42px rgba(7, 28, 56, 0.11);
  transform: translateY(-2px);
}
a.contact-card:hover::after,
a.contact-card:focus-visible::after {
  opacity: 1;
  transform: translate(0.12rem, -0.12rem) rotate(45deg);
}
.contact-card__label {
  margin: 0;
  color: rgba(7, 28, 56, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.contact-card strong {
  color: #071c38;
  font-size: 1.16rem;
  line-height: 1.25;
}
.contact-card span:last-child {
  max-width: 18rem;
  margin-top: 0.1rem;
  color: rgba(7, 28, 56, 0.68);
  font-size: 0.98rem;
  line-height: 1.45;
}
.contact-card .contact-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 3.4rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.18);
}
.contact-workspace {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, #f4f7fb 0%, #eef3f8 72%, rgba(238, 243, 248, 0) 100%);
}
.contact-workspace__head {
  max-width: 54rem;
  margin: 0 0 1.4rem;
}
.contact-workspace__head span,
.contact-form__head span,
.contact-map__head p {
  margin: 0;
  color: #1f6fae;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-workspace__head h2 {
  max-width: 44rem;
  margin: 0.35rem 0 0;
  color: #071c38;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}
.contact-workspace__head p {
  max-width: 46rem;
  margin: 0.8rem 0 0;
  color: rgba(7, 28, 56, 0.66);
  font-size: 1.03rem;
  line-height: 1.55;
}
.contact-workspace__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: 1.15rem;
  align-items: stretch;
}
.contact-map,
.contact-form {
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(7, 28, 56, 0.08);
}
.contact-map {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.contact-map__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(7, 28, 56, 0.08);
}
.contact-map__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 3.2rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.16);
}
.contact-map__head h3,
.contact-form__head h3 {
  margin: 0.25rem 0 0;
  color: #071c38;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}
.contact-map__head span:not(.contact-map__icon),
.contact-form__head p {
  display: block;
  margin: 0.45rem 0 0;
  color: rgba(7, 28, 56, 0.68);
  line-height: 1.55;
}
.contact-map__frame {
  position: relative;
  min-height: 31rem;
  margin: 1.25rem;
  overflow: hidden;
  background: #dce5ef;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 8px;
}
.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map__route {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: #071c38;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.2);
  transition:
    background 0.2s,
    transform 0.2s;
}
.contact-map__route:hover {
  color: #fff;
  background: #1f6fae;
  transform: translateY(-1px);
}
.contact-form {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.25rem;
}
.contact-form__head {
  padding-bottom: 0.15rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.contact-form__field {
  display: grid;
  gap: 0.45rem;
}
.contact-form__field span,
.contact-form__consent span {
  color: rgba(7, 28, 56, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  color: #071c38;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.18);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.contact-form__field input {
  min-height: 3.2rem;
  padding: 0 1rem;
}
.contact-form__field textarea {
  min-height: 9rem;
  padding: 0.95rem 1rem;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  background: #fff;
  border-color: #1f6fae;
  box-shadow: 0 0 0 3px rgba(31, 111, 174, 0.16);
}
.contact-form__field textarea::placeholder {
  color: rgba(7, 28, 56, 0.42);
}
.contact-form__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.25rem 0;
}
.contact-form__consent input {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  accent-color: #1f6fae;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 13rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.25rem;
  color: #fff;
  background: #071c38;
  border: 1px solid #071c38;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.contact-form__submit:hover {
  background: #1f6fae;
  border-color: #1f6fae;
  transform: translateY(-1px);
}
.contact-form__status {
  min-height: 1.25rem;
  margin: 0;
  color: #1f6fae;
  font-size: 0.92rem;
  font-weight: 700;
}
/* ===== Footer – koyu mor gradient, 4 sütun, trust bloğu, alt satır ===== */
.footer {
  padding: 2rem 0 3rem;
  margin-top: 0;
}
.footer__inner {
  background: linear-gradient(145deg, #071c38 0%, #0d2844 50%, #071c38 100%);
  color: #fff;
  border-radius: 20px;
  padding: 1rem 1.25rem 1.5rem;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(70, 120, 170, 0.18);
}
@media (min-width: 768px) {
  .footer__inner {
    padding: 1.25rem 1.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__inner {
    padding: 3rem 4rem 2.5rem;
  }
}
.footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .footer__main {
    flex-wrap: nowrap;
    gap: 0;
  }
}
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  flex: 1 1 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .footer__cols {
    border-bottom: none;
    padding-bottom: 0;
    flex: 1 1 auto;
    gap: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .footer__cols {
    flex: 0 0 71.265625%;
    min-width: 0;
  }
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
  transition: color 0.15s ease;
}
@media (min-width: 768px) {
  .footer__brand {
    width: auto;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 1.25rem;
    margin-right: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  /* Container genişliğine göre yüzde (179:226:150:357:368 = 1280 toplam) */
  .footer__cols {
    flex: 0 0 71.265625%;
    min-width: 0;
  }
  .footer__part-1 {
    flex: 0 0 19.63%;
    min-width: 0;
  }
  .footer__col--1 {
    flex: 0 0 24.78%;
    min-width: 0;
  }
  .footer__col--2 {
    flex: 0 0 16.45%;
    min-width: 0;
  }
  .footer__col--3 {
    flex: 0 0 39.14%;
    min-width: 0;
  }
  .footer__part-5 {
    flex: 0 0 26.5%;
    min-width: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__cols {
    flex-wrap: wrap;
    flex: 1 1 100%;
    gap: 0.5rem 1rem;
  }
  .footer__part-1 { flex: 0 0 19.63%; min-width: 0; }
  .footer__col--1 { flex: 0 0 24.78%; min-width: 0; }
  .footer__col--2 { flex: 0 0 16.45%; min-width: 0; }
  .footer__col--3 { flex: 0 0 39.14%; min-width: 0; }
  .footer__part-5 { flex: 0 0 100%; min-width: 0; }
}
.footer__brand:hover {
  color: rgba(255, 255, 255, 0.95);
}
.footer__logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 3.5rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .footer__logo-img {
    max-height: 4rem;
  }
}
.footer__col {
  margin-top: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__col {
    width: auto;
    margin-top: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__cols > .footer__col:first-of-type {
    border-left: none;
  }
  .footer__col--contacts {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1.5rem;
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .footer__col--contacts {
    margin-left: 0;
  }
}
.footer__title {
  font-size: 1.3rem;
  line-height: 1.32;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__list li {
  margin-bottom: 0.6rem;
}
.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
  padding: 0.1rem 0;
  transition: color 0.15s ease;
}
.footer__link:hover {
  color: #fff;
}
.footer__col--contacts .footer__contact-label {
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
}
.footer__col--contacts .footer__contact-label:first-child {
  margin-top: 0;
}
.footer__contact-label {
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.2rem;
}
.footer__contact-link {
  font-size: 1.3rem;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.footer__contact-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer__contact-text {
  font-size: 1.3rem;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.footer__email-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  margin-bottom: 0.15rem;
}
.footer__email-link {
  margin-bottom: 0;
  word-break: break-all;
}
.footer__copy-btn {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer__copy-btn:hover {
  color: #fff;
}
.footer__copy-btn i {
  font-size: 0.9rem;
}
.footer__email-note {
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem;
}
.footer__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer__cta {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer__cta:hover {
  background: #fff;
  color: #071C38;
  border-color: #fff;
}
.footer__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer__icon-link:hover {
  background: #fff;
  color: #071C38;
  border-color: #fff;
}
.footer__icon-link i {
  font-size: 2rem;
}
/* Trust wrap: sosyal + badges üstte, "Go to Outdoor Website" butonu altta */
.footer__trust-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.footer__trust-wrap .footer__cta {
  align-self: flex-start;
  margin-top: 0.25rem;
}
/* Trust block – sosyal ikonlar + badges */
.footer__trust {
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .footer__trust-wrap {
    align-items: flex-start;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.footer__social-link i {
  font-size: 2rem;
}
.footer__yandex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  gap: 0.35rem;
}
.footer__yandex:hover {
  opacity: 0.95;
}
.footer__yandex-img {
  display: block;
  height: auto;
  margin-bottom: 0.25rem;
}
.footer__yandex-label {
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.footer__badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.footer__badge-img {
  display: block;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__chamber {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  margin-top:25px;
  overflow-wrap: anywhere;
}
.footer__badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  align-items: center;
}
.footer__badge-small {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__badge-placeholder {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-size: 0.5rem;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-indent: -999px;
}
/* Alt çizgi ve alt satır */
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1rem 0 1.75rem;
  width: 100%;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.footer__copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}
.footer__disclaimer {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
  text-align: right;
}
.footer__legal-block {
  margin-top: 1.5rem;
}
.footer__legal {
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-left: 0.2rem;
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__main {
  margin-bottom: 2.5rem !important;
}
.footer_contact_element {
  margin-bottom: 1.5rem !important;
}

/* ===== Blog pages ===== */
.page-blog {
  background: #fff;
}
.blog-page-main {
  overflow: hidden;
}
.blog-hero-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 22rem;
  padding: 1.35rem;
  color: #071c38;
  background: #f7f9fc;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.blog-hero-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 28, 56, 0.18);
}
.blog-hero-card h2 {
  margin: 0;
  color: #071c38;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
}
.blog-hero-card p {
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
  font-size: 1.02rem;
  line-height: 1.5;
}
.blog-hero-card a {
  width: fit-content;
  color: #1f6fae;
  font-weight: 800;
  text-decoration: none;
}
.blog-featured,
.blog-list,
.blog-related {
  padding: 4.5rem 0;
  background: #fff;
}
.blog-featured {
  padding-bottom: 2rem;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 28, 56, 0.08);
}
.blog-featured__media {
  min-height: 24rem;
  background: #dce5ef;
}
.blog-featured__media img,
.blog-card__media img,
.blog-detail-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured__content {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.4rem, 3.2vw, 2.5rem);
}
.blog-card__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.38rem 0.65rem;
  color: #fff;
  background: #071c38;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-featured h2,
.blog-card h3,
.blog-detail__article h2 {
  margin: 0;
  color: #071c38;
}
.blog-featured h2 {
  max-width: 42rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}
.blog-featured p,
.blog-list__head p,
.blog-card p {
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
  line-height: 1.55;
}
.blog-card__meta,
.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  color: rgba(7, 28, 56, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}
.subpage-hero .blog-detail__meta {
  color: rgba(255, 255, 255, 0.68);
}
.blog-card__meta span + span::before,
.blog-detail__meta span + span::before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.8rem;
  vertical-align: middle;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.55;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.14);
  border-radius: 9999px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.blog-card__link:hover {
  color: #fff;
  background: #071c38;
  border-color: #071c38;
  transform: translateY(-1px);
}
.blog-list {
  padding-top: 2.5rem;
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}
.blog-list__head {
  display: grid;
  gap: 0.6rem;
  max-width: 48rem;
  margin-bottom: 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(7, 28, 56, 0.08);
}
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce5ef;
}
.blog-card__body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.15rem;
}
.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h3 a:hover {
  color: #1f6fae;
}
.blog-detail-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
}
.blog-detail-hero__media {
  min-height: 24rem;
  overflow: hidden;
  background: #dce5ef;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}
.blog-detail {
  padding: 4.5rem 0;
  background: #fff;
}
.blog-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(16rem, 0.28fr);
  gap: 2rem;
  align-items: start;
}
.blog-detail__article {
  display: grid;
  gap: 1.35rem;
  color: rgba(7, 28, 56, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}
.blog-detail__article p {
  margin: 0;
}
.blog-detail__lead {
  color: #071c38;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
}
.blog-detail__article h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}
.blog-detail__aside {
  position: sticky;
  top: 8rem;
  display: grid;
  gap: 1rem;
}
.blog-detail__back,
.blog-detail__note,
.blog-related__card {
  display: block;
  color: #071c38;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 28, 56, 0.07);
}
.blog-detail__back {
  padding: 0.9rem 1rem;
  font-weight: 800;
  text-decoration: none;
}
.blog-detail__note {
  padding: 1rem;
}
.blog-detail__note strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #071c38;
}
.blog-detail__note p {
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
  line-height: 1.5;
}
.blog-related {
  padding-top: 0;
  background: #fff;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.blog-related__card {
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.blog-related__card:hover {
  background: #fff;
  border-color: rgba(31, 111, 174, 0.28);
  transform: translateY(-1px);
}

/* ===== Catalog listing page ===== */
.products__catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.65rem 1.15rem;
  color: #071c38;
  background: #e9f1f9;
  border: 2px solid rgba(7, 28, 56, 0.12);
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.products__catalog-link:hover {
  color: #fff;
  background: #071c38;
  border-color: #071c38;
}
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.product-card__actions .product-card__btn {
  margin-top: 0;
}
.product-card__btn--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.product-card__btn--secondary:hover {
  color: #071c38;
  background: #fff;
  border-color: #fff;
}
.page-catalog {
  background: #fff;
}
.catalog-page-main {
  overflow: hidden;
}
.catalog-hero-card {
  position: relative;
  min-height: 20rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #071c38;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.catalog-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(7, 28, 56, 0.02), rgba(70, 120, 170, 0.14)),
    url('../assets/images/services/simultaneous-interpretation.webp') center / cover no-repeat;
  opacity: 0.18;
}
.catalog-hero-card > * {
  position: relative;
  z-index: 1;
}
.catalog-hero-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: auto;
  color: #fff;
  background: #071c38;
  border-radius: 14px;
  font-size: 1.45rem;
}
.catalog-hero-card h2 {
  margin: 2.5rem 0 0.65rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}
.catalog-hero-card p {
  margin: 0;
  color: rgba(7, 28, 56, 0.72);
  font-size: 1rem;
  line-height: 1.5;
}
.catalog-hero-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.catalog-hero-card__stats span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 5rem;
  padding: 0.8rem;
  color: rgba(7, 28, 56, 0.72);
  background: rgba(233, 241, 249, 0.9);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}
.catalog-hero-card__stats strong {
  color: #071c38;
  font-size: 2rem;
  line-height: 1;
}
.catalog-list {
  padding: var(--section-gap) 0;
  background: #f4f7fb;
}
.catalog-list__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.catalog-list__label {
  display: block;
  margin-bottom: 0.45rem;
  color: #4678aa;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.catalog-list__count {
  margin: 0 0 0.75rem;
  color: rgba(7, 28, 56, 0.68);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}
/* ===== Advantages + portfolio sections ===== */
.advantages,
.projects {
  padding: var(--section-gap) 0;
  background: #fff;
}
.advantages {
  background: #f7fafc;
}
.advantages__head,
.projects__head {
  max-width: 48rem;
  margin-bottom: 2rem;
}
.advantages__label,
.projects__label,
.about-services__label,
.about-focus__label {
  display: block;
  margin-bottom: 0.45rem;
  color: #4678aa;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.advantages__lead,
.projects__lead,
.about-services__head p,
.about-focus__content p {
  margin: 0.75rem 0 0;
  color: rgba(7, 28, 56, 0.68);
  font-size: 1.02rem;
  line-height: 1.65;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.advantages__card {
  min-height: 14rem;
  padding: 1.25rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(7, 28, 56, 0.08);
}
.advantages__icon,
.about-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  background: #071c38;
  border-radius: 12px;
  font-size: 1.15rem;
}
.advantages__card h3,
.projects__body h3,
.about-service-card strong,
.about-focus__list h3 {
  margin: 0;
  color: #071c38;
  font-size: 1.05rem;
  line-height: 1.25;
}
.advantages__card p,
.projects__body p,
.about-service-card span:last-child,
.about-focus__list p {
  margin: 0.65rem 0 0;
  color: rgba(7, 28, 56, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}
.projects {
  background: #f4f7fb;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.projects__card {
  overflow: hidden;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(7, 28, 56, 0.1);
}
.projects__card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.projects__body {
  padding: 1.2rem;
}
.projects__body span {
  display: block;
  margin-bottom: 0.45rem;
  color: #4678aa;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.projects__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.projects__link,
.about-focus__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  color: #fff;
  background: #071c38;
  border: 1px solid #071c38;
  border-radius: 9999px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.projects__link--secondary {
  color: #071c38;
  background: #fff;
  border-color: rgba(7, 28, 56, 0.14);
}
.projects__link:hover,
.about-focus__link:hover {
  color: #071c38;
  background: #fff;
  border-color: rgba(7, 28, 56, 0.18);
}
.projects__link--secondary:hover {
  color: #fff;
  background: #071c38;
  border-color: #071c38;
}

/* ===== About page additions ===== */
.about-services,
.about-focus {
  padding: var(--section-gap) 0;
  background: #fff;
}
.about-services {
  padding-top: 0;
}
.about-services__head {
  max-width: 50rem;
  margin-bottom: 1.5rem;
}
.about-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.about-service-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.2rem;
  color: #071c38;
  background: #f7fafc;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 28, 56, 0.07);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.about-service-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(70, 120, 170, 0.28);
}
.about-service-card__icon {
  margin-bottom: auto;
}
.about-service-card strong {
  margin-top: 1rem;
}
.about-focus {
  background: #f4f7fb;
}
.about-focus__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: stretch;
}
.about-focus__content,
.about-focus__list {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(7, 28, 56, 0.08);
}
.about-focus__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.about-focus__link {
  margin-top: 1.5rem;
}
.about-focus__list {
  display: grid;
  gap: 1rem;
}
.about-focus__list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 12px;
}
.about-focus__list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  color: #fff;
  background: #4678aa;
  border-radius: 10px;
}

/* ===== Catalog listing page ===== */
.catalog-controls {
  display: grid;
  grid-template-columns: minmax(16rem, 0.36fr) minmax(10rem, 12rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.catalog-search {
  position: relative;
  display: block;
  min-width: 0;
}
.catalog-search__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #4678aa;
  pointer-events: none;
}
.catalog-search__input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 1rem 0.75rem 2.85rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.16);
  border-radius: 9999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
  box-shadow: 0 10px 26px rgba(7, 28, 56, 0.08);
}
.catalog-search__input:focus {
  border-color: #4678aa;
  box-shadow: 0 0 0 3px rgba(70, 120, 170, 0.18);
}
.catalog-sort {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}
.catalog-select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.72rem 0.9rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.16);
  border-radius: 9999px;
  font-family: var(--font);
  font-size: 0.96rem;
  font-weight: 800;
  outline: none;
  box-shadow: 0 10px 26px rgba(7, 28, 56, 0.08);
}
.catalog-select:focus {
  border-color: #4678aa;
  box-shadow: 0 0 0 3px rgba(70, 120, 170, 0.18);
}
.catalog-controls__side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  min-width: 0;
}
.catalog-controls__side--links {
  justify-content: flex-end;
}
.catalog-controls__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  color: #4678aa;
  background: #fff;
  border: 1px solid rgba(70, 120, 170, 0.24);
  border-radius: 9999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(7, 28, 56, 0.06);
}
.catalog-controls__link:hover {
  color: #fff;
  background: #4678aa;
  border-color: #4678aa;
}
.catalog-advanced-toggle {
  gap: 0.5rem;
}
.catalog-advanced-toggle i {
  font-size: 0.95rem;
}
.catalog-advanced-toggle.is-open {
  color: #fff;
  background: #071c38;
  border-color: #071c38;
}
.catalog-controls__link--standalone {
  margin-bottom: 0.75rem;
}
.catalog-advanced {
  margin-bottom: 2rem;
  padding: 1.15rem;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(7, 28, 56, 0.08);
}
.catalog-advanced__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.catalog-advanced__head h3 {
  margin: 0.2rem 0 0;
  color: #071c38;
  font-size: 1.12rem;
  font-weight: 900;
}
.catalog-advanced__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}
.catalog-advanced__apply,
.catalog-advanced__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  color: #4678aa;
  background: #fff;
  border: 1px solid rgba(70, 120, 170, 0.24);
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}
.catalog-advanced__apply {
  color: #fff;
  background: #071c38;
  border-color: #071c38;
}
.catalog-advanced__apply:hover {
  background: #4678aa;
  border-color: #4678aa;
}
.catalog-advanced__clear:hover {
  color: #fff;
  background: #4678aa;
  border-color: #4678aa;
}
.catalog-advanced__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.catalog-filter-group {
  min-width: 0;
}
.catalog-filter-group__label {
  margin: 0 0 0.55rem;
  color: rgba(7, 28, 56, 0.66);
  font-size: 0.84rem;
  font-weight: 900;
}
.catalog-multiselect {
  position: relative;
  min-width: 0;
}
.catalog-multiselect__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.95rem 0.75rem 1.05rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.16);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 10px 26px rgba(7, 28, 56, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.catalog-multiselect__trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalog-multiselect__trigger i {
  flex: 0 0 auto;
  color: #4678aa;
  font-size: 0.82rem;
  transition: transform 0.2s;
}
.catalog-multiselect.is-open .catalog-multiselect__trigger {
  border-color: #4678aa;
  box-shadow: 0 0 0 3px rgba(70, 120, 170, 0.16);
}
.catalog-multiselect.is-open .catalog-multiselect__trigger i {
  transform: rotate(180deg);
}
.catalog-multiselect__panel {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.55rem;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(7, 28, 56, 0.09);
}
.catalog-multiselect:not(.is-open) .catalog-multiselect__panel,
.catalog-multiselect__panel[hidden] {
  display: none;
}
.catalog-choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.55rem;
  padding: 0.58rem 0.7rem;
  color: #071c38;
  background: #f7f9fc;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.catalog-choice input {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #4678aa;
}
.catalog-choice span {
  min-width: 0;
}
.catalog-choice:hover,
.catalog-choice.is-active {
  color: #071c38;
  background: #eef5fb;
  border-color: rgba(70, 120, 170, 0.28);
}
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}
.catalog-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.16);
  border-radius: 9999px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(7, 28, 56, 0.06);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.catalog-filter:hover,
.catalog-filter.is-active {
  color: #fff;
  background: #071c38;
  border-color: #071c38;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.catalog-grid .product-card {
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(7, 28, 56, 0.13);
}
.catalog-grid .product-card__img-wrap {
  aspect-ratio: 16 / 11;
}
.catalog-grid .product-card__img {
  object-fit: contain;
  padding: 1rem;
}
.catalog-empty {
  margin-top: 1.5rem;
  padding: 2.5rem 1rem;
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(7, 28, 56, 0.08);
}
.catalog-empty i {
  color: #4678aa;
  font-size: 1.8rem;
}
.catalog-empty h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.3rem;
}
.catalog-empty p {
  margin: 0;
  color: rgba(7, 28, 56, 0.68);
}
.catalog-list--categories {
  background: #fff;
}
.catalog-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.catalog-category-card {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  padding: 1.2rem;
  color: #071c38;
  background: #f7fafc;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 28, 56, 0.08);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.catalog-category-card:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(70, 120, 170, 0.28);
}
.catalog-category-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: auto;
  color: #fff;
  background: #071c38;
  border-radius: 12px;
  font-size: 1.15rem;
}
.catalog-category-card__body {
  display: block;
  margin-top: 1rem;
}
.catalog-category-card__body strong {
  display: block;
  color: #071c38;
  font-size: 1.05rem;
  line-height: 1.25;
}
.catalog-category-card__body span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(7, 28, 56, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}
.catalog-category-card__meta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.4rem 0.7rem;
  color: #4678aa;
  background: #fff;
  border: 1px solid rgba(70, 120, 170, 0.2);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ===== Product detail + cart ===== */
.page-product-detail {
  background: #f4f7fb;
}
.product-detail-page {
  overflow: hidden;
}
.product-detail-hero {
  padding: 3.5rem 0 var(--section-gap);
  background: #f4f7fb;
}
.product-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: rgba(7, 28, 56, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
}
.product-detail-breadcrumb a {
  color: #4678aa;
  text-decoration: none;
}
.product-detail-breadcrumb a:hover {
  text-decoration: underline;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.75fr);
  gap: 2rem;
  align-items: stretch;
}
.product-detail-media,
.product-detail-info {
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(7, 28, 56, 0.12);
}
.product-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: #fff;
}
.product-detail-image {
  display: block;
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
}
.product-gallery {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.product-gallery__main {
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(145deg, #f9fbff 0%, #eef4fb 100%);
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 16px;
}
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-height: 34rem;
  padding-right: 0.2rem;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 0.75rem;
  -webkit-overflow-scrolling: touch;
}
.product-gallery__thumb {
  width: 4.65rem;
  height: 4.65rem;
  flex: 0 0 4.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  background: #f8fbff;
  border: 1px solid rgba(7, 28, 56, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: #4678aa;
  box-shadow: 0 10px 24px rgba(7, 28, 56, 0.12);
  transform: translateY(-1px);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  color: #fff;
  background: linear-gradient(145deg, #071c38 0%, #0d2844 56%, #071c38 100%);
}
.product-detail-brand {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.75rem;
  color: #9fcefd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-detail-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}
.product-detail-price {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.85rem;
  color: #071c38;
  background: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}
.product-detail-specs {
  margin: 0;
  color: #9fcefd;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}
.product-detail-desc {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}
.product-detail-description {
  margin-top: 1.5rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.product-detail-description .product-section-eyebrow {
  margin-bottom: 0.45rem;
  color: #9fcefd;
}
.product-detail-description h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}
.product-detail-description p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}
.product-detail-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.product-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}
.product-detail-meta i {
  color: #9fcefd;
}
.product-detail-cart,
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.product-qty {
  display: inline-flex;
  align-items: center;
  min-height: 3.15rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  overflow: hidden;
}
.product-qty__btn {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.product-qty__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.product-qty__input {
  width: 4rem;
  min-height: 3rem;
  color: #fff;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font: inherit;
  font-weight: 800;
  text-align: center;
  outline: none;
  appearance: textfield;
}
.product-qty__input::-webkit-outer-spin-button,
.product-qty__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.product-detail-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.75rem 1.35rem;
  color: #071c38;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s;
}
.product-detail-add:hover {
  background: #e7eef7;
  transform: translateY(-1px);
}
.product-detail-body {
  padding: 0 0 4.5rem;
  background: #f4f7fb;
}
.product-detail-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 1rem;
  align-items: stretch;
}
.product-description-block,
.product-detail-note {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 28, 56, 0.08);
}
.product-section-eyebrow {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: #4678aa;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-description-block h2,
.product-detail-note h2,
.related-products__head h2 {
  margin: 0;
  color: #071c38;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}
.product-description-block p,
.product-detail-note p {
  margin: 0.95rem 0 0;
  color: rgba(7, 28, 56, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}
.related-products {
  padding: 0 0 var(--section-gap);
  background: #f4f7fb;
}
.related-products__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}
.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.related-product-card {
  display: grid;
  grid-template-rows: 13rem 1fr;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 28, 56, 0.08);
  overflow: hidden;
}
.related-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(145deg, #f9fbff 0%, #eef4fb 100%);
}
.related-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-product-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
}
.related-product-card__body span {
  color: #4678aa;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.related-product-card__body h3 {
  margin: 0.35rem 0 0;
  color: #071c38;
  font-size: 1.05rem;
  line-height: 1.25;
}
.related-product-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.related-product-card__body h3 a:hover {
  color: #4678aa;
}
.related-product-card__body p {
  margin: 0.6rem 0 0;
  color: rgba(7, 28, 56, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}
.related-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1rem;
}
.related-product-card__link,
.related-product-card__cart {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}
.related-product-card__link {
  color: #fff;
  background: #071c38;
}
.related-product-card__cart {
  color: #071c38;
  background: #edf4fb;
}
.related-product-card__link:hover,
.related-product-card__cart:hover {
  transform: translateY(-1px);
}
.product-detail-missing {
  padding: 4rem 0 var(--section-gap);
}
.product-detail-missing__panel {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  color: #fff;
  background: linear-gradient(145deg, #071c38 0%, #0d2844 100%);
  border-radius: 20px;
  text-align: center;
}
.product-detail-missing__panel i {
  font-size: 2rem;
  color: #9fcefd;
}
.product-detail-missing__panel h2 {
  margin: 0.75rem 0 0.5rem;
}
.product-detail-missing__panel p {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Service detail ===== */
.page-service-detail {
  background: #f4f7fb;
}

.service-detail-hero {
  padding-top: 3.5rem;
}

.service-gallery__main {
  padding: 0;
  background: #071c38;
  overflow: hidden;
}

.service-detail-image {
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 16px;
}

.service-gallery .product-gallery__thumb {
  padding: 0;
  overflow: hidden;
}

.service-gallery .product-gallery__thumb img {
  object-fit: cover;
}

.service-detail-price {
  color: #071c38;
}

.service-detail-actions .about-button {
  min-width: 10.5rem;
}

.service-detail-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding: 0.75rem 0.85rem 0.75rem 2.35rem;
  color: rgba(7, 28, 56, 0.76);
  background: #f4f7fb;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 8px;
  font-size: 0.96rem;
  line-height: 1.45;
}

.service-detail-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0.85rem;
  top: 0.82rem;
  color: #4678aa;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
}

.related-services__grid .product-card {
  min-height: 100%;
}

.related-services__grid .product-card__img-wrap {
  background: #071c38;
}

.related-services__grid .product-card__img {
  object-fit: cover;
}

.related-services__grid .product-card__actions {
  margin-top: auto;
}

.cart-floating {
  position: fixed;
  right: 1rem;
  bottom: 8.25rem;
  z-index: 910;
  width: 3.25rem;
  height: 3.25rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #071c38 0%, #204e81 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  font-size: 1.25rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cart-floating:hover {
  transform: scale(1.06);
}
body.is-modal-open .cart-floating {
  opacity: 0;
  pointer-events: none;
}
.cart-floating__count {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  color: #071c38;
  background: #fff;
  border: 2px solid #071c38;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
}
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  justify-content: flex-end;
  background: rgba(3, 10, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.cart-drawer[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
}
.cart-drawer__panel {
  position: relative;
  z-index: 1;
  width: min(32rem, 92vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  color: #071c38;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.cart-drawer[aria-hidden="false"] .cart-drawer__panel {
  transform: translateX(0);
}
.cart-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071c38;
  background: #e9f1f9;
  border-radius: 50%;
  font-size: 1.2rem;
}
.cart-drawer__head {
  padding-right: 3.25rem;
  margin-bottom: 1.25rem;
}
.cart-drawer__eyebrow {
  display: block;
  color: #4678aa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-drawer__head h2 {
  margin: 0.25rem 0 0;
  font-size: 1.8rem;
  line-height: 1.1;
}
.cart-drawer__items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.35rem;
}
.cart-drawer__empty {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(7, 28, 56, 0.68);
}
.cart-drawer__empty i {
  color: #4678aa;
  font-size: 2rem;
}
.cart-drawer__empty h3 {
  margin: 0.75rem 0 0.35rem;
  color: #071c38;
}
.cart-drawer__empty p {
  margin: 0 0 1rem;
  max-width: 18rem;
  line-height: 1.5;
}
.cart-drawer__empty a {
  color: #4678aa;
  font-weight: 800;
  text-decoration: none;
}
.cart-item {
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(7, 28, 56, 0.1);
}
.cart-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: #f4f7fb;
  border-radius: 10px;
  overflow: hidden;
}
.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.45rem;
}
.cart-item__brand {
  display: block;
  color: #4678aa;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cart-item h3 {
  margin: 0.15rem 0 0.6rem;
  font-size: 1rem;
  line-height: 1.25;
}
.cart-item h3 a {
  color: #071c38;
  text-decoration: none;
}
.cart-item__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.cart-item__qty {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071c38;
  background: #e9f1f9;
  border-radius: 50%;
}
.cart-item__controls span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 900;
}
.cart-item__remove {
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b42318;
  background: #fff1f0;
  border-radius: 50%;
  font-size: 0.9rem;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.cart-item__remove:hover {
  color: #fff;
  background: #d93025;
  box-shadow: none;
}
.cart-drawer__footer {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(7, 28, 56, 0.12);
}
.cart-drawer__checkout {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #fff;
  background: #4678aa;
  border-radius: 9999px;
  font-weight: 900;
  text-decoration: none;
}
.cart-drawer__checkout:hover {
  background: #071c38;
}
.cart-drawer__quote,
.cart-drawer__clear {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 9999px;
  font-weight: 900;
}
.cart-drawer__checkout i,
.cart-drawer__quote i,
.cart-drawer__clear i {
  font-size: 1rem;
}
.cart-drawer__quote {
  color: #fff;
  background: #071c38;
}
.cart-drawer__clear {
  color: #b42318;
  background: #fff1f0;
}
.cart-drawer__clear:hover {
  color: #fff;
  background: #d93025;
}

/* ===== Legal / static pages ===== */
.page-legal {
  background: #f4f7fb;
}
.legal-page {
  color: #071c38;
  background: #f4f7fb;
}
.legal-hero {
  padding: 3.5rem 0;
  background: #fff;
}
.legal-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.32fr);
}
.legal-hero__aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 14rem;
  padding: 1.25rem;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 28, 56, 0.92), rgba(32, 78, 129, 0.86)),
    url('../assets/images/services/service-technical-event-support.webp') center / cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 28, 56, 0.16);
  overflow: hidden;
}
.legal-hero__aside i {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  color: #071c38;
  background: #fff;
  border-radius: 8px;
  font-size: 1.25rem;
}
.legal-hero__aside strong {
  display: block;
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.25;
}
.legal-hero__aside span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.legal-content {
  padding: 3rem 0 4rem;
}
.legal-content__container {
  max-width: 960px;
}
.legal-document {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(7, 28, 56, 0.08);
}
.legal-document__intro {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(7, 28, 56, 0.1);
}
.legal-document__eyebrow {
  display: inline-flex;
  color: #4678aa;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legal-document h2 {
  margin: 0.4rem 0 0.7rem;
  color: #071c38;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
}
.legal-document p,
.legal-document li {
  color: rgba(7, 28, 56, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-document a {
  color: #4678aa;
  font-weight: 800;
  text-decoration: none;
}
.legal-document a:hover {
  color: #071c38;
}
.legal-section {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(7, 28, 56, 0.08);
}
.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.legal-section h3 {
  margin: 0 0 0.55rem;
  color: #071c38;
  font-size: 1.15rem;
  line-height: 1.3;
}
.legal-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.2rem;
}

/* ===== Checkout preview ===== */
.page-checkout {
  background: #f4f7fb;
}
.checkout-page {
  color: #071c38;
  background: #f4f7fb;
}
.checkout-hero {
  padding: 3.5rem 0;
  background: #fff;
}
.checkout-breadcrumb {
  color: rgba(255, 255, 255, 0.68);
}
.checkout-breadcrumb a {
  color: #9fcefd;
}
.checkout-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 1.5rem;
  align-items: end;
}
.checkout-eyebrow {
  display: inline-flex;
  color: #4678aa;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.checkout-hero .checkout-eyebrow {
  color: #9fcefd;
}
.checkout-title {
  max-width: 58rem;
  margin: 0.35rem 0 0;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: 0.96;
}
.checkout-lead {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.65;
}
.checkout-preview-note {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}
.checkout-preview-note i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #071c38;
  background: #9fcefd;
  border-radius: 50%;
}
.checkout-preview-note strong {
  display: block;
  font-size: 1rem;
}
.checkout-preview-note span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
.checkout-hero-card::before {
  background:
    linear-gradient(145deg, rgba(7, 28, 56, 0.02), rgba(70, 120, 170, 0.14)),
    url('../assets/images/services/service-internet-streaming.webp') center / cover no-repeat;
  opacity: 0.2;
}
.checkout-hero-card .catalog-hero-card__icon {
  background: #071c38;
}
.checkout-hero-card__stats span {
  min-height: 4.5rem;
}
.checkout-section {
  padding: 2rem 0 var(--section-gap);
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 28rem);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
.checkout-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.checkout-panel,
.checkout-summary {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(7, 28, 56, 0.08);
}
.checkout-panel {
  padding: clamp(1.15rem, 3vw, 1.65rem);
}
.checkout-panel__head,
.checkout-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.checkout-panel__head {
  justify-content: flex-start;
}
.checkout-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  color: #4678aa;
  background: #e9f1f9;
  border-radius: 50%;
}
.checkout-panel h2,
.checkout-summary h2 {
  margin: 0.25rem 0 0;
  color: #071c38;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}
.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.checkout-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.checkout-field--wide {
  grid-column: 1 / -1;
}
.checkout-field span {
  color: rgba(7, 28, 56, 0.64);
  font-size: 0.84rem;
  font-weight: 900;
}
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 3.1rem;
  padding: 0.78rem 0.9rem;
  color: #071c38;
  background: #f9fbff;
  border: 1px solid rgba(7, 28, 56, 0.14);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  outline: none;
}
.checkout-field textarea {
  resize: vertical;
}
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  border-color: #4678aa;
  box-shadow: 0 0 0 3px rgba(70, 120, 170, 0.16);
}
.checkout-field input:disabled {
  color: rgba(7, 28, 56, 0.42);
  background: #eef3f8;
  cursor: not-allowed;
}
.checkout-payment-note {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: 1rem;
  color: #071c38;
  background: #f2f7fc;
  border: 1px solid rgba(70, 120, 170, 0.18);
  border-radius: 12px;
}
.checkout-payment-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #4678aa;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(70, 120, 170, 0.12);
}
.checkout-payment-note strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}
.checkout-payment-note p {
  margin: 0.3rem 0 0;
  color: rgba(7, 28, 56, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}
.checkout-payment-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.checkout-payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.75rem;
  min-height: 9.75rem;
  padding: 1rem 2.65rem 1rem 1rem;
  min-width: 0;
  background: #f9fbff;
  border: 1px solid rgba(7, 28, 56, 0.12);
  border-radius: 12px;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.checkout-payment-option input {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  accent-color: #4678aa;
}
.checkout-payment-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #4678aa;
  background: #e9f1f9;
  border-radius: 10px;
}
.checkout-payment-option__body {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  min-width: 0;
}
.checkout-payment-option strong {
  color: #071c38;
  font-size: 1rem;
  line-height: 1.2;
}
.checkout-payment-option small {
  color: rgba(7, 28, 56, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}
.checkout-payment-option em {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  padding: 0.26rem 0.55rem;
  color: #4678aa;
  background: #e9f1f9;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.checkout-payment-option:hover {
  transform: translateY(-1px);
}
.checkout-payment-option:has(input:checked) {
  border-color: #4678aa;
  box-shadow: 0 12px 28px rgba(70, 120, 170, 0.16);
}
.checkout-payment-option:has(input:checked) .checkout-payment-option__icon {
  color: #fff;
  background: #4678aa;
}
.checkout-payment-option--disabled {
  opacity: 0.62;
  cursor: not-allowed;
}
.checkout-payment-option--disabled:hover {
  transform: none;
}
.checkout-bank-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  color: #071c38;
  background: linear-gradient(135deg, #f9fbff 0%, #eef6fb 100%);
  border: 1px solid rgba(7, 28, 56, 0.12);
  border-radius: 14px;
}
.checkout-bank-panel[hidden] {
  display: none;
}
.checkout-bank-panel.is-active {
  border-color: rgba(70, 120, 170, 0.34);
  box-shadow: 0 16px 36px rgba(70, 120, 170, 0.12);
}
.checkout-bank-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-bank-panel__head strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}
.checkout-bank-panel__head p {
  max-width: 42rem;
  margin: 0.35rem 0 0;
  color: rgba(7, 28, 56, 0.64);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}
.checkout-bank-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.checkout-bank-card {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(7, 28, 56, 0.06);
}
.checkout-bank-card__top {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}
.checkout-bank-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  background: #4678aa;
  border-radius: 10px;
}
.checkout-bank-card__top strong {
  display: block;
  color: #071c38;
  font-size: 1rem;
  line-height: 1.2;
}
.checkout-bank-card__top small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(7, 28, 56, 0.62);
  font-weight: 800;
}
.checkout-bank-card__details {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}
.checkout-bank-card__details div {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.38fr) minmax(0, 1fr);
  gap: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(7, 28, 56, 0.08);
}
.checkout-bank-card__details dt {
  color: rgba(7, 28, 56, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-bank-card__details dd {
  margin: 0;
  color: #071c38;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.checkout-bank-panel__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(7, 28, 56, 0.64);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}
.checkout-card-preview {
  display: grid;
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  color: #071c38;
  background: linear-gradient(135deg, #f9fbff 0%, #edf4fb 100%);
  border: 1px solid rgba(7, 28, 56, 0.12);
  border-radius: 14px;
}
.checkout-card-preview[hidden] {
  display: none;
}
.checkout-card-preview.is-active {
  border-color: rgba(70, 120, 170, 0.34);
  box-shadow: 0 16px 36px rgba(70, 120, 170, 0.14);
}
.checkout-card-preview__head {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-card-preview__eyebrow {
  display: block;
  margin-bottom: 0.2rem;
  color: #4678aa;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-card-preview__head strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}
.checkout-card-preview__head p {
  max-width: 42rem;
  margin: 0.35rem 0 0;
  color: rgba(7, 28, 56, 0.64);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}
.checkout-card-preview__badge {
  flex: 0 0 auto;
  padding: 0.4rem 0.65rem;
  color: #0f6f4d;
  background: #def7ed;
  border: 1px solid rgba(15, 111, 77, 0.18);
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-card-preview__mock {
  min-height: 12.5rem;
  color: #fff;
  perspective: 1000px;
}
.checkout-card-visual__inner {
  position: relative;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.55s ease;
}
.checkout-card-preview__mock.is-flipped .checkout-card-visual__inner {
  transform: rotateY(180deg);
}
.checkout-card-visual {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #071c38 0%, #174c79 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(7, 28, 56, 0.2);
  backface-visibility: hidden;
}
.checkout-card-visual--back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #0b203b 0%, #0f365e 100%);
}
.checkout-card-visual__brand,
.checkout-card-visual__meta,
.checkout-card-visual__cvc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.checkout-card-visual__brand span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.checkout-card-visual__brand i {
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.72);
}
.checkout-card-visual__chip {
  width: 2.7rem;
  height: 2rem;
  background: linear-gradient(135deg, #f7d77e 0%, #c69632 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.checkout-card-visual__number {
  min-height: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.25;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}
.checkout-card-visual__meta span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}
.checkout-card-visual__meta span:last-child {
  text-align: right;
}
.checkout-card-visual small,
.checkout-card-visual__meta small,
.checkout-card-visual__cvc-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checkout-card-visual b,
.checkout-card-visual__cvc-row strong {
  min-width: 0;
  font-size: 0.86rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.checkout-card-visual__stripe {
  display: block;
  height: 2.4rem;
  margin: 0 -1rem;
  background: rgba(0, 0, 0, 0.48);
}
.checkout-card-visual__cvc-row {
  align-self: center;
  padding: 0.65rem 0.75rem;
  color: #071c38;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}
.checkout-card-visual__cvc-row span {
  color: rgba(7, 28, 56, 0.58);
}
.checkout-card-visual__cvc-row strong {
  color: #071c38;
  letter-spacing: 0.08em;
}
.checkout-card-preview__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-content: start;
}
.checkout-card-preview__fields .checkout-field--card-number {
  grid-column: 1 / -1;
}
.checkout-card-preview__footer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.1rem;
  color: rgba(7, 28, 56, 0.64);
  font-size: 0.84rem;
  font-weight: 800;
}
.checkout-card-preview__footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.checkout-card-preview__brands {
  color: #4678aa;
  font-size: 1.45rem;
}
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0 0;
}
.checkout-submit,
.checkout-secondary {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  border-radius: 9999px;
  font-weight: 900;
}
.checkout-submit {
  color: #fff;
  background: #071c38;
}
.checkout-secondary {
  color: #071c38;
  background: #fff;
  border: 1px solid rgba(7, 28, 56, 0.16);
}
.checkout-status {
  min-width: 100%;
  margin: 0;
  color: #4678aa;
  font-weight: 800;
}
.checkout-summary {
  position: sticky;
  top: 6.5rem;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  align-self: start;
}
.checkout-summary__count {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.7rem;
  color: #4678aa;
  background: #e9f1f9;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}
.checkout-summary__empty {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(7, 28, 56, 0.68);
}
.checkout-summary__empty[hidden],
[data-checkout-filled][hidden] {
  display: none !important;
}
.checkout-summary__empty i {
  color: #4678aa;
  font-size: 2rem;
}
.checkout-summary__empty h3 {
  margin: 0.75rem 0 0.35rem;
  color: #071c38;
}
.checkout-summary__empty p {
  max-width: 18rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.checkout-summary__empty a {
  color: #4678aa;
  font-weight: 900;
  text-decoration: none;
}
.checkout-summary__items {
  display: grid;
  gap: 0.85rem;
}
.checkout-summary-item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.8rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(7, 28, 56, 0.1);
}
.checkout-summary-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: #f4f7fb;
  border-radius: 10px;
  overflow: hidden;
}
.checkout-summary-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.45rem;
}
.checkout-summary-item__body span {
  display: block;
  min-width: 0;
  color: #4678aa;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checkout-summary-item__body h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.checkout-summary-item__body h3 a {
  color: #071c38;
  text-decoration: none;
}
.checkout-summary-item__body p {
  margin: 0;
  color: rgba(7, 28, 56, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
}
.checkout-summary__totals {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}
.checkout-summary__totals div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  color: rgba(7, 28, 56, 0.66);
  font-size: 0.92rem;
  font-weight: 800;
}
.checkout-summary__totals strong {
  color: #071c38;
  text-align: right;
}
.checkout-summary__totals .checkout-summary__total {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(7, 28, 56, 0.12);
  color: #071c38;
  font-size: 1rem;
}
.checkout-support {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #e9f1f9;
  border-radius: 12px;
}
.checkout-support > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  background: #4678aa;
  border-radius: 50%;
}
.checkout-support strong {
  display: block;
  color: #071c38;
}
.checkout-support p {
  margin: 0.25rem 0 0;
  color: rgba(7, 28, 56, 0.68);
  line-height: 1.45;
}

.contact-form__field .phone-control,
.checkout-field .phone-control {
  min-height: 3.2rem;
  overflow: visible;
  background: #f7f9fc;
  border: 1px solid rgba(7, 28, 56, 0.18);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.checkout-field .phone-control {
  min-height: 3.1rem;
  background: #f9fbff;
  border-color: rgba(7, 28, 56, 0.14);
  border-radius: 10px;
}
.contact-form__field .phone-control:focus-within,
.checkout-field .phone-control:focus-within {
  background: #fff;
  border-color: #1f6fae;
  box-shadow: 0 0 0 3px rgba(31, 111, 174, 0.16);
}
.contact-form__field .phone-control__country-wrap,
.checkout-field .phone-control__country-wrap {
  height: 100%;
}
.contact-form__field .phone-control__flag,
.checkout-field .phone-control__flag {
  width: 1.25rem;
}
.contact-form__field .phone-control__country-button,
.checkout-field .phone-control__country-button {
  height: 100%;
  min-height: 3.2rem;
  padding: 0 0.75rem;
  color: #071c38;
  background: #e9f1f9;
  border: 0;
  border-right: 1px solid rgba(7, 28, 56, 0.12);
  border-radius: 8px 0 0 8px;
  font-size: 0.88rem;
  font-weight: 800;
}
.checkout-field .phone-control__country-button {
  min-height: 3.1rem;
  border-radius: 10px 0 0 10px;
}
.contact-form__field .phone-control__input,
.checkout-field .phone-control__input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 0.85rem;
  color: #071c38;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.checkout-field .phone-control__input {
  min-height: 3.1rem;
  padding: 0 0.9rem;
}

/* RMG ptest source: flip-card services section only */
.services--flip .services__head {
  display: block;
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.services--flip .services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.services--flip .services__grid > .services__card:nth-child(n) {
  display: block;
}

@media (min-width: 640px) {
  .services--flip .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .services--flip .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.75rem;
  }

  .services--flip .services__card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .services--flip .services__card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .services--flip .services__card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .services--flip .services__card:nth-child(4) { grid-column: 2; grid-row: 2; }
  .services--flip .services__grid > .services__card--tall:nth-child(n) {
    grid-column: 3;
    grid-row: 1 / -1;
    display: flex;
  }
  .services--flip .services__card--tall .services__card-inner {
    flex: 1;
    min-height: 0;
  }
}

.services--flip .services__card {
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  perspective: 1000px;
}

.services--flip .services__card-inner {
  position: relative;
  min-height: 370px;
  padding: 1.5rem 1.5rem 4.25rem;
  display: flex;
  flex-direction: column;
  grid-template-rows: none;
  border: 0;
  border-radius: 14px;
  background-color: #0d2844 !important;
  background-image: none !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 8px 32px rgba(7, 28, 56, 0.12);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.7s ease, background-image 0.25s ease 0.7s;
}

.services--flip .services__card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block !important;
  background: linear-gradient(180deg, rgb(7 28 56 / 28%) 0%, rgb(7 28 56 / 68%) 100%);
  border-radius: 14px;
  z-index: 0;
  transition: background-color 0.3s ease 0.4s;
}

.services--flip .services__card-inner::after {
  display: none !important;
}

.services--flip .services__card:hover .services__card-inner::before {
  background: rgb(7 28 56 / 0%);
}

.services--flip .services__card:hover .services__card-inner {
  background-image: none !important;
  box-shadow: 0 8px 32px rgba(7, 28, 56, 0.12);
  transform: rotateY(180deg) !important;
  -webkit-transform: rotateY(180deg) !important;
}

.services--flip .services__card:hover .services__card-inner .services__card-content,
.services--flip .services__card:hover .services__card-inner .services__card-btn {
  transform: rotateY(-180deg) !important;
  -webkit-transform: rotateY(-180deg) !important;
}

.services--flip .services__card:nth-child(1) .services__card-inner {
  background-image: url('../assets/images/services/service-stage-equipment-rental.webp') !important;
  background-position: 62% 72% !important;
}
.services--flip .services__card:nth-child(2) .services__card-inner {
  background-image: url('../assets/images/services/service-technical-event-support.webp') !important;
  background-position: 42% 50% !important;
}
.services--flip .services__card:nth-child(3) .services__card-inner {
  background-image: url('../assets/images/services/service-online-hybrid-events.webp') !important;
  background-position: 50% 58% !important;
}
.services--flip .services__card:nth-child(4) .services__card-inner {
  background-image: url('../assets/images/services/service-internet-streaming.webp') !important;
  background-position: 45% 52% !important;
}
.services--flip .services__card:nth-child(5) .services__card-inner {
  background-image: url('../assets/images/services/service-simultaneous-interpretation.webp') !important;
  background-position: 50% 55% !important;
}

.services--flip .services__card:nth-child(n):hover .services__card-inner {
  background-image: none !important;
}

.services--flip .services__card.services__card--test-reverse .services__card-inner {
  transform: rotateY(180deg) !important;
  -webkit-transform: rotateY(180deg) !important;
  background-image: url('../assets/images/services/service-stage-equipment-rental.webp') !important;
}

.services--flip .services__card.services__card--test-reverse .services__card-inner .services__card-content,
.services--flip .services__card.services__card--test-reverse .services__card-inner .services__card-btn {
  transform: rotateY(-180deg) !important;
  -webkit-transform: rotateY(-180deg) !important;
}

.services--flip .services__card.services__card--test-reverse:hover .services__card-inner {
  transform: rotateY(0deg) !important;
  -webkit-transform: rotateY(0deg) !important;
  background-image: none !important;
}

.services--flip .services__card.services__card--test-reverse:hover .services__card-inner .services__card-content,
.services--flip .services__card.services__card--test-reverse:hover .services__card-inner .services__card-btn {
  transform: rotateY(0deg) !important;
  -webkit-transform: rotateY(0deg) !important;
}

.services--flip .services__card-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
  transform-origin: center center;
  transition: transform 0.7s ease;
}

.services--flip .services__card-title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.35;
}

.services--flip .services__card-subtitle {
  display: inline-block;
  width: fit-content;
  margin: 0 0 0.6rem;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.services--flip .services__card-btn {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex !important;
  width: auto;
  min-height: 48px;
  margin-top: 0;
  padding: 0 1rem 0 1.1rem;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #fff;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transform: none;
  transition: background 0.2s, color 0.2s, transform 0.7s ease, box-shadow 0.2s;
}

.services--flip .services__card-btn:hover {
  background: #fff;
  color: #071c38;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.services--flip .services__card-btn-text {
  white-space: nowrap;
}

.services--flip .services__card-btn .fa-arrow-right {
  margin-top: 3px;
  font-size: 1rem;
}

.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 980;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.cookie-consent[hidden] {
  display: none !important;
}

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

body.is-modal-open .cookie-consent {
  opacity: 0;
  pointer-events: none;
}

.cookie-consent__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(70, 120, 170, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(7, 28, 56, 0.18);
  color: #071c38;
}

.cookie-consent__main {
  min-width: 0;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.cookie-consent__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e9f1f9;
  color: #4678aa;
  font-size: 1.25rem;
}

.cookie-consent__copy {
  min-width: 0;
}

.cookie-consent__copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.cookie-consent__copy p {
  margin: 0;
  color: #52677f;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.cookie-consent__copy a {
  color: #4678aa;
  font-weight: 900;
  text-decoration: none;
}

.cookie-consent__copy a:hover {
  text-decoration: underline;
}

.cookie-consent__actions,
.cookie-consent__preference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
}

.cookie-consent__btn {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
}

.cookie-consent__btn--primary {
  background: #4678aa;
  color: #fff;
}

.cookie-consent__btn--primary:hover {
  background: #335f8c;
  color: #fff;
}

.cookie-consent__btn--secondary {
  background: #e9f1f9;
  color: #071c38;
}

.cookie-consent__btn--secondary:hover {
  background: #d9e8f6;
  color: #071c38;
}

.cookie-consent__btn--ghost {
  border-color: rgba(70, 120, 170, 0.25);
  background: transparent;
  color: #52677f;
}

.cookie-consent__btn--ghost:hover {
  border-color: rgba(70, 120, 170, 0.45);
  background: #f5f8fc;
  color: #071c38;
}

.cookie-consent__preferences {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(70, 120, 170, 0.16);
}

.cookie-consent__preferences[hidden] {
  display: none !important;
}

.cookie-consent__option {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 8px;
  background: #f4f7fb;
}

.cookie-consent__option.is-disabled {
  opacity: 0.82;
}

.cookie-consent__option strong,
.cookie-consent__option small {
  display: block;
}

.cookie-consent__option strong {
  margin-bottom: 0.15rem;
  color: #071c38;
  font-size: 0.92rem;
  font-weight: 900;
}

.cookie-consent__option small {
  color: #52677f;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.cookie-consent__option input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: #4678aa;
}
