@charset "UTF-8";
/**
 * Main SCSS File
 * MMGHR Child Theme
 * Professional Event Summary Page Design
 */
html {
  scroll-behavior: smooth;
}

body {
  color: #ffffff;
  background-color: #1a1a1a;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
}
body.mobile-menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  body.mobile-menu-open {
    position: fixed;
    width: 100%;
  }
}

.content-article {
  width: 100%;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.content-article:last-child {
  border-bottom: none;
}
.content-article:not(.hero-banner):not(.hero-section)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/wave-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.content-article:not(.hero-banner):not(.hero-section) .content-wrapper {
  position: relative;
  z-index: 1;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.site-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .site-header .header-container {
    padding: 0 20px;
    gap: 20px;
  }
}
.site-header .site-branding {
  flex-shrink: 0;
}
.site-header .site-branding .site-logo {
  display: block;
}
.site-header .site-branding .site-logo img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-header .site-branding .site-logo img {
    height: 40px;
  }
}
.site-header .header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}
@media (max-width: 1024px) {
  .site-header .header-nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .site-header .header-nav {
    display: none;
  }
}
.site-header .header-nav.header-nav-left {
  justify-content: flex-end;
}
.site-header .header-nav.header-nav-right {
  justify-content: flex-start;
}
.site-header .header-nav .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}
.site-header .header-nav .nav-link:hover {
  color: #FCD116;
}
.site-header .header-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FCD116;
  transition: all 0.3s ease;
}
.site-header .header-nav .nav-link:hover::after {
  width: 100%;
}
.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle .hamburger-line {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}
.mobile-menu-toggle:hover .hamburger-line {
  background-color: #E85124;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.97);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 80px 20px 40px;
  gap: 4px;
}
.mobile-menu-nav .mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Gilroy", sans-serif;
  width: 100%;
  text-align: center;
}
.mobile-menu-nav .mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #E85124;
  transition: all 0.3s ease;
}
.mobile-menu-nav .mobile-nav-link:hover {
  color: #E85124;
}
.mobile-menu-nav .mobile-nav-link:hover::after {
  width: 50%;
}
.mobile-menu-nav .mobile-nav-link:active {
  color: #FCD116;
}

.section-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title.yellow {
  color: #FCD116;
}
.section-title.green {
  color: #00966E;
}
.section-title.orange {
  color: #E85124;
}
.section-title.blue {
  color: #0E5BAB;
}

.title-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  max-width: 200px;
}

