@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Raleway:wght@300;400;500;600&family=Scada:ital,wght@0,400;0,700&display=swap');

/* Навигационные ссылки (бургер, дропдаун) */
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #fff;
}

/* Ссылки внутри бургера — белый цвет и белая линия при наведении */
.burger-nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #fff !important;
  text-decoration: none;
  position: relative;
  padding: 10px 20px 4px;
  display: block;
}

.burger-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.burger-nav-link:hover::after {
  transform: scaleX(1);
}

.header {
  position: absolute;
  width: 100%;
  z-index: 999;
}

.header .header__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
}

.header-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  height: 100px;
  padding-left: 270px;
}

.header .header-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 48px;
  flex: 1;
  justify-content: center;
}

.header .header-nav a {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.header .header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.header .header-nav a:hover::after {
  transform: scaleX(1);
}

.header .nav-dropdown-wrap {
  position: relative;
}

.header .header-nav .has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header .header-nav .chevron {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.header .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
  background: rgba(0, 0, 0, 0.81);
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.28s;
  overflow: hidden;
}

.header .nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.header .nav-dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .nav-dropdown li:last-child {
  border-bottom: none;
}

.header .nav-dropdown a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.header .nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-head .hero-burger-wrap {
  width: 24px;
  height: 24px;
}

.hero-burger-wrap {
  position: relative;
}

.hero-hamburger {
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.hero-hamburger span {
  display: block;
  height: 2px;
  background: #000;
  border-radius: 1px;
}

.hero-burger-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 220px;
  width: max-content;
  background: rgba(0, 0, 0, 0.81);
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.1), 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.28s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.hero-burger-wrap.is-open .hero-burger-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.hero-burger-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.hero-burger-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ========== HERO СТИЛИ ========== */
.hero {
  min-height: 100vh;
  background: #fff;
  padding: 0 0 48px;
  padding-right: 0;
  margin: 0;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.hero-burger-wrap {
  position: relative;
}

.hero-hamburger {
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.hero-hamburger span {
  display: block;
  height: 2px;
  background: #000;
  border-radius: 1px;
}

.hero-burger-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 220px;
  width: max-content;
  background: rgba(0, 0, 0, 0.81);
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.1), 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.28s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.hero-burger-wrap.is-open .hero-burger-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.hero-burger-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.hero-burger-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-body {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 100%;
  gap: 30px;
  align-items: flex-start;
  min-height: 0;
}

.hero-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.hero-left .hero-lb {
  position: relative;
}

.hero-left .hero-lb1 {
  position: relative;
}

.hero-left .hero-lb1 .header_logo {
  position: absolute;
  left: 51px;
  top: 53px;
  width: 160px;
}

.hero-left .hero-lb2 {
  margin: -250px 0 0;
}

.hero-left .hero-lb3 {
  margin: -255px 0 0;
}

.hero-left .hero-lb4 {
  background: #000;
  border: 10px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.hero-play {
  position: absolute;
  top: 71px;
  right: 66px;
  text-align: center;
}

.hero-play .play-button {
  margin: 0 auto 20px;
  display: block;
  background: #000;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 3px 20px #838383;
}

.hero-play .play-text {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  line-height: 1.4em;
}

.hero-stat {
  color: #fff;
  position: absolute;
  left: 56px;
  top: 350px;
  display: flex;
  font-family: 'Raleway', sans-serif;
  gap: 15px;
  align-items: flex-end;
}

.hero-stat img {
  width: 40px;
}

.hero-stat span {
  font-size: 13px; 
}

.hero-stat span b {
  font-size: 21px;
}

.hero-pet-tag img {
  width: 128px;
  height: 128px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  padding-top: 154px;
  flex-direction: column;
  gap: 50px;
}

.hero-card {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 60px 50px 40px;
  border-radius: 50px;
  min-height: 590px;
  box-sizing: border-box;
}

.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 0 0 30px;
  letter-spacing: 0;
}

.hero-title-lost {
  display: block;
  font-size: 136px;
  line-height: 1;
  color: #FFFFFF;
}

.hero-title-line2 {
  display: block;
}

.hero-title-amp {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: #FFFFFF;
  vertical-align: middle;
  padding-left: 160px;
}

.hero-title-found {
  display: block;
  font-size: 136px;
  line-height: 1;
  color: #EC6807;
  vertical-align: middle;
  padding-left: 56px;
}

.hero-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 42px 0;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 48px;
}

.hero-cta {
  display: inline-block;
  padding: 20px 50px;
  background: #fff;
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  border-radius: 20px;
  text-decoration: none;  
}

.hero-cta:hover {
  opacity: 0.9;
}

.hero-tag {
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.hero-tag .hero-tag-text,
.hero-tag .hero-tag-title {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
}

.hero-tag .hero-tag-text {
  font-size: 32px;
  margin: 0;
}

.hero-tag .hero-tag-title {
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 16px;
}

.pet-tags {
  margin: 0;
  padding: 0;
  background: #fff;
}

.pet-tags__inner--mobile {
  display: none;
}

.pet-tags__inner--desktop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  align-items: stretch;
  gap: 48px;
  box-sizing: border-box;
}

.pet-tags__inner--desktop .pet-tags__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  min-width: 0;
  max-width: 800px;
  padding-top: 90px;
}



.pet-tags__inner--desktop .pet-tags__title {
  font-family: Raleway, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000;
}

.pet-tags-strong{
  font-family: Raleway;
font-weight: 800;
font-style: ExtraBold;
font-size: 70px;
leading-trim: NONE;
line-height: 58px;
letter-spacing: 0%;
color: #EC6807;
}

.pet-tags__inner--desktop .pet-tags__subtitle {
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 48px;
  letter-spacing: 0%;
  padding-left: 100px;
  color: #000;
  padding-bottom: 54px;
}

.pet-tags__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}

.pet-tags__inner--desktop .pet-tags__cards {
  padding-left: 67px;
}

