:root {
  --blue: #0057b8;
  --blue-2: #006ee6;
  --blue-dark: #003a8f;
  --navy: #061b3d;
  --text: #0b1f3f;
  --muted: #5a6c86;
  --line: #dbe7f5;
  --white: #fff;
  --shadow: 0 8px 15px rgba(8, 35, 78, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f7fbff 58%, #fff 100%);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.container {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}
.header {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0.16) 80%,
    rgba(255, 255, 255, 0.12) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  /* -webkit-backdrop-filter: blur(14px); */
  /* backdrop-filter: blur(14px); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  z-index: 1000;

  transition:
    width 0.35s ease,
    border-radius 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    top 0.35s ease;
}
.header.scrolled {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 190px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #071b36;
}
.nav-link {
  position: relative;
  padding: 4px 0;
  font-weight: 800;
}
.nav-menu a:hover {
  color: var(--blue);
}
.nav-register {
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 87, 184, 0.22);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.language::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
  margin-left: 5px;
}
.menu-btn {
  display: none;
  background: var(--blue);
  border: 0;
  border-radius: 10px;
  width: 42px;
  height: 38px;
  padding: 9px;
  transition: all 0.25s;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 87, 184, 0.24);
}
.btn-blue:hover {
  transform: translateY(-2px);
}
.btn-white-outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}
.btn-white-outline:hover {
  background: #fff;
  color: var(--blue);
}
.btn-small {
  min-height: 46px;
  padding: 0 22px;
}
.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(5, 20, 48, 0.98) 0%,
      rgba(5, 28, 65, 0.92) 40%,
      rgba(0, 87, 184, 0.22) 100%
    ),
    linear-gradient(120deg, #061b3d 0%, #003a8f 70%, #0057b8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 42%,
    rgba(21, 139, 255, 0.45),
    transparent 32%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 4;
}
.kicker {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 48px);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}
.hero h1 span {
  color: #32a0ff;
}
.hero-text {
  margin: 24px 0 0;
  max-width: 465px;
  font-size: 16px;
  line-height: 1.62;
  color: #ecf6ff;
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
  margin: 36px 0 28px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.meta-icon {
  font-size: 28px;
  color: #57b6ff;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.play-link {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.play-link span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.hero-image {
  position: absolute;
  right: -115px;
  bottom: 0;
  top: 0;
  width: 63vw;
  display: flex;
  align-items: flex-end;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  opacity: 0.98;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 18%,
    black 100%
  );
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
}
.hero-waves {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  pointer-events: none;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.hero-waves-top {
  top: 0;
  height: 120px;
  opacity: 0.8;
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.42) 30%,
      rgba(255, 255, 255, 0.42) 60%,
      rgba(255, 255, 255, 0.12) 70%,
      rgba(255, 255, 255, 0.06) 80%,
      rgba(255, 255, 255, 0) 100%
    ),
    /* url("./assets/creative-waves-blue-background-dynamic-shapes-composition-free-vector.jpg") */
    url("./assets/stil.png");
}
.hero-waves-bottom {
  bottom: 0;
  height: 150px;
  opacity: 0.72;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23006ee6' stroke-width='1.4' opacity='.72'%3E%3Cpath d='M0 120 C280 35 560 165 830 95 S1240 30 1600 88'/%3E%3Cpath d='M0 136 C280 51 560 181 830 111 S1240 46 1600 104'/%3E%3Cpath d='M0 152 C280 67 560 197 830 127 S1240 62 1600 120'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-section {
  position: relative;
  z-index: 8;
  margin-top: -54px;
}
.carousel-wrap {
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.speakers-grid {
  flex-wrap: nowrap !important;
}

.speaker-card {
  flex: 0 0 calc((100% - 90px) / 6);
  min-width: 0;
}
.stats-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child {
  border-right: 0;
}
.stat-icon {
  font-size: 32px;
  color: var(--blue);
}
.stat-item strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue);
  font-weight: 700;
}
.stat-item span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  color: #132746;
}
.section-bg-waves {
  position: relative;
  overflow: hidden;
}
.section-bg-waves::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 15%;
  height: 350px;
  opacity: 0.16;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230057B8' stroke-width='1.1' opacity='.6'%3E%3Cpath d='M0 210 C250 90 500 320 790 190 S1280 70 1600 180'/%3E%3Cpath d='M0 225 C250 105 500 335 790 205 S1280 85 1600 195'/%3E%3Cpath d='M0 240 C250 120 500 350 790 220 S1280 100 1600 210'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.horizontal-line {
  height: 2px;
  width: 100%;
  background: #068cdd29;
}
.section-title-row h2,
.partners-section h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  width: max-content;
  color: var(--blue-2);
  width: stretch;
  max-width: max-content;
}
.section-title-row a {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: stretch;
  max-width: max-content;
}
.about-section {
  padding: 76px 0 38px;
}
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.section-imgg {
  width: 50px;
  min-width: 50px;
}