.hero-banner {
  padding: 0;
  border-bottom: none;
  height: 100vh;
  min-height: 900px;
  max-height: fit-content;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-banner::before {
  display: none;
}
@media (max-width: 768px) {
  .hero-banner {
    min-height: 570px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/mmg-hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 100px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-mediterranean {
  font-size: 50px;
  font-weight: 700;
  color: #5DEADD;
  margin: 0 0 20px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif;
  line-height: 100%;
}
@media (max-width: 768px) {
  .hero-mediterranean {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

.hero-year {
  font-size: 220px;
  font-weight: 900;
  margin: 20px 0;
  line-height: 1;
}
.hero-year .year-outline {
  color: #ffffff;
  -webkit-text-stroke: 2px #ffffff;
  -webkit-text-fill-color: transparent;
}
.hero-year .year-solid {
  color: #E85124;
  -webkit-text-stroke: 2px #E85124;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .hero-year {
    font-size: 4rem;
  }
}

.hero-tagline {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 30px 0 15px 0;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-tagline {
    font-size: 1.2rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-section {
  padding: 60px 0;
  background-image: url("../images/wave-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
  z-index: 0;
}
.hero-section .content-wrapper {
  position: relative;
  z-index: 1;
}

.key-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.key-detail-dates {
  font-size: 3rem;
  font-weight: 700;
  color: #E85124;
  line-height: 1.2;
  font-family: "Gilroy", sans-serif;
}

.key-detail-location {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: "Gilroy", sans-serif;
}

.key-detail-language {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E85124;
  line-height: 1.2;
  font-family: "Gilroy", sans-serif;
  margin-top: 10px;
}

.key-detail-format {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  font-family: "Gilroy", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.key-detail-format div {
  line-height: 1.3;
}

.mission-section {
  background-color: #0f0f0f;
}

.mission-content {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}
.mission-content .highlight-green {
  color: #00966E;
  font-weight: 500;
}
.mission-content .highlight-orange {
  color: #E85124;
  font-weight: 500;
}
.mission-content .highlight-yellow {
  color: #FCD116;
  font-weight: 500;
}

.objectives-section {
  background-color: #1a1a1a;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.objective-card {
  background-color: #2a2a2a;
  padding: 25px 20px;
  border-radius: 6px;
  border-left: 3px solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.objective-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.objective-card.orange {
  border-left-color: #E85124;
}
.objective-card.blue {
  border-left-color: #0E5BAB;
}
.objective-card.green {
  border-left-color: #00966E;
}
.objective-card.yellow {
  border-left-color: #FCD116;
}
.objective-card.dark-green {
  border-left-color: #00aa55;
}
.objective-card .objective-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.objective-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.goals-section {
  background-color: #0f0f0f;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.goals-swiper {
  margin-top: 40px;
  padding: 20px 80px 100px;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .goals-swiper {
    padding: 20px 20px 100px;
    overflow: hidden;
  }
}
.goals-swiper .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 100px;
  padding-top: 100px;
}
.goals-swiper .swiper-slide {
  height: auto;
  display: flex;
  transition: transform 0.6s ease;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .goals-swiper .swiper-slide {
    padding: 0 20px;
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }
}
.goals-swiper .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  z-index: 2;
}
@media (max-width: 768px) {
  .goals-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
.goals-swiper .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.9);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .goals-swiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(1);
    opacity: 1;
  }
}
.goals-swiper .swiper-pagination {
  display: none;
}
.goals-swiper .swiper-button-next,
.goals-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: rgba(252, 209, 22, 0.9);
  border-radius: 50%;
  color: #000000;
  margin-top: 0;
  top: auto;
  bottom: 10px;
  transition: all 0.3s ease;
  z-index: 200;
  position: absolute;
}
.goals-swiper .swiper-button-next:hover,
.goals-swiper .swiper-button-prev:hover {
  background-color: #FCD116;
  transform: scale(1.15);
}
.goals-swiper .swiper-button-next:after,
.goals-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: 900;
}
.goals-swiper .swiper-button-next.swiper-button-disabled,
.goals-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}
@media (max-width: 768px) {
  .goals-swiper .swiper-button-next,
  .goals-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .goals-swiper .swiper-button-next:after,
  .goals-swiper .swiper-button-prev:after {
    font-size: 14px;
  }
}
.goals-swiper .swiper-button-prev {
  left: 50%;
  transform: translateX(-60px);
}
.goals-swiper .swiper-button-prev:hover {
  transform: translateX(-60px) scale(1.15);
}
@media (max-width: 768px) {
  .goals-swiper .swiper-button-prev {
    transform: translateX(-50px);
  }
  .goals-swiper .swiper-button-prev:hover {
    transform: translateX(-50px) scale(1.15);
  }
}
.goals-swiper .swiper-button-next {
  left: 50%;
  transform: translateX(20px);
}
.goals-swiper .swiper-button-next:hover {
  transform: translateX(20px) scale(1.15);
}
@media (max-width: 768px) {
  .goals-swiper .swiper-button-next {
    transform: translateX(15px);
  }
  .goals-swiper .swiper-button-next:hover {
    transform: translateX(15px) scale(1.15);
  }
}

.goals-section .content-wrapper {
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .goals-section .content-wrapper {
    overflow: hidden;
    padding: 0;
  }
}

.goal-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: 100%;
}
.goal-item .goal-description {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.goal-header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
  padding: 0;
}

.goal-number {
  font-size: 6rem;
  font-weight: 900;
  color: #FCD116;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Gilroy", sans-serif;
}

.goal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FCD116;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  flex: 1;
  font-family: "Gilroy", sans-serif;
}

.goal-description {
  background-color: #FCD116;
  border-radius: 12px;
  padding: 30px;
}
.goal-description p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000000;
  font-weight: 400;
  font-family: "Gilroy", sans-serif;
}

.agenda-section {
  background-color: #1a1a1a;
}

.agenda-theme {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.agenda-theme.green {
  color: #00966E;
}

.day-label {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  text-align: right;
  margin: -30px 0 30px 0;
  line-height: 1;
  letter-spacing: -3px;
  position: relative;
  z-index: 0;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.agenda-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 20px;
  background-color: #2a2a2a;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.agenda-item:hover {
  background-color: #2a2a2a;
}
.agenda-item.highlighted {
  background-color: rgba(0, 150, 110, 0.1);
  border-left: 3px solid #00966E;
}
.agenda-item .agenda-time {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}
.agenda-item .agenda-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.sponsorship-section {
  background-color: #0f0f0f;
  padding-bottom: 170px;
}

.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.sponsorship-card {
  background-color: #ffffff;
  border: 2px solid #E85124;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.sponsorship-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.sponsorship-card h3 {
  font-size: 1.5rem;
  margin: 0 0 25px 0;
  color: #E85124;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.sponsorship-card .sponsorship-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #000000;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 25px;
  text-align: left;
  display: block;
  line-height: 1.1;
  font-family: "Gilroy", sans-serif;
}
.sponsorship-card .sponsorship-includes .includes-label {
  background-color: #E85124;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sponsorship-card .sponsorship-includes ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.sponsorship-card .sponsorship-includes ul li {
  margin-bottom: 10px;
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.95rem;
  padding-left: 0;
}

.sponsorship-page .sponsorship-hero-section {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}
.sponsorship-page .sponsorship-hero-section::before {
  opacity: 0.08;
}
.sponsorship-page .sponsorship-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.sponsorship-page .sponsorship-hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #E85124;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .sponsorship-page .sponsorship-hero-title {
    font-size: 2.5rem;
  }
}
.sponsorship-page .sponsorship-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .sponsorship-page .sponsorship-hero-subtitle {
    font-size: 1.1rem;
  }
}
.sponsorship-page .section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  line-height: 1.6;
  text-align: center;
}