.pet-tags__card {
  flex: 1;
  max-width: 287px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #00000066;
  padding: 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

@media (max-width:1024px){
  .pet-tags__card{
    border-radius: 37px;
  }
}

.pet-tags__card-image {
  flex-shrink: 0;
  width: 107px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-tags__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pet-tags__card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.pet-tags__card-caption {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666;
}

.pet-tags__card-price {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.pet-tags__inner--desktop .pet-tags__visual {
  flex: 0 0 351px;
  width: 351px;
  min-height: 510px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  align-self: stretch;
}

.pet-tags__bookmark {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.pet-tags__visual-img {
  position: relative;
  z-index: 1;
  width: 60%;
  max-width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 10%;
}

@media (max-width: 1200px) {
  .pet-tags__inner--desktop {
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .pet-tags__inner--desktop {
    display: none;
  }
  .pet-tags__inner--mobile {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px 56px;
    gap: 16px;
  }
  .pet-tags__mob-row1 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .pet-tags__mob-text {
    flex: 2;
    min-width: 0;
    padding-top: 16px;
  }
  .pet-tags__mob-title {
    font-family: Raleway;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    color: #000;
  }

.pet-tags__mob-title .pet-tags-strong {
  font-family: Raleway;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  }

  .pet-tags__mob-visual {
    flex: 1;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 133 / 144;
  }
  .pet-tags__mob-visual .pet-tags__bookmark {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .pet-tags__mob-visual .pet-tags__bookmark svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .pet-tags__mob-visual .pet-tags__visual-img {
    position: relative;
    z-index: 1;
    width: 67%;
    margin-top: 8%;
  }
  .pet-tags__mob-subtitle {
    margin: 0;
    font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000;
  }
  .pet-tags__inner--mobile .pet-tags__cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }
  .pet-tags__inner--mobile .pet-tags__card {
    flex: 0 1 160px;
    width: 160px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
  }
  .pet-tags__inner--mobile .pet-tags__card-image {
    width: 107px;
    height: 77px;
    flex-shrink: 0;
    margin-bottom: 10px;
  }
  .pet-tags__inner--mobile .pet-tags__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .pet-tags__inner--mobile .pet-tags__card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .pet-tags__inner--mobile .pet-tags__card-caption {
    order: 1;
  }
  .pet-tags__inner--mobile .pet-tags__card-price {
    order: 2;
  }
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 1199px) {
  .hero-title-lost {
    font-size: 98px;
  }
  .hero-title-amp {
    font-size: 32px;
  }
  .hero-title-found {
    font-size: 98px;
  }
}

@media (max-width: 1024px) {
  .header .header__inner {
    margin: 0 auto;
    padding: 0;
    max-width: 360px;
  }
  .header-head {
    padding: 0;
  }
  .header .header-nav {
    display: none;
  }
  .header-head .hero-burger-wrap {
    left: 7px;
  }
  .hero-burger-dropdown {
    left: 0;
    right: unset;
  }
  .hero {
    min-height: unset;
    margin: 0 20px;
    padding: 0;
  }
  .hero__inner {
    max-width: 360px;
    padding: 0;
  }
  .hero-body {
    flex-direction: column;
  }
  .hero-left {
    width: 100%;
    position: unset;
  }
  .hero-left .hero-lb1 {
    text-align: right;
    position: absolute;
    right: 0;
  }
  .hero-left .hero-lb1 .hero_lb1_img {
    width: 300px;
  }
  .hero-left .hero-lb1 .header_logo {
    left: auto;
    right: 176px;
    top: 23px;
    width: 109px;
  }
  .hero-left .hero-lb2 {
    display: none;
  }
  .hero-left .hero-lb4 {
    display: none;
  }
  .hero-left .hero-lb3 {
    margin: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    z-index: 999;
  }
  .hero-left .hero-lb3 .hero_lb3_img {
    width: 300px;
    transform: scaleX(-1);
  }
  .hero-play {
    top: 23px;
    left: 14px;
    right: auto;
  }
  .hero-play .play-button {
    margin-bottom: 10px;
  }
  .hero-play .play-text {
    font-size: 13px;
  }
  .hero-stat {
    top: 165px;
    left: 151px;
    align-items: center;
  }
  .hero-right {
    padding-top: 80px;
    padding-bottom: 150px;
    z-index: 998;
  }
  .hero-right .hero-card {
    background: transparent;
    min-height: unset;
    padding: 0;
  }
  .hero-title {
    margin-left: 0;
  }
  .hero-text {
    color: #000;
    font-size: 14px;
    padding-left: 0;
  }
  .hero-cta {
    background: #000000;
    color: #ffffff;
    font-size: 18px;
  }
  .hero-title-lost {
    color: #000;
    font-size: 48px;
  }
  .hero-title-amp {
    color: #000;
    font-size: 32px;
    padding-left: 60px;
    line-height: 15px;
    font-weight: normal;
  }
  .hero-title-found {
    font-size: 48px;
    padding-left: 30px;
  }
  .hero-tag {
    padding-left: 180px;
  }
  .hero-tag .hero-tag-title {
    font-size: 13px;
  }
  .hero-tag .hero-tag-text {
    font-size: 18px;
  }
}

@media (max-width: 399px) {
  .hero-title-amp {
    padding-left: 30px;
  }
  .hero-title-found {
    padding-left: 0;
  }
}

.who-we-help {
  display: flex;
  width: 100%;
  min-height: 420px;
  align-items: stretch;
  margin-top: 64px;
  padding-bottom: 60px;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

.who-we-help__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 0 200px;
  padding: 48px 40px 48px 24px;
  max-width: 380px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
  color: #00000026;
  box-sizing: border-box;
}

.who-we-help__title-line {
  display: block;
}

.who-we-help__shape {
  flex: 1;
  margin-left: 200px;
  width: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.who-we-help__shape::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  border-radius: 80px 0 0 0;
  z-index: 0;
}

.who-we-help__cards {
  display: flex;
  gap: 24px;
  max-width: 900px;
  justify-content: center;
  position: absolute;
  bottom: 140px;
  left: 60%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  padding: 0 32px;
  box-sizing: border-box;
  z-index: 1;
}

.who-we-help__cards a {
  text-decoration: none;
}

.who-we-help__cards a,
.who-we-help__cards a * {
  text-decoration: none;
}

@media (max-width:1330px){
  .who-we-help__cards{
    left: 70%;
    max-width: 700px;
  }
}

@media (max-width:990px){
  .who-we-help__cards{
    max-width: 600px;
  }
}

.who-we-help__card {
  flex: 1;
  min-width: 0;
  max-width: 280px;
  background: #fff;
  border-radius: 0 0 43px 43px;
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.who-we-help__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e8e8e8;
  min-height: 140px;
}

.who-we-help__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-we-help__card-desc {
  margin: 0;
  padding: 12px 16px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #888;
  text-decoration: none;
}

.who-we-help__card-heading {
  margin: 0;
  padding: 4px 16px 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  text-decoration: none;
}

@media (max-width: 900px) {
  .who-we-help {
    flex-direction: column;
    margin-top: 48px;
    padding-bottom: 48px;
    min-height: 0;
    align-items: stretch;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .who-we-help__title {
    max-width: none;
    margin: 0;
    padding: 24px 20px 20px;
    justify-content: flex-start;
    box-sizing: border-box;
  }
  .who-we-help__shape {
    margin-left: 0;
    width: 50%;
    min-height: 0;
    position: absolute;
    right: 0;
    top: 80px;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
  }
  .who-we-help__shape::before {
    border-radius: 32px 0 0 32px;
    background: #1a1a1a;
  }
  .who-we-help__cards {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding: 24px 20px 32px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: none;
    left: auto;
    bottom: auto;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
  }
  .who-we-help__card {
    max-width: 320px;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    min-height: 0;
  }
  .who-we-help__card-img {
    aspect-ratio: 4/3;
    min-height: 0;
    flex-shrink: 0;
  }
  .who-we-help__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
  }
  .who-we-help__card-desc {
    padding: 12px 16px 4px;
  }
  .who-we-help__card-heading {
    padding: 6px 16px 16px;
    min-height: 0;
    overflow: visible;
  }
}

.download-app {
  max-width: 100%;
  padding: 48px 20px 60px;
  background: #fff;
}

.download-app__card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #00000066;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.download-app__content {
  flex: 1;
  min-width: 0;
}

.download-app__title {
  margin: 0 0 20px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: #000;
}

.download-app__text {
  margin: 0 0 12px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000000;
}

.download-app__text:last-of-type {
  margin-bottom: 20px;
}

.download-app__link {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0;
  color: #000000;
  text-decoration: underline;
}

.download-app__link:hover {
  color: #000000;
  opacity: 0.8;
}

.download-app__qr-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.download-app__qr {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.download-app__qr-caption {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  color: #666;
  text-align: center;
}

@media (max-width: 768px) {
  .download-app {
    padding: 32px 20px 48px;
  }
  .download-app__card {
    flex-direction: column;
    padding: 48px 32px;
    text-align: center;
    align-items: center;
    gap: 28px;
  }
  .download-app__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .download-app__title {
    text-align: center;
  }
  .download-app__text {
    text-align: center;
  }
}

.map-reports {
  background: #fff;
  padding: 60px 20px 80px;
}

.map-reports__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.map-reports__wrap {
  position: relative;
  width: 100%;
}

.map-reports__svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* Десктоп: контент поверх SVG (заголовок, подзаголовок, карта) */
.map-reports__desktop-content {
  position: absolute;
  inset: 0;
  padding: 48px 36% 48px 48px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  pointer-events: none;
}

.map-reports__desktop-content * {
  pointer-events: auto;
}

.map-reports__desktop-title {
  margin: 0 0 16px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.2;
  color: #fff;
}

.map-reports__desktop-subtitle {
  margin: 0 0 28px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.map-reports__desktop-map {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
}

.map-reports__desktop-map-img {
  max-width: 85%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.map-reports__mob {
  display: none;
}

/* Карточка в вырезе SVG: вырез по viewBox 0 0 1170 666 — левый край x=748, верх y=273 */
.map-reports__card {
  position: absolute;
  left: 66.93%;
  top: 50%;
  right: 2%;
  z-index: 1;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 24px 24px 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 32px 24px 32px 56px;
  min-width: 0;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-reports__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #EC6807;
}

.map-reports__state-name {
  margin: 0 0 20px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #000;
}

.map-reports__data {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-reports__data-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}

.map-reports__data-label {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #000;
}

.map-reports__data-value {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #000;
}



@media (max-width: 768px) {
  .map-reports {
    padding: 32px 16px 90px;
  }

  .map-reports__wrap {
    position: relative;
    width: 100%;
  }

  .map-reports__svg--desktop {
    display: none;
  }

  .map-reports__desktop-content {
    display: none;
  }

  .map-reports__mob {
    display: block;
    position: relative;
    width: 100%;
  }

  .map-reports__svg--mob {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
  }

  /* Контент поверх SVG: отступ снизу под вырез (карточка ~83.5% от верха) */
  .map-reports__mob-content {
    position: absolute;
    inset: 0;
    padding: 24px 20px 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
  }

  .map-reports__mob-content * {
    pointer-events: auto;
  }

  .map-reports__mob-title {
    margin: 0 0 12px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 4.2vw, 18px);
    line-height: 1.25;
    color: #fff;
  }

  .map-reports__mob-subtitle {
    margin: 0 0 20px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
  }

  .map-reports__mob-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }

  .map-reports__mob-map-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }

  /*
   * Карточка в вырезе SVG: viewBox 0 0 346 461.
   * Сужается только по ширине (%), высота фиксирована — контент может быть скрыт.
   */
  .map-reports__card {
    position: absolute;
    left: 35%;
    top: 85%;
    width: 50%;
    min-height: 160px;
    box-sizing: border-box;
    border-radius: 24px 24px 0 0;
    padding: clamp(12px, 3vw, 20px) clamp(12px, 3vw, 20px) clamp(16px, 4vw, 28px) clamp(16px, 4vw, 24px);
    overflow: hidden;
  }

  .map-reports__card::before {
    display: none;
  }

  .map-reports__card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #EC6807;
  }

  .map-reports__state-name {
    font-size: clamp(16px, 4.5vw, 20px);
    margin-bottom: clamp(8px, 2vw, 16px);
  }

  .map-reports__data {
    gap: clamp(4px, 1.2vw, 10px);
  }

  .map-reports__data-label,
  .map-reports__data-value {
    font-size: clamp(12px, 3.2vw, 14px);
  }
}

/* Блок миссии под картой: титулка + два абзаца */
.mission-statement {
  background: #fff;
  padding: 60px 20px 80px;
}

.mission-statement__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.mission-statement__title {
  margin: 0 0 32px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0;
  color: #000;
}

.mission-statement__text {
  margin: 0 0 24px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000;
  text-align: justify;
}

.mission-statement__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mission-statement {
    padding: 40px 20px 60px;
  }

  .mission-statement__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }

  .mission-statement__text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.engagement {
  max-width: 100%;
  padding: 60px 20px 80px;
  background: #fff;
}

.engagement__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.engagement__card {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.engagement__shape {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.engagement__card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.engagement__card--black .engagement__card-content {
  color: #fff;
}

.engagement__card--orange .engagement__card-content {
  color: #fff;
}

.engagement__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 48px;
  margin-bottom: 20px;
  color: inherit;
}

.engagement__icon svg,
.engagement__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.engagement__title {
  margin: 0 0 16px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: inherit;
}

.engagement__text {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.95;
}

.engagement__btn {
  position: absolute;
  bottom: -20px;
  left: calc(50% + 45px);
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.engagement__btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.engagement__btn--orange {
  background: #EC6807;
  color: #fff;
}

.engagement__btn--white {
  background: #fff;
  color: #000;
}

@media (max-width: 900px) {
  .engagement__inner {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .engagement__card {
    max-width: 378px;
    width: 100%;
  }
}

.donations {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  overflow: hidden;
}

.donations__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donations__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.donations__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donations__label {
  width: 100%;
  max-width: 727px;
  min-height: 736px;
  padding: 56px 115px 64px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  border-radius: 70px;
  box-shadow: inset 0 0 68px 0 rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  transform: translateX(-300px);
}

@media (max-width:1300px){
  .donations__label{
    transform: translateX(-200px);
  }
  }

@media (max-width:1180px){
.donations__label{
  transform: translateX(0);
}
}


.donations__title {
  margin: 0 0 36px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  leading-trim: NONE;
  letter-spacing: 0%;
  color: #fff;
}

.donations__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.donations__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donations__field--toggle {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.donations__frequency-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donations__frequency-row .donations__label-text--bold {
  margin: 0;
}

.donations__frequency-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}

.donations__frequency-line .donations__radios {
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.donations__frequency-line .donations__field--email {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 280px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.donations__frequency-line .donations__field--email .donations__label-text {
  flex-shrink: 0;
  white-space: nowrap;
}

.donations__frequency-line .donations__field--email .donations__input--email {
  width: 200px;
  max-width: 200px;
  min-width: 120px;
}

.donations__label-text {
  margin: 0;
  text-transform: capitalize;
  color: #fff;
  font-family: Open Sans;
font-weight: 600;
font-style: SemiBold;
font-size: 20px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 0%;

}

.donations__label-text--bold {
  font-style: normal;
  line-height: 14px;
  text-transform: capitalize;
  color: #fff;
  font-family: Open Sans;
font-weight: 600;
font-style: SemiBold;
font-size: 20px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 0%;

}

.donations__label-text--orange {
  font-family: Open Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #EC6807;
}

@media (max-width:480px){
  .donations__label-text--orange{
    font-size: 16px;
    line-height: 16px;
  }
}

.donations__label-text--email{
font-family: Open Sans;
font-weight: 500;
font-style: Medium;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #fff;
}

.donations__radios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.donations__radio-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

.donations__radio-wrap input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.donations__radio-dot {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.donations__radio-wrap input:checked + .donations__radio-dot {
  border: 2px solid #EC6807;
  background: transparent;
}

.donations__radio-wrap input:checked + .donations__radio-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #EC6807;
}

.donations__input {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(236, 104, 7, 0.5);
  border-radius: 24px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.donations__input:hover {
  border-color: #EC6807;
}

.donations__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.donations__input--email {
  border: 1px solid #fff;
  border-radius: 999px;
}

.donations__input--email:hover {
  border-color: #EC6807;
}

.donations__input--email::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.donations__amount-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(236, 104, 7, 0.5);
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  transition: border-color 0.2s;
}

.donations__amount-row:hover,
.donations__amount-row:focus-within {
  border-color: #EC6807;
}

.donations__amount-row--slider {
  border-radius: 999px;
  border: 2px solid #EC6807;
  background: transparent;
  padding: 0;
  min-height: 48px;
  align-items: center;
}

.donations__amount-row--slider:hover,
.donations__amount-row--slider:focus-within {
  border-color: #EC6807;
}

.donations__amount-row .donations__input--amount {
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

.donations__amount-row .donations__input--amount:focus {
  outline: none;
  box-shadow: none;
}

.donations__range {
  flex: 1;
  width: 100%;
  height: 44px;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.donations__range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
  border-radius: 0;
}

.donations__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EC6807 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctext x='12' y='18' text-anchor='middle' fill='%23fff' font-size='20' font-family='Raleway,sans-serif' font-weight='600'%3E%24%3C/text%3E%3C/svg%3E") center/18px no-repeat;
  cursor: grab;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.donations__range::-webkit-slider-thumb:active {
  cursor: grabbing;
}

.donations__range::-moz-range-track {
  height: 100%;
  background: transparent;
  border-radius: 0;
}

.donations__range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EC6807 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctext x='12' y='18' text-anchor='middle' fill='%23fff' font-size='20' font-family='Raleway,sans-serif' font-weight='600'%3E%24%3C/text%3E%3C/svg%3E") center/18px no-repeat;
  cursor: grab;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.donations__range::-moz-range-thumb:active {
  cursor: grabbing;
}

.donations__amount-display {
  cursor: default;
}

.donations__dollar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background: #EC6807;
  border-radius: 24px;
}

.donations__amount-row .donations__dollar {
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.donations__dollar--small {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-radius: 24px;
}

.donations__input--amount {
  flex: 1;
}

.donations__presets-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.donations__presets {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.donations__preset {
  padding: 12px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.donations__preset:hover {
  background: #EC6807;
  color: #fff;
  border-color: #EC6807;
  transform: scale(1.02);
}

.donations__preset:active {
  transform: scale(0.98);
}

.donations__preset--active {
  background: #EC6807;
  color: #fff;
  border: none;
  padding: 14px 26px;
}

.donations__preset--active:hover {
  background: #EC6807;
  color: #fff;
  border: none;
  transform: scale(1.02);
  padding: 14px 26px;
}

.donations__preset-custom {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  min-width: 63px;
  height: 45px;
  padding: 0 14px 0 0;
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
  cursor: text;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.donations__preset-custom:hover,
.donations__preset-custom:focus-within {
  border-color: #EC6807;
  outline: none;
}

.donations__preset-custom .donations__preset-dollar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.donations__preset-custom .donations__input--preset {
  width: 60px;
  min-width: 60px;
  padding: 0 8px;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}

.donations__preset-custom .donations__input--preset:focus {
  outline: none;
  box-shadow: none;
}

.donations__input--preset {
  width: 100px;
  min-width: 80px;
}

.donations__switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

.donations__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.donations__slider {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 28px;
  transition: background 0.25s;
}

.donations__slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 3px;
  background: #EC6807;
  border-radius: 50%;
  transition: transform 0.25s, background 0.25s;
}

.donations__switch input:checked + .donations__slider {
  background: #EC6807;
}

.donations__switch input:checked + .donations__slider::before {
  transform: translateX(24px);
  background: #fff;
}

.donations__card-row {
  display: grid;
  grid-template-columns: 1fr 140px 100px;
  gap: 12px;
}

.donations__submit {
  margin-top: 12px;
  max-width: 201px;
  min-width: 100px;
  height: 54px;
  padding: 0 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #EC6807;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(105, 105, 105, 0.72);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.donations__submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 6px 0 rgba(105, 105, 105, 0.72);
}

@media (max-width: 768px) {
  .donations {
    padding: 24px 16px 48px;
    min-height: auto;
    align-items: flex-start;
  }
  .donations__inner {
    align-items: stretch;
  }
  .donations__label {
    max-width: 100%;
    min-height: 0;
    padding: 32px 20px 40px;
    border-radius: 32px;
    transform: none;
  }
  .donations__title {
    margin-bottom: 28px;
    font-size: 26px;
  }
  .donations__form {
    gap: 24px;
  }
  .donations__field {
    gap: 10px;
  }
  .donations__frequency-line {
    flex-wrap: wrap;
  }
  .donations__frequency-line .donations__field--email {
    max-width: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .donations__frequency-line .donations__field--email .donations__input--email {
    width: 100%;
    max-width: none;
  }
  .donations__presets-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .donations__presets {
    flex-wrap: wrap;
    gap: 10px;
  }
  .donations__field--toggle {
    margin-top: 0;
  }
  .donations__card-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .donations__input--preset {
    width: 100%;
  }
  .donations__preset-custom {
    flex: 1;
    min-width: 0;
  }
  .donations__preset-custom .donations__input--preset {
    width: 100%;
    min-width: 0;
    flex: 1;
  }
  .donations__submit {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }
}

.who-we-are {
  background: #fff;
  padding: 80px 20px 100px;
}

.who-we-are__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.who-we-are__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 32px;
}

.who-we-are__text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000000;
}

.who-we-are__text p {
  margin: 0 0 20px;
}

.who-we-are__text p:last-child {
  margin-bottom: 0;
}

.nfound-app {
  --nfound-pad-h: 20px;
  --nfound-left-right: 60px;
  --nfound-right-left: 72px;
  --nfound-gap: 0px;
  background: #fff;
  padding: 60px 20px 80px;
  overflow-x: hidden;
}

.nfound-app__mobile {
  display: none;
}

.nfound-app__desktop {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--nfound-gap);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 556px;
  box-sizing: border-box;
}

.nfound-app__col {
  position: relative;
  flex: 0 0 auto;
  width: 582px;
  box-sizing: border-box;
}

.nfound-app__col--right {
  width: 719px;
}

@media (max-width: 1300px) {
  .nfound-app__desktop {
    gap: 0;
  }
  .nfound-app__col {
    width: 44.73%;
    max-width: 44.73%;
    min-width: 0;
  }
  .nfound-app__col--right {
    width: 55.27%;
    max-width: 55.27%;
  }
}

.nfound-app__col--left .nfound-app__block {
  left: var(--nfound-pad-h, 24px);
  right: var(--nfound-left-right, 72px);
}

.nfound-app__col--right .nfound-app__block {
  left: var(--nfound-right-left, 72px);
  right: var(--nfound-pad-h, 24px);
}

.nfound-app__col--left{
  left: 65px;
}

.nfound-app__col--right{
  right: 65px;
}

.nfound-app__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nfound-app__block {
  position: absolute;
  left: var(--nfound-pad-h, 24px);
  right: var(--nfound-pad-h, 24px);
  color: #fff;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  min-width: 0;
}

.nfound-app__block p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #fff;
}

.nfound-app__block--top {
  top: 32px;
  bottom: 50%;
  padding-bottom: 24px;
}

.nfound-app__block--bottom {
  top: 50%;
  bottom: 32px;
  padding-top: 24px;
}

.nfound-app__block--top-left {
  max-width: 65%;
}

.nfound-app__block--bottom-left {
}

.nfound-app__block--top-right {
}

.nfound-app__block--bottom-right {
  left: 225px !important;
}

.nfound-app__heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #fff;
}

.nfound-app__block .nfound-app__heading + p {
  margin-bottom: 20px;
}

.nfound-app__block .nfound-app__heading + p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .nfound-app__desktop {
    display: none;
  }

  .nfound-app__mobile {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }

  .nfound-app__card {
    background: #000;
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 24px;
    color: #fff;
  }

  .nfound-app__card:last-child {
    margin-bottom: 0;
  }

  .nfound-app__mobile .nfound-app__heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #fff;
  }

  .nfound-app__mobile .nfound-app__heading + p {
    margin-bottom: 20px;
  }

  .nfound-app__mobile .nfound-app__heading:not(:first-child) {
    margin-top: 24px;
  }

  .nfound-app__mobile p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #fff;
  }
}

.about-cards {
  background: #fff;
  padding: 80px 20px 100px;
}

.about-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
}

.about-cards__item {
  flex: 1;
  min-width: 0;
  max-width: 253px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-cards__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-cards__icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-cards__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #EC6807;
  margin: 0 0 16px;
}

.about-cards__text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .about-cards {
    padding: 60px 20px 80px;
  }

  .about-cards__inner {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .about-cards__item {
    max-width: 400px;
  }
}

.sponsors {
  background: #fff;
  padding: 48px 20px 56px;
}

.sponsors__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sponsors__carousel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sponsors__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #e5e5e5;
  color: #333;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, color 0.2s;
}

.sponsors__arrow:hover {
  background: #d0d0d0;
  color: #000;
}

.sponsors__track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.sponsors__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  transition: transform 0.3s ease;
  width: 120%;
}

