:root {
  --color-yellow: #FECD1B;
  --color-dark: #1A1A1A;
  --color-gray-bg: #F5F5F5;
  --color-white: #FFFFFF;
  --color-text-gray: #4B5563;
  --font-main: 'Montserrat', sans-serif;
  --container-width: 1270px;
  --header-height: 78px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}
@media (min-width: 768px) {
  :root {
    --header-height: 103px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: auto; /* Instant scroll */
  overflow-x: hidden;
  /* Account for fixed header when scrolling to anchors */
  scroll-padding-top: calc(var(--header-height) + 20px);
}
/* Fix for fixed header anchoring */
section[id], footer[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}
body {
  font-family: var(--font-main);
  background-color: #F4F4F4;
  color: var(--color-dark);
  padding-top: var(--header-height);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}
.hidden {
  display: none !important;
}
/* Responsive utility classes */
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.main-header {
  background-color: var(--color-yellow);
  padding: 19.2px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: box-shadow 0.3s;
}
.main-header.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.main-header .container {
  position: relative;
}
.logo-group {
  display: flex;
  align-items: center;
  user-select: none;
}
.logo-img {
    height: 40px;
    width: auto;
}
@media (min-width: 768px) {
    .logo-img {
        height: auto;
    }
}
.desktop-nav {
  display: none;
  gap: 56px;
  font-size:15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-dark);
}
.header-link {
  position: relative;
}
.header-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-dark);
  transition: width 0.3s ease;
}
.header-link:hover::after {
  width: 100%;
}
.mobile-btn {
  display: block;
  color: var(--color-dark);
}
#menu-btn {
  color: var(--color-dark) !important;
  background: transparent !important;
  border: none;
  padding: 0;
  cursor: pointer;
}
#menu-btn svg,
#menu-btn i,
#menu-btn * {
  color: var(--color-dark) !important;
}
#menu-btn svg {
  stroke: var(--color-dark) !important;
  fill: none !important;
}
#menu-btn svg path {
  stroke: var(--color-dark) !important;
  fill: none !important;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-yellow);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  height: 100vh;
  z-index: 49;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  gap: 32px;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
}
@media (min-width: 900px) {.desktop-nav {
      display: flex;
      position: relative;
      margin: 0 auto;
  }
.mobile-btn { display: none; }
.mobile-menu { display: none !important; }
}