.sponsorship-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsorship-section .content-wrapper {
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sponsorship-section .section-header {
  text-align: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  gap: 0;
}
.sponsorship-section .section-header .section-subtitle {
  max-width: 800px;
  margin: 15px auto 0;
}

.sponsorship-packages-content {
  max-width: 900px;
  margin: 50px auto 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .sponsorship-packages-content {
    margin: 40px auto 50px;
    gap: 35px;
  }
}

.sponsorship-package-block {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 81, 36, 0.2);
}
.sponsorship-package-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sponsorship-package-block .package-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}
.sponsorship-package-block .package-badge.platinum {
  background: linear-gradient(135deg, #b8b8b8 0%, #d4d4d4 100%);
  color: #1a1a1a;
}
.sponsorship-package-block .package-heading {
  font-size: 2rem;
  margin: 0 0 20px 0;
  color: #E85124;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Gilroy", sans-serif;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .sponsorship-package-block .package-heading {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .sponsorship-package-block .package-heading {
    font-size: 1.5rem;
  }
}
.sponsorship-package-block .package-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .sponsorship-package-block .package-description {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.partner-cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 40px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .partner-cta-wrapper {
    margin: 50px 0 30px;
    padding: 30px 0;
  }
}

.partner-with-us-button {
  display: inline-block;
  background: linear-gradient(135deg, #E85124 0%, rgb(205.6066115702, 63.841322314, 21.5933884298) 100%);
  color: #ffffff;
  border: 3px solid #E85124;
  padding: 24px 80px;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(232, 81, 36, 0.5), 0 0 40px rgba(232, 81, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: "Gilroy", sans-serif;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.partner-with-us-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.partner-with-us-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232, 81, 36, 0.6), 0 0 60px rgba(232, 81, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgb(234.423553719, 99.3347107438, 59.076446281) 0%, #E85124 100%);
  border-color: rgb(236.847107438, 117.6694214876, 82.152892562);
}
.partner-with-us-button:hover::before {
  left: 100%;
}
.partner-with-us-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 30px rgba(232, 81, 36, 0.5), 0 0 40px rgba(232, 81, 36, 0.3);
}
@media (max-width: 768px) {
  .partner-with-us-button {
    padding: 20px 50px;
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}
@media (max-width: 480px) {
  .partner-with-us-button {
    padding: 18px 40px;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
}

.sponsorship-swiper {
  margin: 50px auto 0;
  padding: 40px 0 100px;
  overflow: visible;
  position: relative;
  width: 100%;
  max-width: 1300px;
  min-height: 670px;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .sponsorship-swiper {
    padding: 20px 0 80px;
  }
}
@media (max-width: 768px) {
  .sponsorship-swiper {
    padding: 10px 0 70px;
    max-width: 100%;
  }
}
.sponsorship-swiper .swiper-wrapper {
  align-items: center;
  padding-bottom: 20px;
  display: flex;
  padding-top: 50px;
}
.sponsorship-swiper .swiper-container {
  overflow: visible;
  width: 100%;
}
.sponsorship-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, filter 0.6s ease;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .sponsorship-swiper .swiper-slide {
    padding: 0 20px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .sponsorship-swiper .swiper-slide {
    max-width: 400px;
    padding: 0 10px;
    flex-shrink: 0;
  }
}
.sponsorship-swiper .swiper-slide .sponsorship-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease, box-shadow 0.6s ease;
  transform-origin: center;
  margin-bottom: 0;
  min-height: 540px;
  max-height: 540px;
  height: 540px;
}
.sponsorship-swiper .swiper-slide .sponsorship-card h3 {
  transition: all 0.6s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-price {
  transition: all 0.6s ease;
  white-space: nowrap;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-includes {
  flex: 1;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-includes ul li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-badge.platinum {
  background: linear-gradient(135deg, #b8b8b8 0%, #d4d4d4 100%);
  color: #1a1a1a;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a1a;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-button {
  background: linear-gradient(135deg, #E85124 0%, rgb(219.4524793388, 68.1404958678, 23.0475206612) 100%);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 81, 36, 0.3);
  font-family: "Gilroy", sans-serif;
  width: 100%;
  margin: auto auto 0;
  max-width: fit-content;
  position: relative;
  z-index: 200;
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 81, 36, 0.5);
  background: linear-gradient(135deg, rgb(234.423553719, 99.3347107438, 59.076446281) 0%, #E85124 100%);
}
.sponsorship-swiper .swiper-slide .sponsorship-card .sponsorship-button:active {
  transform: translateY(0);
}
.sponsorship-swiper .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.sponsorship-swiper .swiper-slide.swiper-slide-active .sponsorship-card {
  filter: brightness(1.1) contrast(1.05);
  border-color: rgba(232, 81, 36, 0.8);
}
.sponsorship-swiper .swiper-slide.swiper-slide-active .sponsorship-card h3 {
  color: #E85124;
  text-shadow: 0 0 10px rgba(232, 81, 36, 0.3);
}
.sponsorship-swiper .swiper-slide.swiper-slide-active .sponsorship-card .sponsorship-price {
  filter: brightness(1.15);
}
.sponsorship-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
  filter: brightness(0.7) saturate(0.6);
}
.sponsorship-swiper .swiper-slide:not(.swiper-slide-active) .sponsorship-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.sponsorship-swiper .swiper-pagination {
  display: none;
}
.sponsorship-swiper .swiper-button-next,
.sponsorship-swiper .swiper-button-prev {
  width: 55px;
  height: 55px;
  background-color: rgba(232, 81, 36, 0.9);
  border-radius: 50%;
  color: #ffffff;
  margin-top: 0;
  top: auto;
  bottom: 0;
  transition: all 0.3s ease;
  z-index: 200;
  position: absolute;
}
.sponsorship-swiper .swiper-button-next:hover,
.sponsorship-swiper .swiper-button-prev:hover {
  background-color: #E85124;
}
.sponsorship-swiper .swiper-button-next:after,
.sponsorship-swiper .swiper-button-prev:after {
  font-size: 22px;
  font-weight: 900;
}
.sponsorship-swiper .swiper-button-next.swiper-button-disabled,
.sponsorship-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}
@media (max-width: 768px) {
  .sponsorship-swiper .swiper-button-next,
  .sponsorship-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    bottom: 10px;
  }
  .sponsorship-swiper .swiper-button-next:after,
  .sponsorship-swiper .swiper-button-prev:after {
    font-size: 18px;
  }
}
.sponsorship-swiper .swiper-button-prev {
  left: 50%;
  transform: translateX(-80px);
}
.sponsorship-swiper .swiper-button-next {
  left: 50%;
  transform: translateX(25px);
}

.why-sponsor-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.why-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .why-sponsor-grid {
    grid-template-columns: 1fr;
  }
}

.why-sponsor-card {
  background-color: #2a2a2a;
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.why-sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #E85124;
}
.why-sponsor-card .why-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}
.why-sponsor-card h3 {
  font-size: 1.4rem;
  color: #E85124;
  margin: 0 0 15px 0;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
}
.why-sponsor-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.sponsorship-cta-section {
  background: linear-gradient(135deg, rgba(232, 81, 36, 0.15) 0%, rgba(15, 15, 15, 0.95) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.sponsorship-cta-section::before {
  opacity: 0.05;
}

.sponsorship-cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.sponsorship-cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .sponsorship-cta-content h2 {
    font-size: 2rem;
  }
}
.sponsorship-cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sponsorship-cta-content p {
    font-size: 1.1rem;
  }
}
.sponsorship-cta-content .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #E85124 0%, rgb(219.4524793388, 68.1404958678, 23.0475206612) 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(232, 81, 36, 0.4);
  font-family: "Gilroy", sans-serif;
}
.sponsorship-cta-content .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 81, 36, 0.6);
  background: linear-gradient(135deg, rgb(234.423553719, 99.3347107438, 59.076446281) 0%, #E85124 100%);
}
.sponsorship-cta-content .cta-button:active {
  transform: translateY(-1px);
}