.sponsors__slide {
  flex-shrink: 0;
  width: 16.666%;
  min-width: 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 24px;
}

.sponsors__slide img {
  max-width: 120px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .sponsors {
    padding: 32px 0 40px;
  }

  .sponsors__inner {
    max-width: 100%;
    padding: 0;
  }

  .sponsors__carousel {
    gap: 12px;
    padding: 0 8px;
  }

  .sponsors__arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .sponsors__arrows{
    padding-top: 5px;
  }

  .sponsors__track {
    overflow: hidden;
  }

  .sponsors__list {
    width: 300%;
    gap: 0;
    justify-content: flex-start;
  }

  .sponsors__slide {
    width: 16.666%;
    min-width: 0;
    max-width: none;
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .sponsors__slide img {
    max-width: 100%;
    max-height: 55px;
  }
}

.blog-section {
  background: #fff;
  padding: 80px 20px 100px;
  display: flex;
  align-items: stretch;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #e0e0e0;
  margin: 0;
  gap:40px;
  align-self: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-section__title-mob{
  display: none;
}

.blog-section__title span {
  display: block;
}


.blog-section__grid {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  min-height: 380px;
  position: relative;
}

.blog-card:hover .blog-card__body {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.blog-card__image {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  width: 80%;
  border-radius: 10px;
  margin: -40px auto 0;
  padding: 25px;
  min-height: 200px;
  position: relative;
  z-index: 1;
  background: #F6F6F6;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-card__date-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.blog-card__icon {
  flex-shrink: 0;
  display: block;
}

.blog-card__date {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  color: #000000;
}

.blog-card__meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 12px;
  padding-left: 20px;
}

.blog-card__sep {
  color: #000000;
}

.blog-card__cat {
  color: #000000;
  text-decoration: underline;
}

.blog-card__by {
  color: #000000;
}

.blog-card__heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 10px;
}

.blog-card__excerpt {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 35px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card__link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #EC6807;
  text-decoration: underline;
}

/* Blog page: 3x3 grid per slide, pagination */
.blog-section--page {
  flex-direction: column;
  align-items: stretch;
}

.blog-section--page .blog-section__slider {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.blog-section--page .blog-section__slides {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

.blog-section--page .blog-section__slide {
  display: none;
  width: 100%;
}

.blog-section--page .blog-section__slide.is-active {
  display: block;
}

.blog-section--page .blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  min-height: 30px;
}

.blog-pagination__arrow {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: opacity 0.2s;
}

.blog-pagination__arrow:disabled {
  cursor: default;
  opacity: 0.4;
}

.blog-pagination__nums {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-pagination__num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.blog-pagination__num.is-active {
  background: #000;
  color: #fff;
}

.blog-pagination__num:not(.is-active):hover {
  background: rgba(0,0,0,0.08);
}

/* Секция перед футером: 2 текста без титулки */
.pre-footer-text {
  background-color: #F6F6F6;
  padding: 125px 20px;
}

.pre-footer-text__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.pre-footer-text__paragraph {
  margin: 0 0 24px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000000;
  text-align: justify;
}

.pre-footer-text__paragraph:last-child {
  margin-bottom: 0;
}

.blog-page__title{
  font-family: Raleway;
font-weight: 600;
font-style: SemiBold;
font-size: 40px;
leading-trim: NONE;
line-height: 50px;
letter-spacing: 0%;
color: #000;
}

@media (max-width: 768px) {
  .blog-section {
    flex-direction: column;
    padding: 48px 20px 64px;
    align-items: center;
  }

.blog-section__title{
display: none;
}

  .blog-section__title-mob {
  display: block;
    flex-direction: row;
    font-weight: 600;
    font-size: 24px;
    font-family: "Raleway";
    color: black;
    margin-bottom: 24px;
  }

  .blog-section__title span {
    display: inline;
  }

  .blog-section__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    width: 100%;
  }

  .blog-section:not(.blog-section--page) .blog-section__grid .blog-card:nth-child(n+2) {
    display: none;
  }

  .blog-section--page .blog-section__grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .blog-card__body {
    padding: 20px 10%;
  }

  .pre-footer-text {
    padding: 80px 20px;
  }
}

.blog-open__hero{
  max-width: 1170px;
}

/* Blog article page (blog-open.html) */
.blog-article {
  background: #fff;
  padding: 48px 20px 80px;
}

.blog-article__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.blog-article__meta {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 14px;
  letter-spacing: 5%;
  text-decoration-style: solid;  
  margin: 0 0 12px;
  gap: 10px;
}

.blog-article__meta-name{
  text-decoration: underline;
}

.blog-article__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 32px;
}

.blog-article__content {
  overflow: hidden;
}

.blog-article__image-wrap {
  float: right;
  margin: 0 0 24px 24px;
}

.blog-article__image {
  width: 470px;
  height: 605px;
  display: block;
  object-fit: cover;
}

.blog-article__section {
  margin-bottom: 28px;
}

.blog-article__section:last-of-type {
  margin-bottom: 24px;
}

.blog-article__heading {
  font-family: Open Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 22px;
  color: #000;  
}

.blog-article__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  margin: 0 0 12px;
}