.hero-section .container {
  position: relative;
}
.hero-section {
  background: url(../img/banner.jpg) center;
  background-size: cover;

  /*background-color: var(--color-yellow);*/
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 10;
  text-align: center;
}
.hero-wrapper {
  position: relative;
  width: 100%;
}
.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.hero-content-overlay {
  /*position: absolute;*/
  left: 0;
  /*top: 50%;*/
  /*transform: translateY(10vw);*/
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  padding: 150px 0;
}
/*.hero-wrapper::after {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  content: "";*/
/*  background-color: rgba(0, 0, 0, 0.1);*/
/*  z-index: -1;*/
/*}*/
.hero-content {
  background-color: transparent;
  text-align: left;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
}
.hero-title {
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
  transition: max-width 0.3s ease;
}
.hero-title img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero-text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 500px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: font-size 0.3s ease;
}
.hero-highlight {
  color: var(--color-yellow);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--color-dark);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.hero-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.hero-btn svg path {
  stroke: white;
}
.hero-btn:hover svg path {
  stroke: white;
}
.hero-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.hero-btn:hover svg {
  transform: translateX(4px);
}
/* Мобильные устройства (до 480px) */
@media (max-width: 480px) {
  .hero-content-overlay {
    /*top: 40%;*/
    /*transform: translateY(-50%);*/
    /*padding: 0 12px;*/
  }
  .hero-title {
    max-width: 280px;
    margin-bottom: 8px;
  }
  .hero-text {
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 100%;
    line-height: 1.4;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Планшеты (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .hero-content-overlay {
    /*padding: 0 20px;*/
  }
  .hero-title {
    max-width: 320px;
  }
  .hero-text {
    font-size: 18px;
    max-width: 450px;
  }
}

/* Планшеты и маленькие десктопы (768px - 1023px) */
@media (min-width: 768px) {
  .hero-wrapper::after {
    content: none;
  }
  .hero-content-overlay {
    /*transform: translateY(3vw);*/
    /*padding: 0 40px;*/
  }
  .hero-title {
    max-width: 300px;
  }
  .hero-text {
    font-size: 20px;
    max-width: 500px;
  }
}

/* Средние десктопы (1024px - 1199px) */
@media (min-width: 1024px) {

  .hero-content-overlay {
    /*transform: translateY(5vw);*/
    /*padding: 0 60px;*/
  }
  .hero-text {
    font-size: 22px;
  }
  .hero-title {
    max-width: 400px;
  }
}

/* Большие десктопы (1200px+) */
@media (min-width: 1200px) {
  .hero-content-overlay {
    /*transform: translateY(calc(10vw - 20px));*/
    /*padding: 0 80px;*/
  }
  .hero-text {
    font-size: 24px;
  }
  .hero-content {
    max-width: 900px;
  }
}
.intro-section {
  padding: 40px 16px 69px;
  text-align: center;
  background: #F4F4F4;
}
.intro-section .intro-text {
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  max-width: 900px;
}
.intro-heading {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
    .intro-heading { font-size: 42px; }
    .intro-section .intro-text { font-size: 30px; }
}
.btn-dark {
  background-color: var(--color-dark);
  color: white;
  padding: 4px 4px 4px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}
.btn-dark:hover {
  background-color: black;
  color: var(--color-yellow);
}
.btn-icon-box {
  background-color: black;
  display: flex;
}
.btn-dark:hover .btn-icon-box path {
  fill: var(--color-yellow) !important;
}
.btn-dark:active {
  color: black;
  background: var(--color-yellow);
}
.btn-dark:active .btn-icon-box {
  background: var(--color-yellow) !important;
}
.btn-dark:active .btn-icon-box path {
  fill: black !important;
}
.about-section {
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
  max-width: 1236px;
  margin: 0 auto 80px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}
.about-bg {
  position: absolute;
  inset: 0;
  background-color: #FECD1B;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url(../img/map.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}
@media (max-width: 768px) {
  .about-bg {
    background-attachment: scroll; /* JS will emulate fixed */
    background-size: cover;
    /* Optimize for smooth JS updates */
    will-change: background-position;
  }
}
.about-sticky-intro {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
.about-section .container {
  position: relative;
  z-index: 5;
}
.section-label {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 24px;
}
@media (min-width: 768px) {
  .about-section {
      padding: 70px 0 0;
      border-radius: 50px;
      margin-bottom: 110px;
  }
  .section-label {
    font-size: 50px;
    margin-bottom: 39px;
  }
}
.about-logo {
  margin-bottom: 15px;
  max-width: 100%;
}
.about-section .section-label {
    font-weight: 500;
    font-size: 15px;
    line-height: 110%;
    margin-bottom: 20px;
}
.about-section h3.section-label {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    text-transform: uppercase;
}
.about-section .intro-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    max-width: 700px;
}

@media (min-width: 768px) {
    .about-section .section-label {
        font-size: 17px;
        margin-bottom: 40px;
    }
    .about-section h3.section-label {
        font-size: 50px;
    }
    .about-section .intro-heading {
        font-size: 30px;
    }
}

.carousel-container {
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .carousel {
    padding-left: calc(50% - 140px);
    padding-right: calc(50% - 140px);
  }
}
@media (min-width: 1320px) {.carousel {
      padding-left: calc((100vw - 1280px) / 2 + 24px);
      padding-right: calc((100vw - 1280px) / 2 + 24px);
  }
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel-card {
  width: 280px;
  max-width: 85vw;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid #e6e6e6;
  flex-shrink: 0;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
    .carousel-card {
        width: 350px;
        scroll-snap-align: start;
    }
}
.carousel-card:hover {
  transform: scale(1.02);
}
.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.3);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
}
.carousel-caption p {
  font-weight: 500;
font-size: 12px;
line-height: 110%;
  color: var(--color-dark);
  text-align: left;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}
.controls-wrapper {
  background: #F4F4F4;
  padding: 3px 3px 4px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: inset -2px -2px 2px 0 rgba(0, 0, 0, 0.45);
  pointer-events: auto;
  border: 1px solid #DADADA;
  height: 50px;
}
.controls-wrapper--map {
  border: 1px solid #FFE277;
}
.control-btn {
  border-radius: 13px;
  display: flex;
  height: 42px;
  width: 42px;
}
.control-btn:hover path {
  fill: #6B7280;
}
.indicators {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 8px;
}
.new-stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1300px;
  margin: 32px auto 0;
  position: relative;
  z-index: 10;
  padding-bottom: 20px;
  justify-content: center;
}
@media (min-width: 1024px) {.new-stats-container {
      grid-template-columns: 350px 1fr 350px;
      align-items: center;
      gap: 32px;
  }
}
.stats-col {
  display: flex;
  flex-direction: column;
  will-change: transform;
  gap: 16px;
}
.stats-col.left { gap: 16px; }
@media (min-width: 1024px) {.stats-col.left { padding-top: 32px; gap: 16px; }
 }
.stats-col.center {
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  order: -1;
}
@media (min-width: 1024px) {
    .stats-col.center { order: 0; }
}
.stats-col.right { align-items: flex-end; }
@media (max-width: 1023px) {.stats-col.right { align-items: center; }
.stats-col.left { align-items: center; }
}
.stats-main-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  margin: 20px 0;
}
@media (min-width: 768px) {
    .stats-main-title { font-size: 30px; margin: 32px 0; }
}
.stats-item {
  width: 100%;
  max-width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}