.partners-section {
  background-color: #1a1a1a;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.partner-logo {
  text-align: center;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.partner-logo:hover {
  transform: translateY(-3px);
}
.partner-logo img {
  max-width: 100%;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.founders-section {
  background-color: #0f0f0f;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.founder-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.founder-card .founder-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #0f0f0f;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
}
.founder-card .founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card .founder-name {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  color: #ffffff;
  font-weight: 600;
  border-bottom: 2px solid #0E5BAB;
  padding-bottom: 10px;
  display: inline-block;
}
.founder-card .founder-titles {
  margin-bottom: 18px;
}
.founder-card .founder-titles p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.founder-card .founder-bio {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.team-section {
  background-color: #1a1a1a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.team-card .team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #0f0f0f;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
}
.team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card .team-name {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  color: #ffffff;
  font-weight: 600;
}
.team-card .team-title {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 0.95rem;
}
.team-card .team-bio {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.highlights-section {
  background-color: #0f0f0f;
}

.highlights-text {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .highlights-text {
    margin-bottom: 30px;
  }
}
.highlights-text h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}
.highlights-text ul {
  list-style: none;
  padding: 0;
}
.highlights-text ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.highlights-text ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00966E;
  font-size: 1.5rem;
  line-height: 1;
}
.highlights-text ul li .highlight-green {
  color: #00966E;
  font-weight: 600;
}

.highlights-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .highlights-media-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.highlights-video-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  align-self: start;
  cursor: pointer;
}
@media (max-width: 768px) {
  .highlights-video-wrapper {
    border-radius: 8px;
  }
}

.highlights-video {
  width: 100%;
  height: auto;
  display: block;
  background-color: #000000;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .highlights-video {
    border-radius: 8px;
  }
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, background-color 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .video-play-overlay {
    border-radius: 8px;
  }
}
.highlights-video-wrapper.playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}
.highlights-video-wrapper:hover .video-play-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.video-play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E85124 0%, rgb(196.3760330579, 60.9752066116, 20.6239669421) 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(232, 81, 36, 0.5), 0 0 40px rgba(232, 81, 36, 0.3);
  position: relative;
}
.video-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(232, 81, 36, 0.6), 0 0 60px rgba(232, 81, 36, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}
.video-play-button:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}
.video-play-button:active {
  transform: scale(1.05);
}
.video-play-button .play-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
  margin-left: 4px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.video-play-button:hover .play-icon {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .video-play-button {
    width: 70px;
    height: 70px;
  }
  .video-play-button .play-icon {
    width: 28px;
    height: 28px;
  }
}