.blog-article__section p:last-child {
  margin-bottom: 0;
}

.blog-article__tags {
  font-family: Raleway;
  font-weight: 400;
}

/* Blog image section (app promo): desktop/mobile images */
.blog-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.blog-img__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.blog-img__desktop {
  display: block;
  max-width: 100%;
  height: auto;
}

.blog-img__mobile {
  display: none;
}

.blog-open-another {
  background: #fff;
  padding: 80px 20px 100px;
}

@media (max-width:768px){
  .blog-open-another{
    padding-bottom: 0;
  }
}

.blog-open-another__title {
  font-family: Raleway, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #000;
  text-align: left;
  margin: 0 auto 48px;
  max-width: 1170px;
}

.blog-open-another__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1170px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .blog-open-another {
    padding: 48px 20px 0;
  }

  .blog-open-another__title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .blog-open-another__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .blog-open-another__grid .blog-card:nth-child(n+2) {
    display: none;
  }
}

@media (max-width: 940px) {
  .blog-img {
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }

  .blog-img__inner {
    max-width: none;
  }

  .blog-img__desktop {
    display: none;
  }

  .blog-img__mobile {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .blog-article__image-wrap {
    float: none;
    margin: 0 0 24px;
  }

  .blog-article__image {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

/* ----- Program page header (black shape + cards) ----- */
.program-header {
  position: relative;
  min-height: 420px;
  background: #fff;
  overflow: hidden;
}

.program-header__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  min-height: 420px;
}

/* SVG as background layer, not a block — ширина фона 1170px */
.program-header__shape-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1300px;
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
}

.program-header__shape-wrap svg {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.program-header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 24px 48px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.program-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
  padding: 0 4% 0 5%;
}

.program-header__logo {
  display: block;
  line-height: 0;
}

.program-header__logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.program-header__nav {
  display: flex;
  align-items: center;
  gap: 90px;
  padding-right: 40px;
}

/* Стили только для ссылок навбара, НЕ для бургера */
.program-header__nav > a,
.program-header__nav .program-header__nav-dropdown > a,
.program-header__nav  {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.program-header__nav > a::after,
.program-header__nav .program-header__nav-dropdown > a::after,
.program-header__nav ::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

@media (max-width:1030px){
  .program-header__nav{
    padding-right: 0;
    gap: 70px;
  }
}

@media (max-width:890px){
  .program-header__nav{
    padding-right: 0;
    gap: 50px;
  }
}

@media (max-width:800px){
  .program-header__nav{
    padding-right: 0;
    gap: 30px;
  }
}

.burger-dropdown-link{
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.burger-dropdown-link a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}



.program-header__nav a:hover::after {
  transform: scaleX(1);
}

.program-header__nav-dropdown {
  position: relative;
}

.program-header__nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-header__chevron {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.program-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  background: rgba(0, 0, 0, 0.88);
  border-radius: 10px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.28s;
  overflow: hidden;
}

.program-header__nav-dropdown:hover .program-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.program-header__dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.program-header__dropdown li:last-child {
  border-bottom: none;
}

.program-header__dropdown a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.program-header__dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Burger — скрыт на десктопе, на мобильном слева от лого */
.program-header__burger-wrap {
  position: relative;
  order: 3;
}

.program-header__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 55px;
  padding-top: 32px;
  flex-wrap: wrap;
}

.program-card {
  position: relative;
  width: 192px;
  height: 192px;
  text-decoration: none;
  display: block;
}

.program-card__color {
  position: absolute;
  top: 0px;
  right: 0;
  width: 155px;
  height: 155px;
  border-radius: 32px;
  background: #EC6807B8;
}

.program-card__color-mid{
  background: #5D2903B8;
}

.program-card__glass {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background-color: #FFFFFF17;
  border: 1px solid #FFFFFF0D;
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 68px 0px #FFFFFF0D inset;
  box-shadow: 0px 4px 4px 0px #FFFFFF26 inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
    top: 9px;
    right: 21px;
}

.program-card__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: #000;
}