.card-imgg {
  width: 60px;
  min-width: 60px;
}
.about-copy h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.about-copy p {
  font-size: 12px;
  line-height: 1.75;
  color: #263b58;
  max-width: 360px;
  margin-bottom: 28px;
}
.info-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 38px 28px;
  min-height: 250px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(8, 35, 78, 0.04);
  transition: 0.25s;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.line-icon {
  font-size: 48px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.27);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.info-card h3 {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.3;
}
.info-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #243853;
}
.speakers-section {
  padding: 38px 0 50px;
}
.carousel-wrap {
  position: relative;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.speaker-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 7px rgba(8, 35, 78, 0.06);
  transition: 0.25s;
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.speaker-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  background: #dce8f6;
}
.speaker-body {
  padding: 18px 18px 20px;
}
.speaker-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.12;
  color: var(--blue);
}
.speaker-body p,
.speaker-body span {
  margin: 0 0 7px;
  display: block;
  font-size: 13px;
  color: #172d4d;
}
.speaker-body span {
  color: #52647d;
}
.carousel-btn {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-size: 28px;
  z-index: 5;
  box-shadow: 0 8px 22px rgba(8, 35, 78, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.carousel-wrap {
  overflow: hidden;
  flex: 1;
}

.carousel-btn {
  position: static;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}
.carousel-btn.left {
  left: 21px;
  position: relative;
}
.carousel-btn.right {
  right: 21px;
  position: relative;
}

.carousel-btn:hover,
.carousel-btn:focus {
  background: var(--blue);
  color: #fff;
}
.news-section {
  padding: 38px 0 34px;
}
.news-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(8, 35, 78, 0.05);
  transition: 0.25s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.news-img {
  position: relative;
  height: 155px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dce8f6;
}
.date-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 54px;
  height: 64px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}
.date-badge p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.date-badge span {
  font-size: 11px;
  margin-top: 5px;
  text-transform: uppercase;
}
.news-body {
  padding: 20px 20px 22px;
}
.news-body h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 19px;
  line-height: 1.22;
}
.news-body p {
  margin: 0 0 18px;
  color: #314760;
  line-height: 1.58;
  font-size: 13px;
}
.news-body a {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: 0.25s;
}
.news-body a svg {
  width: 19px;
  height: auto;
  margin-left: 8px;
  transition: margin-left 0.25s;
}
.news-body a:hover svg {
  margin-left: 10px;
}
.organisers-section {
  padding: 22px 0 26px;
}
.organisers-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(8, 35, 78, 0.05);
}
.organiser-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}
.organiser-item:last-child {
  border-right: 0;
}
.organiser-item img {
  width: 86px;
  height: 78px;
  object-fit: contain;
  background: transparent;
}
.organiser-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #132746;
}
.coorganiser {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.coorganiser span {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}
.partners-section {
  padding: 0 0 30px;
}
.partners-section h2 {
  margin-bottom: 18px;
}
.partners-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.55fr 1.55fr 1.55fr 1.55fr;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(8, 35, 78, 0.045);
}
.partner-col {
  min-height: 104px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.partner-col:last-child {
  border-right: 0;
}
.partner-col span {
  color: var(--blue);
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 900;
}
.partner-col img {
  max-width: 140px;
  max-height: 44px;
  object-fit: contain;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.logo-row img {
  max-width: 90px;
}
.feedback-section {
  padding: 0 0 14px;
}
.feedback-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: linear-gradient(
    100deg,
    rgba(2, 22, 54, 0.96) 0%,
    rgba(0, 57, 143, 0.96) 60%,
    rgba(0, 87, 184, 0.7) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 10px 42px 10px 70px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 47, 112, 0.18);
  position: relative;
  justify-content: space-between;
}
.blockquote-span {
  position: absolute;
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
  z-index: 1;
  top: 20px;
  left: 20px;
}
.feedback-img-abs {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
}
.feedback-img-abs::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-left: -2px;
  background: linear-gradient(
    to right,
    rgb(10 59 133) 0%,
    rgb(10 59 133) 30%,
    rgba(10, 59, 133, 0.8) 60%,
    rgba(10, 59, 133, 0.5) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}
.feedback-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background-size: 75% 100%;
  opacity: 0.32;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1400 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2300a2ff' stroke-width='1.1' opacity='.8'%3E%3Cpath d='M0 110 C240 40 430 145 700 90 S1120 20 1400 80'/%3E%3Cpath d='M0 125 C240 55 430 160 700 105 S1120 35 1400 95'/%3E%3C/g%3E%3C/svg%3E");
}
.feedback-slider {
  position: relative;
  overflow: hidden;
  height: 150px;
  width: 600px;
}
.feedback-slide img {
  width: 97px;
  height: 98px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.75);
  background: #dce8f6;
  margin-bottom: auto;
}
.feedback-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
}
.feedback-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.feedback-slide.exit {
  opacity: 0;
  transform: translateX(-100%);
}
.quote-mark {
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 2;
  height: 100%;
}
.quote-mark span {
  position: absolute;
}
.feedback-card > img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.75);
  background: #dce8f6;
  position: relative;
  z-index: 2;
  margin-bottom: auto;
}
.feedback-text {
  position: relative;
  z-index: 2;
  margin-left: 18px;
  max-width: 350px;
}
.feedback-text p {
  margin: 0 0 16px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.48;
}
.feedback-arrow-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-text h3 {
  margin: 0 0 5px;
  font-size: 16px;
}
.feedback-text span {
  font-size: 12px;
  color: #dcecff;
}
.feedback-arrows {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  justify-content: center;
  right: 20%;
}
.feedback-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-city {
  height: 120px;
  position: relative;
  z-index: 2;
  opacity: 0.75;
  background:
    radial-gradient(circle at 70% 20%, #ffd45c 0 4px, transparent 5px),
    linear-gradient(
      180deg,
      transparent 54%,
      rgba(255, 255, 255, 0.22) 55%,
      transparent 56%
    );
}
.countdown-section {
  padding: 0 0 28px;
}
.countdown-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 138px;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 24px 44px;
  box-shadow: 0 12px 28px rgba(8, 35, 78, 0.05);
}
.countdown-copy h2 {
  margin: 0 0 8px;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 27px;
  letter-spacing: -0.02em;
}
.countdown-copy p {
  margin: 0;
  color: #346db6;
  font-size: 14px;
  line-height: 1.55;
}
.countdown-boxes {
  display: flex;
  gap: 8px;
}
.countdown-boxes div {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  border: 1px solid #bfd1e8;
  background: #f9fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.countdown-boxes strong {
  font-size: 28px;
  color: #0b2a60;
  line-height: 1;
}
.countdown-boxes span {
  margin-top: 7px;
  font-size: 9px;
  color: #253b59;
  text-transform: uppercase;
  font-weight: 900;
}
.footer {
  background: #061b3d;
  color: #fff;
  padding: 15px 0 3px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -50px;
  width: 700px;
  height: 190px;
  opacity: 0.25;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 850 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23008cff' stroke-width='1.2' opacity='.85'%3E%3Cpath d='M0 160 C200 20 380 245 850 75'/%3E%3Cpath d='M0 176 C200 36 380 261 850 91'/%3E%3C/g%3E%3C/svg%3E");
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.7fr 0.95fr 0.9fr 1.55fr 1.7fr;
  gap: 38px;
}
.footer-brand img {
  width: 175px;
}
.footer-brand {
  border-right: 1px solid #a9caff61;
}
.flex-p {
  display: flex !important;
}