.highlights-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  max-height: fit-content;
}
.highlights-images .highlight-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
  position: relative;
  flex: 0 0 calc(50% - 10px);
}
.highlights-images .highlight-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.highlights-images .highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.why-attend-section {
  background-color: #0f0f0f;
  padding: 80px 0;
  text-align: center;
}
.why-attend-section .section-header {
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}
.why-attend-section .why-attend-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 0;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .why-attend-section .why-attend-subtitle {
    font-size: 1.1rem;
    margin: 15px auto 0;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .why-attend-section {
    padding: 60px 0;
  }
}

.why-attend-cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 0;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .why-attend-cta-wrapper {
    margin: 40px 0 0;
  }
}

.download-pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E85124 0%, rgb(205.6066115702, 63.841322314, 21.5933884298) 100%);
  color: #ffffff;
  border: 3px solid #E85124;
  padding: 20px 60px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(232, 81, 36, 0.5), 0 0 40px rgba(232, 81, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: "Gilroy", sans-serif;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.download-pdf-button .button-text {
  position: relative;
  z-index: 2;
}
.download-pdf-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
}
.download-pdf-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232, 81, 36, 0.6), 0 0 60px rgba(232, 81, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgb(234.423553719, 99.3347107438, 59.076446281) 0%, #E85124 100%);
  border-color: rgb(236.847107438, 117.6694214876, 82.152892562);
  color: #ffffff;
}
.download-pdf-button:hover .button-text {
  color: #ffffff;
}
.download-pdf-button:hover::before {
  left: 100%;
}
.download-pdf-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 30px rgba(232, 81, 36, 0.5), 0 0 40px rgba(232, 81, 36, 0.3);
  color: #ffffff;
}
.download-pdf-button:active .button-text {
  color: #ffffff;
}
@media (max-width: 768px) {
  .download-pdf-button {
    padding: 18px 45px;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 480px) {
  .download-pdf-button {
    padding: 16px 35px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.pricing-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 35px;
}
.pricing-title .pricing-title-ru {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .pricing-title .pricing-title-ru {
    font-size: 1.8rem;
  }
}
.pricing-title .pricing-title-en {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .pricing-title .pricing-title-en {
    font-size: 1.2rem;
  }
}

.pricing-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pricing-countdown .countdown-label-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.pricing-countdown .countdown-timer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pricing-countdown .countdown-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FCD116;
  line-height: 1;
  font-family: "Gilroy", sans-serif;
  white-space: nowrap;
}
.pricing-countdown .countdown-unit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-right: 5px;
  white-space: nowrap;
}
.pricing-countdown .countdown-separator {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FCD116;
  line-height: 1;
  margin: 0 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pricing-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.pricing-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E85124 0%, rgba(232, 81, 36, 0.5) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
  border-color: rgba(232, 81, 36, 0.3);
}
.pricing-card:hover::after {
  opacity: 1;
}
.pricing-card.pricing-card-vip {
  background: linear-gradient(180deg, #1f1f1a 0%, #1a1a15 100%);
  border-color: rgba(252, 209, 22, 0.1);
}
.pricing-card.pricing-card-vip::after {
  background: linear-gradient(90deg, #FCD116 0%, rgba(252, 209, 22, 0.5) 100%);
}
.pricing-card.pricing-card-vip:hover {
  border-color: rgba(252, 209, 22, 0.4);
  box-shadow: 0 16px 48px rgba(252, 209, 22, 0.25);
}
.pricing-card.pricing-card-vip .pricing-benefits-title {
  color: #fff !important;
}

.pricing-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: #FCD116;
  color: #000000;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Gilroy", sans-serif;
  box-shadow: none;
  z-index: 10;
}

.pricing-header-card {
  padding: 50px 40px 35px;
  background: transparent;
  text-align: center;
  border-bottom: none;
}

.pricing-package-name {
  font-size: 26px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 18px;
  font-family: "Gilroy", sans-serif;
}

.pricing-price-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .pricing-price-wrapper {
    gap: 20px;
  }
}

.pricing-price-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Gilroy", sans-serif;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: "Gilroy", sans-serif;
  text-shadow: none;
}
.pricing-card-vip .pricing-price {
  color: #ffffff;
}
@media (max-width: 768px) {
  .pricing-price {
    font-size: 2.5rem;
  }
}