.program-card__title-mid{
 color: #fff !important;
}

.program-card__icon svg {
  display: block;
  width: 66px;
  height: 67px;
}

@media (max-width: 900px) {
  .program-header__cards {
    gap: 32px;
    padding-top: 24px;
  }

  .program-card {
    width: 170px;
    height: 170px;
  }
}


@media (max-width: 768px) {
  .program-header {
    min-height: 380px;
    background: #000;
  }

  .program-header__container {
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .program-header__inner {
    padding: 16px 16px 36px;
    min-height: 380px;
  }

  .program-header__top {
    position: relative;
  }

  .program-header__burger-wrap {
    display: flex;
    order: 1;
  }

  .program-header__logo {
    order: 2;
  }

  .program-header__nav {
    display: none;
  }

  .program-header__hamburger {
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .program-header__hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
  }

  .program-header__burger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 220px;
    width: max-content;
    background: rgba(0, 0, 0, 0.81);
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.1), 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.28s;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
  }

  .program-header__burger-wrap.is-open .program-header__burger-dropdown {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }



  .program-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .program-header__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 0;
    padding: 0;
    box-sizing: border-box;
  }

  .program-header__cards .program-card {
    width: 100%;
    max-width: 100%;
    height: 160px;
    box-sizing: border-box;
  }

  .program-header__cards .program-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 8px);
  }
}