.stats-image-box {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.stats-image-box img {
  width: 100%;
}
.stats-label-large {
  font-weight: 600;
font-size: 17px;
line-height: 110%;
  color: var(--color-dark);
  text-transform: uppercase;
  padding-left: 15px;
  margin-bottom: 15px;
  margin-top: 15px;

}
.section-title {
  font-size: 24px;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 600;
  line-height: 1.0;
}
.section-subtitle {
  font-size: 18px;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 10px;
}
@media (min-width: 768px) {
    .section-title { font-size: 50px; }
    .section-subtitle { font-size: 24px; }
}
.benefits-section {
  padding: 0 0 80px;
}
.benefits-section .section-title {
    margin-bottom: 20px;
}
.benefits-section .section-subtitle {
    margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  row-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-grid .benefits-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {.benefits-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
 }
.accordion-item {
  margin-bottom: 0;   border-radius: 10px; background: white;   box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  overflow: hidden;
}
.accordion-item h3 {
    margin: 0 !important;
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
}
.accordion-header {
  padding: 10px 10px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.accordion-title {
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
@media (min-width: 768px) {
    .accordion-title, .accordion-item h3 { font-size: 17px; }
    .accordion-header { padding: 3px 3px 3px 20px; }
}
.accordion-icon {
  background: #fff;
  display: flex;
  flex-shrink: 0;
}
.accordion-content {
  display: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 20px;
  background: white;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.accordion-content p {
  font-size: 14px;
  padding: 0 0 20px;
  line-height: 1.6;
}
.accordion-item.open .accordion-content {
  display: block;
  margin-top: 5px;
}
.accordion-item  .accordion-icon .close {
  display: none;
}
.accordion-item.open .accordion-icon .close {
  display: block;
}
.accordion-item.open .accordion-icon .open {
  display: none;
}
.ticker-wrap {
  background-color: var(--color-dark);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}
.ticker {
  display: inline-block;
  animation: marquee 25s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 30px;
}
@media (min-width: 768px) {
    .ticker-item { font-size: 17px; padding-left: 50px; }
    .ticker-wrap { padding: 20px 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#formats {
  margin-bottom: 70px;
}
.formats-header {
  background-color: var(--color-yellow);
  padding: 30px 0;
  text-align: center;
}
.formats-header .section-title {
    margin-bottom: 0px;
}
.formats-content {
  padding: 40px 15px;
  transition: opacity 0.3s ease-in-out;
}
.formats-flex {
  display: flex !important;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .formats-flex {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
  }
}
.format-image-box {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.format-title-mobile {
  font-size: 24px;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 600;
  line-height: 1.0;
}

@media (min-width: 1024px) {.format-image-box { width: 100%; max-width: none; }
 }
.format-image-box img {
  border-radius: 10px;
  width: 100%;
  position: relative;
}



.format-image-box-wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}
.format-overlay {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 0 0 0 10px;
  padding: 0 0 20px 20px;
  max-width: 80%;
}

.format-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 10px;

  transform: rotate(90deg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M0 10 A10 10 0 0 1 10 0 L0 0 Z' fill='white'/%3E%3C/svg%3E");
}

.format-overlay::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 10px;
  height: 10px;

  transform: rotate(90deg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M0 10 A10 10 0 0 1 10 0 L0 0 Z' fill='white'/%3E%3C/svg%3E");
}

.format-overlay-content {
  max-width: 440px;
  color: #ffffff;
  background-color: #111111;
  padding: 20px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.format-overlay-title {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.format-overlay-subtitle {
  font-size: 12px;
  line-height: 1.4;
  color: #fff;
}

@media (max-width: 768px) {
  .format-overlay {
    padding: 0 0 3px 3px;
    max-width: 90%;
  }
  .format-overlay-content {
    padding: 3px 5px;
    gap: 0;
  }
  .format-overlay-title {
    font-size: 12px;
  }
  .format-overlay-subtitle {
    font-size: 11px;
    line-height: 1.2;
  }
}
.format-table-col {
  width: 100%;
  height: 100%;
  min-height: 100%;
  align-self: stretch;

  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 10px;

  @media (max-width: 1024px) {
    height: auto;
    min-height: unset;
  }
}
.formats-slide {
}
.format-table-col .data-block__wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    justify-content: flex-start;
}
@media (min-width: 768px) {
  .format-table-col {
    padding-bottom: 0;
  }
  .format-table-col .data-block__wrapper {
    padding-bottom: 0;

    display: flex;
    justify-content: center;
}
}

/* Hide scrollbar for clean look but allow scroll */
.format-table-col .data-block__wrapper::-webkit-scrollbar {
    height: 4px;
}
.format-table-col .data-block__wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.format-table-col .data-block__wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}


.format-table-col .data-block {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    width: 280px;
    overflow: hidden;
    flex-shrink: 0;

    @media (max-width: 768px) {
      min-width: auto;
      width: calc(50% + 9px);
    }
}
.format-table-col .data-block__header {
    background-color: #FECD1B;
    color: black;
    font-weight: 500;
    font-size: 16px;
    padding: 12px;
    border-radius: 10px;
}
.format-table-col .data-block--second {
    position: relative;
    left: -20px;
}
.format-table-col .data-block--second .data-block__header {
    background-color: #1D1D1B;
    color: white;
}
.format-table-col .data-block__content {
    display: flex;
    flex-direction: column;
    padding: 14px 40px 14px 14px;
}
.format-table-col .data-block__item {
    font-size: 15px;
    margin: 0;
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    min-height: 50px;
}
.format-table-col .data-block__item:nth-child(1),
.format-table-col .data-block__item:nth-child(2),
.format-table-col .data-block__item:nth-child(3),
.format-table-col .data-block__item:nth-child(5),
.format-table-col .data-block__item:nth-child(6) {
  min-height: 23px;
  height: 23px;
}
.format-table-col .data-block__item:nth-child(4) {
    height: auto;
    min-height: 50px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .format-table-col .data-block { width: 230px; }
    .format-table-col .data-block--second {
      left: -50px;
    width: 200px;
    min-width: 200px;
     }
    .format-table-col .data-block__wrapper { margin: 0; padding-left: 0; overflow-x: visible; position: relative; left: 25px;  }
    .format-table-col .data-block__content { padding: 14px 64px 14px 14px; }
    .format-table-col .data-block__item:nth-child(4) { height: 50px; }
    .format-table-col .data-block__item { font-size: 16px; }

  .format-table-col .data-block__item:nth-child(1),
  .format-table-col .data-block__item:nth-child(2),
  .format-table-col .data-block__item:nth-child(3),
  .format-table-col .data-block__item:nth-child(5),
  .format-table-col .data-block__item:nth-child(6) {
    min-height: 35px;
    height: 35px;
  }
}

@media (min-width: 1024px) {.format-table-col { max-width: none; width: 400px; }
 }
.format-controls {
  background-color: var(--color-yellow);
  display: flex;
  justify-content: center;
  height: 70px;
}
.format-controls .controls-wrapper {
    position: relative;
    top: -25px;
}

.cta-bar {
  background: var(--color-dark);
  padding: 30px 16px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
.cta-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 1024px) {.cta-content { flex-direction: row; justify-content: space-between; justify-content: center; gap: 180px; }
}
.cta-text {
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 768px) {.cta-text { font-size: 40px; text-align: center; }
 }
.cta-text span { color: var(--color-yellow); }
.btn-yellow {
  background: var(--color-yellow);
  color: #000;
  padding: 4px 4px 4px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.btn-yellow:hover {
  background-color: white;
  color: 000;
}
.btn-yellow .btn-icon-box {
  background-color: black;
  display: flex;
}
.btn-yellow  .btn-arrow-box {
  display: flex;
}
.btn-yellow:hover .btn-icon-box path {
  fill: black !important;
}
.btn-yellow:active {
  color: black;
  background: white;
}
.btn-yellow:active .btn-icon-box {
  background: var(--color-yellow) !important;
}
.btn-yellow:active .btn-icon-box path {
  fill: black !important;
}
.assortment-section {
  padding: 0 0 60px;
  background: var(--color-gray-bg);
}
.assortment-section .section-title {
    margin-bottom: 20px;
}
.assortment-text {
  font-size: 16px;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto 20px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .assortment-text { font-size: 24px; }
}
.assortment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
  margin-top: 30px;
 justify-content: center;
}
@media (min-width: 768px) {.assortment-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; margin-top: 40px; }
 }
.assortment-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 350px;
  margin: 0 auto;

  @media (max-width: 768px) {
    width: 100%;
    max-width: 400px;
  }
}
.assortment-card img {
    width: 100%;
}
.card-image-box {
  position: relative;
  margin-bottom: 10px;
}
.card-title {
  font-weight: 600;
  font-size: 17px;

  @media (max-width: 768px) {
    text-align: center;
  }
}
.card-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 768px) {
    .card-heading { font-size: 30px; margin-bottom: 30px; }
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-section {
  padding: 0 0 40px;
}
.support-section .section-title {
    margin-bottom: 20px;
}
.support-section .intro-text {
    font-size: 18px;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}
.support-section h3 {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
}
@media (min-width: 768px) {
    .support-section .intro-text { font-size: 24px; }
    .support-section h3 { font-size: 30px; margin-bottom: 30px; margin-top: 50px; }
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: start;
}
.tags-container .accordion-item {
    width: 100%;
}
@media (min-width: 768px) {
  .tags-container .accordion-item {
    width: 30%;
  }
}
.roadmap-section {
  padding: 50px 0 0;
  background: #FAFAFA;
  border-top: 1px solid #D5D5D5;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #E5E7EB;
  transform: translateX(-50%);
  z-index: 0;
  display: block;
}
@media (min-width: 900px) {.steps-container { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 70px; }
.steps-container::before { display: none; }
}
.dotted-line {
  position: absolute;
  top: 8px;
  left: 11%;
  width: calc(100% - 223px);
  z-index: 0;
  display: none;
}
@media (min-width: 900px) {.dotted-line { display: block; }
 }
.step-item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  background: #FAFAFA;
}
@media (min-width: 900px) {.step-item { align-items: flex-start; text-align: left; background: transparent; }
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 10;
  background: #FAFAFA;
}
@media (min-width: 900px) {
    .step-icon { margin: 0 auto 26px; }
}
.step-title {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 12px;
  color: #1D1D1B;
  line-height: 1.2;
  max-width: 200px;
}
@media (min-width: 900px) {
    .step-desc { max-width: none; }
}
.cta-box-bottom {
  background: var(--color-dark);
  border-radius: 0 0 20px 20px;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  font-size: 20px; font-weight: 800; color: white; text-transform: uppercase; text-align: center;
}
@media (min-width: 768px) {.cta-box-bottom { padding: 30px 16px; flex-direction: row; justify-content: center; gap: 180px; font-size: 30px; }
}
.team-section {
  padding: 50px 16px 70px;
  background: #FAFAFA;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 29px;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 640px) {.team-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
 }
@media (min-width: 1024px) {.team-grid { grid-template-columns: repeat(4, 1fr); }
 }
.partners-section {
  padding: 50px 0 50px;
  background: #ffff;
}
.partners-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  max-width: 350px;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
}
@media (min-width: 640px) {.partners-grid { max-width: none; }
 }
@media (min-width: 1024px) {.partners-grid { justify-content: center; }
 }
.partners-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  flex: 0 0 100%;
  max-width: 350px;
}
@media (min-width: 640px) {
  .partners-card {
    flex: 0 0 calc(20%);
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .partners-card {
    flex: 0 0 calc(14%);
  }
}

.partners-card-empty {
  visibility: hidden;
  pointer-events: none;
}
.partners-image-box {
  position: relative;
  margin-bottom: 11px;
  overflow: hidden;
  /* aspect-ratio: 1/1; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  min-height: 150px;
}
.partners-image-box img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 640px) {
  .partners-image-box img {
    max-height: 80px;
  }
  .partners-image-box {
    min-height: 120px;
  }
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-image-box {
  position: relative;
  margin-bottom: 11px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #E5E5E5;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.team-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s, filter 0.3s;
}
.team-name {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0px;
  color: #000000;
}
.team-role {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}
.team-contact {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.team-contact:hover { color: #d4a000; }
.contact-icon {
  width: 17.6px;
  height: 17.6px;
  margin-right: 12px;
  transition: fill 0.2s;
}
.team-contact:hover .contact-icon { fill: var(--color-yellow); }
.main-footer {
  background: #111;
  color: white;
  padding: 25px 0;
}
.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {.footer-container { flex-direction: row; justify-content: space-between; align-items: center; gap: 40px; }
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        gap: 100px;
        text-align: right;
    }
 }
.footer-link {
  transition: color 0.2s;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 768px) {
    .footer-link { font-size: 20px; }
}
.footer-link:hover { color: var(--color-yellow); }

.indicator {
  width: 2px;
  border-radius: 99px;
  transition: all 0.3s ease;
}

.indicator.active {
  height: 40px;
  background-color: #000;
}

.indicator.inactive {
  height: 30px;
  background-color: #848484;
}
.indicator:hover {
  background-color: #848484;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s ease;

    /* Better mobile handling */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
}

/* Prevent body/html scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none; /* Prevent touch scrolling on mobile */
}

html.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none; /* Prevent touch scrolling on mobile */
}