.pricing-door-price {
  text-decoration: line-through;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
@media (max-width: 768px) {
  .pricing-door-price {
    font-size: 2rem;
  }
}

.pricing-savings {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  letter-spacing: 1px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .pricing-savings {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
}

.pricing-day-selector {
  padding: 25px 40px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #fff;
}
@media (max-width: 768px) {
  .pricing-day-selector {
    padding: 20px 25px;
    margin-top: 15px;
  }
}

.day-selector-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #DF3A1C;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 45px;
  font-family: "Gilroy", sans-serif;
  text-align: center;
}

.day-selector-options {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.day-option {
  cursor: pointer;
  flex: 1;
  max-width: 120px;
}
.day-option input[type=radio] {
  display: none;
}
.day-option .day-label {
  display: block;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  font-family: "Gilroy", sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0;
}
.day-option .day-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.day-option.active .day-label {
  background: rgba(232, 81, 36, 0.15);
  border-color: #E85124;
  color: #DF3A1C;
  box-shadow: 0 0 15px rgba(232, 81, 36, 0.3);
}
@media (max-width: 768px) {
  .day-option {
    max-width: none;
  }
  .day-option .day-label {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

.pricing-duration {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: "Gilroy", sans-serif;
  text-transform: none;
  letter-spacing: 0.5px;
}

.pricing-benefits {
  padding: 30px 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-benefits-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-family: "Gilroy", sans-serif;
}

.pricing-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
}
.pricing-benefits-list li:last-child {
  margin-bottom: 0;
}
.pricing-benefits-list li.bonus-option {
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.pricing-benefits-list li.bonus-option::before {
  content: "→";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.6);
}
.pricing-benefits-list li .benefit-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #E85124;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2px;
}
.pricing-card-vip .pricing-benefits-list li .benefit-icon {
  color: #FCD116;
}
.pricing-benefits-list li .benefit-icon.bonus-icon {
  background: none;
  font-size: 1.1rem;
  color: #FCD116;
}

.pricing-button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 16px 40px;
  margin: 0 40px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Gilroy", sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
.pricing-button:hover {
  background: #E85124;
  color: #ffffff;
  transform: none;
}
.pricing-button:active {
  background: rgba(255, 255, 255, 0.8);
}
.pricing-button:focus {
  background: #E85124;
  color: #ffffff;
  outline: none;
}
.pricing-button.pricing-button-vip {
  background: #FCD116;
  color: #000000;
}
.pricing-button.pricing-button-vip:hover {
  background: #E85124;
  color: #ffffff;
}
.pricing-button.pricing-button-vip:active {
  background: rgba(252, 209, 22, 0.8);
}
.pricing-button.pricing-button-vip:focus {
  background: #E85124;
  color: #ffffff;
  outline: none;
}

.pricing-grid .pricing-card {
  --pricing-bg: #1a1a1a;
  --pricing-surface: rgba(0, 0, 0, 0.2);
  --pricing-text: #ffffff;
  --pricing-muted: rgba(255, 255, 255, 0.55);
  --pricing-accent: #DF3A1C;
  --pricing-on-accent: #ffffff;
  background: var(--pricing-bg);
  border: 3px solid rgba(255, 255, 255, 0.18);
}
.pricing-grid .pricing-card::after {
  display: none;
}
.pricing-grid .pricing-card--standard {
  --pricing-bg: #ffffff;
  --pricing-surface: rgba(255, 255, 255, 0.75);
  --pricing-text: #111111;
  --pricing-muted: rgba(0, 0, 0, 0.45);
  --pricing-accent: #DF3A1C;
  --pricing-on-accent: #ffffff;
  border-color: rgba(223, 58, 28, 0.85);
}
.pricing-grid .pricing-card--standard-plus {
  --pricing-bg: #FCD116;
  --pricing-surface: rgba(255, 255, 255, 0.18);
  --pricing-text: #111111;
  --pricing-muted: rgba(0, 0, 0, 0.5);
  --pricing-accent: #DF3A1C;
  --pricing-on-accent: #ffffff;
  border-color: rgba(223, 58, 28, 0.85);
}
.pricing-grid .pricing-card--vip {
  --pricing-bg: #DF3A1C;
  --pricing-surface: rgba(0, 0, 0, 0.2);
  --pricing-text: #ffffff;
  --pricing-muted: rgba(255, 255, 255, 0.7);
  --pricing-accent: #ffffff;
  --pricing-on-accent: #DF3A1C;
  border-color: rgba(255, 255, 255, 0.85);
}

.pricing-save-ribbon {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 136px;
  height: 140px;
  z-index: 20;
  pointer-events: none;
}
.pricing-save-ribbon img {
  display: block;
  width: 136px;
  height: 140px;
}

.pricing-header-card {
  color: var(--pricing-text);
}

.pricing-package-name {
  color: rgba(0, 0, 0, 0.45);
}
.pricing-card--vip .pricing-package-name {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-card--standard-plus .pricing-package-name, .pricing-card--standard .pricing-package-name {
  color: rgba(0, 0, 0, 0.55);
}

.pricing-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.pricing-early-bird-badge {
  display: inline-block;
  background: var(--pricing-accent);
  color: var(--pricing-on-accent);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.pricing-price--early {
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--pricing-accent);
}
.pricing-card--vip .pricing-price--early {
  color: #ffffff;
}
@media (max-width: 768px) {
  .pricing-price--early {
    font-size: 4.2rem;
  }
}

.pricing-other-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.pricing-other-label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 6px;
}
.pricing-card--vip .pricing-other-label {
  color: rgba(255, 255, 255, 0.75);
}
.pricing-card--standard-plus .pricing-other-label, .pricing-card--standard .pricing-other-label {
  color: rgba(0, 0, 0, 0.45);
}

.pricing-price--normal,
.pricing-price--door {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
}

.pricing-price--normal {
  color: rgba(0, 0, 0, 0.35);
}
.pricing-card--vip .pricing-price--normal {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-price--door {
  color: rgba(0, 0, 0, 0.35);
}
.pricing-card--vip .pricing-price--door {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-duration {
  color: var(--pricing-muted);
}

.pricing-benefits {
  background: var(--pricing-surface);
}

.pricing-benefits-title {
  color: #000;
}

.pricing-benefits-list li {
  color: var(--pricing-text);
}
.pricing-card--standard .pricing-benefits-list li, .pricing-card--standard-plus .pricing-benefits-list li {
  color: rgba(0, 0, 0, 0.8);
}

.pricing-benefits-list li .benefit-icon {
  color: var(--pricing-accent);
}

.pricing-card--vip .pricing-benefits-list li .benefit-icon {
  color: #ffffff;
}

.pricing-grid .pricing-button {
  background: var(--pricing-accent);
  color: var(--pricing-on-accent);
  border: 2px solid rgba(0, 0, 0, 0.15);
}
.pricing-grid .pricing-button:hover {
  filter: brightness(0.95);
}

.contacts-section {
  background-color: #1a1a1a;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
  justify-items: center;
}
@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.contact-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #0f0f0f;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.contact-image:hover {
  border-color: #FCD116;
  transform: scale(1.05);
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-name {
  font-size: 1.25rem;
  margin: 0 0 20px 0;
  color: #ffffff;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
}

.contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact-icon-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.contact-icon-link svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.contact-icon-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: #FCD116;
}
.contact-icon-link:nth-child(1):hover {
  background-color: rgba(14, 91, 171, 0.2);
  color: #0E5BAB;
  border-color: #0E5BAB;
}
.contact-icon-link:nth-child(2):hover {
  background-color: rgba(14, 91, 171, 0.2);
  color: #0E5BAB;
  border-color: #0E5BAB;
}
.contact-icon-link:nth-child(3):hover {
  background-color: rgba(0, 150, 110, 0.2);
  color: #00966E;
  border-color: #00966E;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 18px 20px;
  background-color: #2a2a2a;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.social-link .social-icon {
  font-size: 1.25rem;
  color: #FCD116;
}
.social-link a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.social-link a:hover {
  color: #FCD116;
}

.side-navigation {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .side-navigation {
    display: none;
  }
}

.side-nav-container {
  position: relative;
  background-color: transparent;
  padding: 0;
}

.side-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.side-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}
.side-nav-link .nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: block;
}
.side-nav-link:hover .nav-dot {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
.side-nav-link.active .nav-dot {
  background-color: #E85124;
  width: 12px;
  height: 12px;
  transform: scale(1.3);
}

.countdown {
  background-color: #2a2a2a;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .countdown-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.countdown-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.countdown-label-text {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 400;
  white-space: nowrap;
}

.countdown-timer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.countdown-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  font-family: "Gilroy", sans-serif;
  white-space: nowrap;
}

.countdown-unit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-right: 5px;
  white-space: nowrap;
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0 2px;
}