/* ========== Person grid (main content our-program) ========== */
.person-grid-section {
  padding: 48px 24px 64px;
  background: #fff;
}

.person-grid-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Desktop card: horizontal layout (image left, info right) */
.person-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #00000066;
  box-shadow: 2px 4px 4px 0px #00000026;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

.person-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.person-card__img-wrap {
  flex: 0 0 42%;
  min-height: 200px;
  overflow: hidden;
  padding: 12px;
  box-sizing: border-box;
}

.person-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.person-card__body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.person-card__header {
  position: relative;
  margin-bottom: 12px;
}

.person-card__date {
  font-family: Scada;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 16px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #000;  
}

.person-card__name {
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  leading-trim: NONE;
  line-height: 26px;
  letter-spacing: 0%;
  text-transform: capitalize;  
  color: #000;
}

.person-card__status {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}

.person-card__status-icon {
  display: block;
  margin: 0 auto -2px;
}

.person-card__status-icon svg {
  display: block;
}

.person-card__status-text {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #000;
  margin-top: -10px;
}

.person-card__attrs {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex: 1;
}

.person-card__attrs-col {
  flex: 1;
  min-width: 0;
}

.person-card__attr {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  margin: 0 0 4px;
  color: #333;
}

.person-card__attr-label {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #000;
}