@media (max-width: 600px) {
    .modal-overlay {
        display: flex; /* Restore flex for centering, using margin: auto on child */
        padding: 10px;
        /* No text-align center needed */
    }

    .modal-overlay::before {
        display: none;
    }

    .modal-container {
        display: block; /* Reset display */
        text-align: left;
        margin: auto; /* Centers both vertically and horizontally in flex container */
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}
.modal-overlay.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}
.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 0px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    border: none;
    outline: none;
    color: #000;
    transition: background-color 0.2s;
}
.modal-close-btn:hover {
    background: #F5F5F5;
}
@media (max-width: 600px) {
    .modal-close-btn {
        top: 10px;
        right: 10px;
        background: transparent;
        font-size: 30px;
    }
    .modal-container {
        padding: 20px;
        border-radius: 8px;
    }
}
.modal-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 15px;
}
.modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #000;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.input-group {
    display: flex;
    flex-direction: column;
    background: #F8F8F8;
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid transparent;
}
.input-group:focus-within {
    border-color: #ddd;
    background: white;
}
.input-group label {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}
.input-group label span {
    color: #ff4d4f;
}
.input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #333;
    width: 100%;
    font-family: inherit;
    font-weight: 500;
    line-height: normal; /* Fix for cursor vertical alignment */
    padding: 0; /* Reset padding to avoid calculation errors */
    margin: 0;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 10px;
    color: #666;
    margin-top: 5px;
}
.custom-checkbox {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}
.checkbox-text {
    line-height: 1.3;
}
.checkbox-text span {
    color: #ff4d4f;
}
.modal-submit-btn {
    justify-content: center;
    padding: 15px;
    margin-top: 10px;
    cursor: pointer;
}
.modal-submit-btn:hover {
  background: #000;
  color: white;
}
.modal-submit-btn:active {
    background: #000;
    color: white;
}
.modal-bottom-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}
.modal-bottom-link a {
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.q-mark {
    background: #ccc;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-decoration: none;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
    max-width: 400px;
    width: 90%;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.notification.hidden {
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
}
.notification-content {
    background: #1A1A1A; /* Dark theme to match site */
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    border-left: 4px solid #FECD1B; /* Brand yellow */
}
.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #FECD1B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.notification-icon svg path {
    stroke: black; /* Icon color */
}
.notification-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}
.notification-text p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}
.notification-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.notification-close:hover {
    color: white;
}