.countdown-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .countdown-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }
}

.register-button {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Gilroy", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.register-button .button-arrow {
  font-size: 1.1rem;
  line-height: 1;
}
.register-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #E85124;
  color: #E85124;
  transform: translateX(3px);
}
.register-button:hover .button-arrow {
  transform: translateX(3px);
}
.register-button:active {
  transform: translateX(1px);
}

.affiliate-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.affiliate-link .link-underline {
  text-decoration: underline;
}
.affiliate-link:hover {
  color: #E85124;
}
.affiliate-link:hover .link-underline {
  color: #E85124;
}
@media (max-width: 768px) {
  .affiliate-link {
    font-size: 0.85rem;
  }
}

.registration-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.registration-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: #2a2a2a;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.registration-modal.active .modal-content {
  transform: scale(1);
}
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #E85124;
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-align: center;
  font-family: "Gilroy", sans-serif;
}
@media (max-width: 768px) {
  .modal-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group select,
.form-group textarea {
  background-color: rgba(26, 26, 26, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Gilroy", sans-serif;
  transition: all 0.3s ease;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E85124;
  background-color: rgba(26, 26, 26, 0.7);
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group select {
  cursor: pointer;
  padding: 8px 15px;
}
.form-group select option {
  background-color: #2a2a2a;
  color: #ffffff;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-group .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #E85124;
}
.checkbox-group .checkbox-label span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-submit-button {
  background: linear-gradient(135deg, #E85124 0%, rgb(219.4524793388, 68.1404958678, 23.0475206612) 100%);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 81, 36, 0.4);
  font-family: "Gilroy", sans-serif;
  margin-top: 10px;
}
.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 81, 36, 0.6);
  background: linear-gradient(135deg, rgb(234.423553719, 99.3347107438, 59.076446281) 0%, #E85124 100%);
}
.form-submit-button:active {
  transform: translateY(0);
}

.registration-form-wrapper .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=text],
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=email],
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=tel],
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=url],
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=number],
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=date],
.registration-form-wrapper .wpcf7 .wpcf7-form select,
.registration-form-wrapper .wpcf7 .wpcf7-form textarea {
  background-color: rgba(26, 26, 26, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Gilroy", sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=text]:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=email]:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=tel]:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=url]:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=number]:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=date]:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form select:focus,
.registration-form-wrapper .wpcf7 .wpcf7-form textarea:focus {
  outline: none;
  border-color: #E85124;
  background-color: rgba(26, 26, 26, 0.7);
}
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=text]::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=email]::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=tel]::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=url]::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=number]::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=date]::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form select::placeholder,
.registration-form-wrapper .wpcf7 .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.registration-form-wrapper .wpcf7 .wpcf7-form select {
  cursor: pointer;
  padding: 8px 15px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form select option {
  background-color: #2a2a2a;
  color: #ffffff;
}
.registration-form-wrapper .wpcf7 .wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=checkbox],
.registration-form-wrapper .wpcf7 .wpcf7-form input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #E85124;
  margin-right: 10px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-list-item {
  margin: 0 0 10px 0;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-list-item label {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, #E85124 0%, rgb(219.4524793388, 68.1404958678, 23.0475206612) 100%);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 81, 36, 0.4);
  font-family: "Gilroy", sans-serif;
  margin-top: 10px;
  width: 100%;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 81, 36, 0.6);
  background: linear-gradient(135deg, rgb(234.423553719, 99.3347107438, 59.076446281) 0%, #E85124 100%);
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-validation-errors {
  background-color: rgba(255, 107, 107, 0.1);
  border: 2px solid #ff6b6b;
  border-radius: 8px;
  padding: 15px;
  color: #ff6b6b;
  margin-top: 20px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
  background-color: rgba(0, 150, 110, 0.1);
  border: 2px solid #00966E;
  border-radius: 8px;
  padding: 15px;
  color: #00966E;
  margin-top: 20px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-spinner {
  margin-left: 10px;
}
.registration-form-wrapper .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.wpcf7-sponsorship p:nth-of-type(1),
.wpcf7-sponsorship p:nth-of-type(2) {
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
}
.wpcf7-sponsorship p:nth-of-type(2) {
  margin-left: 20px;
}
.wpcf7-sponsorship p:nth-of-type(3),
.wpcf7-sponsorship p:nth-of-type(4) {
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
}
.wpcf7-sponsorship p:nth-of-type(4) {
  margin-left: 20px;
}
.wpcf7-sponsorship .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  width: calc(50% - 10px);
  margin: 5px 0;
  vertical-align: top;
}
@media (max-width: 768px) {
  .wpcf7-sponsorship p:nth-of-type(1),
  .wpcf7-sponsorship p:nth-of-type(2),
  .wpcf7-sponsorship p:nth-of-type(3),
  .wpcf7-sponsorship p:nth-of-type(4) {
    display: block;
    width: 100%;
    margin-left: 0 !important;
  }
  .wpcf7-sponsorship .wpcf7-checkbox .wpcf7-list-item {
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content-article {
    padding: 30px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .event-dates {
    font-size: 1.5rem !important;
  }
  .day-label {
    font-size: 3rem;
    margin: -20px 0 20px 0;
  }
  .goal-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .goal-number {
    font-size: 4rem;
  }
  .goal-title {
    font-size: 1.5rem;
  }
  .goal-description {
    padding: 20px;
  }
  .goal-description p {
    font-size: 1rem;
  }
  .goals-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1.05);
  }
  .goals-swiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.95);
  }
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .agenda-item .agenda-time {
    font-size: 0.875rem;
  }
  .founders-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .sponsorship-grid {
    grid-template-columns: 1fr;
  }
  .objectives-grid {
    grid-template-columns: 1fr;
  }
  .highlights-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .countdown {
    padding: 15px 0;
  }
  .countdown-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .countdown-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .countdown-timer {
    flex-wrap: wrap;
    gap: 5px;
  }
  .countdown-number {
    font-size: 1.2rem;
  }
  .countdown-unit {
    font-size: 0.75rem;
  }
  .countdown-separator {
    font-size: 1.2rem;
  }
  .countdown-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .register-button {
    width: 100%;
    justify-content: center;
  }
}
.footer-section {
  background-color: #0f0f0f;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-branding .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-branding .footer-logo img {
  height: 60px;
  width: auto;
}
.footer-branding .footer-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
  font-weight: 500;
  letter-spacing: 1px;
}
.footer-branding .footer-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-column .footer-column-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E85124;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Gilroy", sans-serif;
}
.footer-column .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column .footer-menu li {
  margin-bottom: 12px;
}
.footer-column .footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-column .footer-menu li a:hover {
  color: #E85124;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.social-link-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.social-link-icon:hover {
  background-color: rgba(232, 81, 36, 0.2);
  color: #E85124;
  border-color: #E85124;
  transform: translateY(-3px);
}

.footer-copyright p {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-copyright p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-copyright p a:hover {
  color: #E85124;
}
.footer-copyright .footer-org {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/*# sourceMappingURL=main.css.map */