.person-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

.person-card__share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.person-card__share:hover {
  opacity: 0.7;
}

.person-card__share svg {
  flex-shrink: 0;
  display: block;
}

.person-card__share-text {
  display: block;
}

.person-card__btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.2s, transform 0.2s;
}

.person-card__btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Pagination */
.person-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.person-pagination__prev,
.person-pagination__next {
  width: auto;
  height: auto;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.person-pagination__prev svg,
.person-pagination__next svg {
  display: block;
}

.person-pagination__prev svg {
  transform: scaleX(-1);
}

.person-pagination__prev:hover,
.person-pagination__next:hover {
  opacity: 0.6;
}

.person-pagination__prev:disabled,
.person-pagination__next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.person-pagination__pages {
  display: flex;
  gap: 12px;
  align-items: center;
}

.person-pagination__page {
  min-width: 32px;
  height: 32px;
  padding: 0 4px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.person-pagination__page:hover {
  opacity: 0.7;
}

.person-pagination__page.is-active {
  background: #000;
  color: #fff;
}

/* Nfound info section (final section before footer) */
.nfound-section {
  padding: 56px 24px 72px;
  background: #f5f5f5;
}

.nfound-section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.nfound-section__intro {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 24px;
}

.nfound-section__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  margin: 0 0 28px;
}

.nfound-section__block {
  margin-bottom: 28px;
}

.nfound-section__block:last-child {
  margin-bottom: 0;
}

.nfound-section__subtitle {
  font-family: 'Scada', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  margin: 0 0 12px;
}

.nfound-section__text {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.nfound-section__list {
  font-family: 'Scada', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 12px 0 0;
  padding-left: 24px;
  list-style-type: decimal;
}

.nfound-section__list li {
  margin-bottom: 12px;
}

.nfound-section__list li:last-child {
  margin-bottom: 0;
}

.nfound-section__list strong {
  font-weight: 700;
}

/* Mobile: vertical card layout, single column */
@media (max-width: 768px) {
  .person-grid-section {
    padding: 32px 16px 48px;
  }

  .person-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .person-card {
    flex-direction: column;
  }

  .person-card__img-wrap {
    flex: none;
    height: 220px;
    padding: 12px 12px 0;
    border-radius: 12px 12px 0 0;
  }

  .person-card__img-wrap .person-card__img {
    border-radius: 20px 20px 0 0;
  }

  .person-card__body {
    padding: 16px 20px;
  }

  .person-card__header {
    margin-bottom: 12px;
  }

  .person-card__status {
    position: absolute;
    top: 0;
    right: 0;
  }

  .person-card__attrs {
    gap: 20px;
    margin-bottom: 16px;
  }

  .person-pagination {
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .nfound-section {
    padding: 40px 16px 56px;
  }

  .nfound-section__inner {
    max-width: 100%;
  }

  .nfound-section__title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .nfound-section__block {
    margin-bottom: 20px;
  }
}

/* Contact page — header dark (#000), white text, mobile menu from right */
.page-contact .stock-header {
  background: #000 !important;
  box-shadow: none;
}
.page-contact .stock-header .header-nav a,
.page-contact .stock-header .header-nav .has-dropdown {
  color: #fff;
}
.page-contact .stock-header .header-nav a::after {
  background: #fff;
}
.page-contact .stock-header .header-nav .chevron {
  color: #fff;
}
.page-contact .stock-header .hamburger span {
  background: #fff;
}
.page-contact .stock-header .logo {
  background: transparent;
}

/* ========== Open-missing page styles ========== */
.page-open-missing .stock-header {
  background: #f5f5f5 !important;
}
@media (max-width: 768px) {
  .page-open-missing .stock-header {
    background: #f5f5f5 !important;
  }
  .page-open-missing .mobile-menu {
    background: #f5f5f5;
  }
  .page-open-missing .mobile-menu-nav a {
    color: #1a1a2e;
  }
  .page-open-missing .mobile-menu-close::before,
  .page-open-missing .mobile-menu-close::after {
    background: #1a1a2e;
  }
  .page-open-missing .mobile-menu-download {
    background: #EC6807;
    color: #fff;
  }
}

.missing-person {
  padding: 48px 24px;
}

.missing-person__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.missing-person__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.missing-person__content {
  position: relative;
  width: 100%;
  max-width: 815px;
}

.missing-person__slides {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.missing-person__slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.missing-person__slide.is-active {
  display: flex;
}

.missing-person__name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #EC6807;
  margin: 0 0 20px 0;
}

.missing-person__img-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  max-width: 815px;
}

.missing-person__img-wrap {
  display: block;
  width: 815px;
  max-width: 100%;
  height: 585px;
  border-radius: 16px;
  overflow: hidden;
}

.missing-person__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.missing-person__pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  z-index: 2;
}

.missing-person__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.missing-person__dot.is-active {
  background: #EC6807;
}

.missing-person__lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.missing-person__lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.missing-person__lightbox-close::before,
.missing-person__lightbox-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.missing-person__lightbox-close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.missing-person__lightbox-inner {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.missing-person__lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  .missing-person__img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 815 / 585;
  }
  .missing-person__pagination {
    gap: 19px;
  }
  .missing-person__dot {
    width: min(19px, 5vw);
    height: min(19px, 5vw);
    max-width: 19px;
    max-height: 19px;
  }
}