.border-right-l {
  border-right: 1px solid #a9caff61;
}
.footer h3 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
}
.footer a,
.footer p {
  display: block;
  color: #dce8f8;
  font-size: 12px;
  line-height: 1.75;
  margin: 0 0 3px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  padding: 2px;
}
.newsletter {
  display: flex;
  margin-top: 14px;
}
.newsletter input {
  min-width: 0;
  flex: 1;
  height: 44px;
  background: #071a39;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 0;
  padding: 0 14px;
  border-radius: 6px 0 0 6px;
  outline: 0;
}
.nav-right-mobile {
  display: none;
  font-weight: 800;
}
.language-desktop {
  display: inline-flex;
}

/* Mobile */
@media (max-width: 1180px) {
  .nav-right-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .language-desktop {
    display: none;
  }
  .stat-item {
    flex-direction: column;
    width: 49%;
  }
  .stats-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .horizontal-line {
    display: none;
  }
  .speaker-card {
    flex: 0 0 calc((100% - 35px) / 3);
  }
}
.newsletter button {
  border: 0;
  height: 44px;
  padding: 0 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 0 6px 6px 0;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.copyright {
  position: relative;
  z-index: 2;
  margin: 24px 0 0;
  text-align: center;
  color: #9fb3cc;
  font-size: 12px;
}
@media (max-width: 1180px) {
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: display 0.4s ease;
  }
  .nav-menu.active {
    display: flex;
    border-radius: 35px;
    transition: display 0.4s ease;
  }
  .menu-btn {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    width: 80vw;
    opacity: 0.45;
  }
  .stats-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-copy {
    grid-column: 1/-1;
  }
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .organisers-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .feedback-card {
    grid-template-columns: 60px 86px 1fr;
  }
  .feedback-arrows {
    position: absolute;
    bottom: 5px;
    right: 10px;
  }
  .feedback-city {
    display: none;
  }
  .border-right-l-2 {
    border: none;
  }
  .countdown-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .organiser-item {
    justify-content: space-evenly;
  }
  .feedback-img-abs {
    display: none;
  }
  .feedback-text {
    margin-left: 0;
  }
  .feedback-text p {
    max-width: 200px;
    font-size: 10px;
  }
  .feedback-slide {
    justify-content: end;
  }
  .feedback-text h3 {
    font-size: 12px;
  }
  .feedback-text span {
    font-size: 9px;
  }
}
@media (max-width: 700px) {
  .speaker-card {
    flex: 0 0 calc(100% - 10px);
  }
  .container {
    width: min(100% - 28px, 1320px);
  }
  .header,
  .nav {
    height: 72px;
  }
  .footer-brand,
  .border-right-l {
    border: none;
  }
  .nav-menu {
    top: 72px;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand img {
    width: 145px;
  }
  .hero {
    min-height: 0;
  }
  .hero-inner {
    min-height: 0;
    padding: 100px 0 92px;
  }
  .menu-btn {
    padding-top: 5px;
  }
  .hero-image {
    right: -220px;
    width: 120vw;
  }
  .kicker {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-text {
    font-size: 15px;
  }
  .hero-meta {
    gap: 16px;
    font-size: 13px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .stats-section {
    margin-top: -36px;
  }
  .mob-foot {
    margin-right: auto;
  }
  .stats-card,
  .about-grid,
  .speakers-grid,
  .news-grid,
  .organisers-strip,
  .partners-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat-item,
  .organiser-item,
  .partner-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-item:last-child,
  .organiser-item:last-child,
  .partner-col:last-child {
    border-bottom: 0;
  }
  .section-title-row {
    align-items: center;
  }
  .about-section,
  .speakers-section,
  .news-section {
    padding: 42px 0;
  }
  .speaker-card img {
    height: 230px;
  }

  .feedback-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
  .feedback-card > img {
    margin: auto;
  }
  .countdown-card {
    padding: 24px 18px;
  }
  .countdown-boxes {
    flex-wrap: wrap;
  }
  .countdown-boxes div {
    width: calc(50% - 4px);
  }
}

@media (max-width: 1500px) {
      .header.scrolled{
     width: 95%;
}
}

@media (min-width: 900px) {
      .header.scrolled{
     width: 95%;
}
}


@media (min-width: 1500px) {
  .container {
    width: min(1700px, calc(100% - 64px));
  }
  .header.scrolled {
    max-width: 89%;
  }
}