.person-info {
  padding: 0 24px 48px;
}

.person-info__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.person-info__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.person-info__header {
  position: relative;
  margin-bottom: 20px;
}

.person-info__date {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #EC6807;
  margin: 0 0 8px;
  display: block;
}

.person-info__name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1a1a2e;
  margin: 0;
}

.person-info__status {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}

.person-info__status-icon {
  display: block;
  margin: 0 auto -2px;
}

.person-info__status-icon svg {
  display: block;
}

.person-info__status-text {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #333;
}

.person-info__attrs {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.person-info__attrs-col {
  flex: 1;
  min-width: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.person-info__attrs-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  margin: 0;
}

.person-info__attr {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 4px;
  color: #333;
}

.person-info__attr-label {
  color: #000;
  font-weight: 500;
}

.person-info__desc {
  margin-bottom: 24px;
}

.person-info__desc-title {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.person-info__desc-text {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.person-info__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.person-info__share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #EC6807;
  text-decoration: none;
  transition: opacity 0.2s;
}

.person-info__share:hover {
  opacity: 0.8;
}

.person-info__share svg {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
}

.person-info__contact {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #EC6807;
  background: #fff;
  color: #EC6807;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}

.person-info__contact:hover {
  background: #EC6807;
  color: #fff;
}

@media (max-width: 768px) {
  .person-info {
    padding: 0 16px 32px;
  }
  .person-info__card {
    padding: 20px 20px 24px;
    border-radius: 16px;
  }
  .person-info__header {
    margin-bottom: 16px;
  }
  .person-info__name {
    font-size: 24px;
    padding-right: 70px;
  }
  .person-info__attrs {
    gap: 24px;
    margin-bottom: 20px;
  }
  .person-info__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .person-info__share {
    justify-content: center;
  }
  .person-info__contact {
    text-align: center;
    border-radius: 16px;
  }
}

.person-map {
  padding: 0 24px 48px;
}

.person-map__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.person-map__title {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #1a1a2e;
  margin: 0 0 16px;
}

.person-map__wrap {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #e8e8e8;
}

.person-map__iframe {
  display: block;
  width: 100%;
  min-height: 100%;
}

@media (max-width: 768px) {
  .person-map {
    padding: 0 16px 32px;
  }
  .person-map__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .person-map__wrap {
    height: 250px;
    border-radius: 16px;
  }
}

/* ========== Contact page styles ========== */
.contact-main {
  background: #000;
  min-height: 60vh;
  padding: 60px 24px 80px;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__title {
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 0%;
  color: #fff; 
  padding-bottom: 30px;
}

.contact__subtitle {
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 22px;
  letter-spacing: 0%;
  color: #fff;
}

.contact__text {
  color: #7D7C7C;
  margin: 0;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;

}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__box {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  background: #000;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.contact__box-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EC6807;
  border-radius: 6px;
}

.contact__icon svg {
  display: block;
  max-width: 22px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.contact__label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0;
  color: #fff;
}

.contact__value {
  margin-top: 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0;
  color: #fff;
}

.contact__form-wrap {
  position: sticky;
  top: 24px;
}

.contact__form {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__form-title {
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 34px;
  leading-trim: NONE;
  line-height: 34px;
  letter-spacing: 0%;
  color: #fff;  
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 12px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(236, 104, 7, 0.6);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact__input:focus,
.contact__textarea:focus {
  border-bottom-color: #EC6807;
}

.contact__textarea {
  min-height: 80px;
  resize: vertical;
}

.contact__submit {
  align-self: flex-start;
  min-width: 201px;
  height: 54px;
  padding: 0 48px;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #EC6807;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.49);
}

.contact__submit:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-main {
    padding: 32px 16px 48px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__info {
    align-items: stretch;
    text-align: left;
  }

  .contact__title {
    text-align: left;
  }

  .contact__subtitle {
    text-align: left;
  }

  .contact__text {
    text-align: left;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
    margin: 0;
  }

  .contact__box {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
    align-items: start;
  }

  .contact__box-header {
    display: contents;
  }

  .contact__box .contact__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
  }

  .contact__box .contact__label {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .contact__box .contact__value {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
  }

  .contact__form-wrap {
    position: static;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }
}
