:root {
  --brand-blue: #061f45;
  --brand-orange: #f97316;
  --brand-orange-dark: #c2410c;
  --brand-light-blue: #cee3f4;
  --brand-dark: #061f45;

  --color-primary: #061f45;
  --color-on-primary: #FFFFFF;
  --color-secondary: #334155;
  --color-accent: var(--brand-orange);
  --color-accent-light: var(--brand-orange);
  --color-background: #e9e9e9;
  --color-foreground: #020617;
  --color-muted: #E8ECF1;
  --color-border: #E2E8F0;
  --color-card: #FFFFFF;
  --color-hero-bg: #061f45;
  --color-hero-text: #F8FAFC;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(2,6,23,0.06), 0 4px 12px rgba(2,6,23,0.08);
  --transition: 200ms ease;
  --container: 1440px;
  --header-height: 64px;
  --header-height-mobile: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  body {
    overscroll-behavior: none;
  }
}

.section {
  scroll-margin-top: 0;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 0;
  }

  .section {
    scroll-margin-top: 67px;
  }
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-light);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: relative;
  top: 0;
  background: #e9e9e973;
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid #ffffff8a;
  margin-top: -37px;
  z-index: 100;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 13px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav::before,
.main-nav::after {
  display: none;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn::after {
  content: '';
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22rotate(90%2012%2012)%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22rotate(90%2012%2012)%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
  display: inline-block;
  transition: transform var(--transition);
}

.lang-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 1100;
}

.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  color: var(--color-secondary);
  transition: background var(--transition);
}

.lang-menu li:hover,
.lang-menu li.active {
  background: var(--color-muted);
  color: var(--brand-blue);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: -6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-blue);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-orange-dark);
  color: #fff;
  border-color: var(--brand-orange-dark);
}

.btn-primary:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: 5vw;
  color: var(--color-primary);
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-secondary);
  max-width: 760px;
  margin-top: 12px;
}

.section-lead {
  font-size: 18px;
  color: var(--color-secondary);
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.light h2 {
  color: #fff;
}

.section-head.light .section-lead {
  color: #fff;
  opacity: 0.8;
}

.section-head.light + .section-lead {
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .section-lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}

.section-head.light .section-label {
  color: var(--color-accent-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  background: var(--brand-blue);
  color: var(--color-hero-text);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
  filter: contrast(1.1) saturate(1.2) brightness(0.9);
}

.hero-grid {
  position: absolute;
  inset: -20% 0;
  height: 140%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(800px) rotateX(60deg);
  transform-origin: center top;
  animation: gridMove 24s linear infinite;
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
  width: 100%;
}

.hero-grid-layout .container {
  width: 100%;
  max-width: var(--container);
}

.hero-text {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text > * {
  order: 0;
}

.hero-text > .hero-subtitle { order: 1; }
.hero-text > h1 { order: 2; }
.hero-text > .hero-info { order: 3; }
.hero-text > .hero-desc { order: 4; }
.hero-text > .hero-flags { order: 5; }
.hero-text > .hero-actions { order: 6; }

.hero h1,
.hero-subtitle,
.hero-desc,
.hero-info {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: none;
}

.hero h1 {
  font-size: 5vw;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.1;
  padding-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 16px;
  max-width: none;
}

.hero-desc {
  font-size: 1.4vw;
  line-height: 1.1;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1.1px;
  margin-bottom: 32px;
  max-width: none;
}

.hero-info {
  display: grid;
  grid-template-columns: 0.40fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  justify-content: center;
}

.hero-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-info__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.hero-info__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.5);
}

.hero-info__icon {
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.hero-info__value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  align-items: center;
  justify-content: center;
}

.hero-flags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-flag {
  width: 32px;
  height: 21px;
  border-radius: 3px;
  object-fit: cover;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn::after {
  content: '';
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
  display: inline-block;
}

.hero-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.9);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 12px 0;
  cursor: pointer;
}

.hero-btn-more::after {
  content: '';
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22rotate(90%2012%2012)%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22rotate(90%2012%2012)%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
  display: inline-block;
}

.hero-btn-more:hover {
  color: var(--brand-orange);
}

.hero-actions .btn-primary {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.hero-actions .btn-primary:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

.hero-actions .btn-outline {
  color: rgba(248, 250, 252, 0.9);
  border-color: rgba(248, 250, 252, 0.25);
}

.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.sponsor-strip {
  background: var(--brand-blue);
  color: var(--color-hero-text);
  padding: 48px 0 56px;
}

.sponsor-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.sponsor-strip__label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.65);
}

.sponsor-strip__logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.sponsor-strip__partners-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
  margin-top: 40px;
}

.partners-section {
  background: #f5f5f5;
  color: var(--color-foreground);
  padding: 35px 0 90px;
}

.partners-section .container {
  max-width: var(--container);
  padding: 0 16px;
}

.partners-section__label {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 32px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.partner-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: var(--shadow);
  height: 120px;
  width: 220px;
  overflow: hidden;
}

.partner-card img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 18px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.partner-logo-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 160px;
  min-height: 72px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.partner-logo-wrap img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  height: auto;
  display: block;
}

.partner-logo-wrap:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

@media (max-width: 768px) {
  .partners-grid {
    gap: 16px 14px;
  }

  .partner-logo-wrap {
    padding: 10px 12px;
    min-width: 94px;
    max-width: 128px;
    min-height: 54px;
  }

  .partner-logo-wrap img {
    max-height: 40px;
    max-width: 104px;
  }
}

  .sponsor-strip__partners-label {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .sponsor-strip {
    padding: 40px 0 52px;
  }

  .sponsor-strip__label {
    text-align: center;
  }

  .sponsor-strip__logo {
    max-width: 220px;
  }
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
}

.visual-frame {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-placeholder {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px;
}

/* About */
.about {
  background: var(--color-background);
}

.about-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.about-text p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-secondary);
}

.about-block {
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--brand-orange);
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-subtitle__icon {
  font-size: 16px;
  color: var(--brand-orange);
  background: none;
  border: none;
  line-height: 1;
}

.about-visual {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-background);
}

.about-map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.about-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(6, 31, 69, 0.45);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
  text-decoration: none;
}

.about-map-link:hover .about-map-overlay {
  opacity: 1;
}

.about-map-overlay i {
  font-size: 24px;
}

/* Numbers */
.numbers {
  background: var(--brand-blue);
  color: #fff;
}

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

.number-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), background var(--transition);
}

.number-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.number-card.wide {
  grid-column: span 2;
}

.number-value {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.number-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* Audience */
.audience {
  background: var(--color-background);
}

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

.audience-card {
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(2,6,23,0.1);
}

.audience-image {
  width: calc(100% + 56px);
  height: 180px;
  object-fit: cover;
  margin: -28px -28px 18px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background: var(--color-muted);
}

@media (max-width: 768px) {
  .audience-image {
    width: calc(100% + 40px);
    height: 160px;
    margin: -20px -20px 16px;
  }
}

.audience-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.audience-card p {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.audience-card .card-link {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
}

.audience-card .card-link::after {
  content: '';
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
  display: inline-block;
}

.audience-card .card-link:hover {
  color: var(--brand-orange);
}

.link-chars {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.link-chars__text {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  height: 1.25em;
  line-height: 1.25;
}

.link-chars__text .char {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: var(--d);
  will-change: transform;
}

.link-chars:hover .link-chars__text .char,
.audience-card:hover .link-chars .link-chars__text .char {
  transform: translateY(-100%);
}

.link-chars__text + .link-chars__text {
  position: absolute;
  top: 100%;
  left: 0;
}

.link-chars {
  position: relative;
  overflow: hidden;
}

/* Why */
.why {
  background: var(--color-background);
}

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

.why-card {
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.why-card.wide {
  grid-column: span 1;
}

.why-image {
  width: calc(100% + 48px);
  height: 180px;
  object-fit: cover;
  margin: -24px -24px 18px;
  mix-blend-mode: darken;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background: var(--color-muted);
  display: block;
}

.why-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .why-image {
    width: calc(100% + 40px);
    height: 160px;
    margin: -20px -20px 16px;
  }
}

.why-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--color-secondary);
}

/* Exposition */
.exposition {
  background: var(--brand-blue);
  color: #fff;
}

.expo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.expo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), transform var(--transition);
}

.expo-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.expo-card.wide {
  grid-column: span 1;
}

.expo-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #fff;
}

.expo-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Exhibitors */
.exhibitors {
  background: var(--color-background);
}

.exhibitors-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exhibitors-benefits p,
.exhibitors-benefits li {
  font-size: 15px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.exhibitors-benefits ul {
  padding-left: 20px;
  margin-top: 18px;
}

.exhibitors-stands h2 {
  font-size: 28px;
  text-align: left;
  margin-bottom: 28px;
  color: var(--color-primary);
}

.stands-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stand-card {
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 4px 16px rgba(2,6,23,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(2,6,23,0.1);
}

.stand-card__visual {
  width: 100%;
  height: 240px;
  background: var(--brand-light-blue);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.stand-card__img {
  width: 100%;
  max-height: 160%;
  object-fit: contain;
  display: block;
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1500px) {
  .stand-card__visual {
    height: 260px;
  }

  .stand-card__img {
    margin-bottom: -90px;
  }
}

.stand-card__body {
  padding: 1vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
}

.stand-card__size {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stand-card__subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.stand-card__text {
  font-size: 13px;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.stands-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  background: var(--brand-orange-dark);
  color: #fff;
  border: 1px solid var(--brand-orange-dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stands-btn::after {
  content: '';
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
  display: inline-block;
}

.stands-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .stands-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stands-cards {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .stand-card__body {
    padding: 6vw;
  }

  .stand-card__size {
    font-size: 20px;
  }
}

.stands-table-wrapper {
  display: none;
}

.stands-table {
  display: none;
}

/* Program */
.program {
  background: var(--brand-blue);
  color: #fff;
}

.program-directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.program-direction {
  background: #f5f5f5;
  border: 2px solid var(--brand-orange);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-direction:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.18);
}

.program-direction__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.program-direction__head::after {
  content: '';
  width: 30px;
  height: 30px;
  margin-left: auto;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22rotate(90%2012%2012)%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20transform%3D%22rotate(90%2012%2012)%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--brand-orange);
  display: inline-block;
}

.program-direction__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--brand-orange);
}

.program-direction h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--brand-blue);
}

.program-direction p {
  font-size: 14px;
  color: var(--color-primary);
}

.program-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-days .program-subhead {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  text-align: left;
}

.program-days .program-subhead h2 {
  font-size: 28px;
}

.program-directions .program-subhead {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  text-align: left;
}

.program-directions .program-subhead h2 {
  font-size: 28px;
}

.program-day {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.program-day-placeholder {
  min-height: 120px;
}

.day-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.program-day h3 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.program-day h3 .day-number {
  color: #fff;
}

.program-day h3 .day-title {
  color: var(--brand-orange);
}

.program-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-day li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding-bottom: 16px;
  line-height: 1.5;
}

.program-day li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-orange);
  z-index: 1;
}

.program-day li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 15px;
  bottom: -4px;
  width: 2px;
  background-image: radial-gradient(circle, rgb(255, 255, 255) 1px, transparent 1.5px);
  background-size: 2px 6px;
  background-repeat: repeat-y;
  background-position: center;
}

.program-day li:last-child {
  margin-bottom: 0;
}

.program-day p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 992px) {
  .program-directions .program-subhead h2,
  .program-days .program-subhead h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .program-directions .program-subhead h2,
  .program-days .program-subhead h2 {
    font-size: 24px;
  }
}

.program-download {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* B2B */
.b2b {
  background: var(--color-background);
}

.b2b-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.b2b-text p,
.b2b-text li {
  font-size: 15px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.b2b-text ul {
  padding-left: 20px;
  margin-top: 18px;
}

.b2b-visual {
  min-height: 280px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-visual .visual-placeholder {
  color: var(--color-secondary);
}

/* Government */
.government {
  background: var(--brand-blue);
}

.government .section-head h2 {
  color: #fff;
}

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

.gov-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.gov-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.gov-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1;
}

.gov-icon::before {
  display: block;
  padding: 8px;
  line-height: 1;
}

.gov-card p {
  font-size: 14px;
  color: var(--color-secondary);
}

/* Corporations */
.corporations {
  background: var(--color-background);
}

.corp-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.corp-text p,
.corp-text li {
  font-size: 15px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.corp-text ul {
  padding-left: 20px;
  margin-top: 18px;
}

.corp-visual {
  min-height: 280px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-visual .visual-placeholder {
  color: var(--color-secondary);
}

/* Partnership */
.partnership {
  background: var(--brand-blue);
  color: #fff;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partnership-card {
  background: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.partnership-card:hover .partnership-card__btn {
  color: var(--brand-orange);
}

.partnership-card__visual {
  width: 100%;
  aspect-ratio: 20 / 7;
  background: var(--brand-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partnership-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-label {
  width: 100%;
  height: 100%;
  background: var(--brand-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffffc7;
  text-align: center;
  line-height: 1;
}

.partner-label__top {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.partner-label__main {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.partnership-card__body {
  padding: 1vw;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partnership-card__body h3 {
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--color-primary);
  line-height: 1.3;
}

.partnership-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.partnership-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-secondary);
}

.partnership-card__list .check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.partnership-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
  text-decoration: none;
}

.partnership-card__btn::after {
  content: '';
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
  display: inline-block;
}

.partnership-card__btn:hover {
  color: var(--brand-orange);
}

@media (max-width: 992px) {
  .partnership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .partnership-card {
    width: 100%;
  }

  .partnership-card__body {
    padding: 6vw;
  }

  .partnership-card__body h3 {
    font-size: 16px;
  }

  .partnership-card__list li {
    font-size: 12px;
  }
}

/* Location */
.location {
  background: #f5f5f5;
}

.loc-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.loc-text p {
  font-size: 16px;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.loc-visual {
  min-height: 320px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-visual .visual-placeholder {
  color: var(--color-secondary);
}

/* FAQ */
.faq {
  background: var(--color-background);
}

.faq .faq-narrow {
  max-width: 950px;
}

.faq-list {
  max-width: none;
}

.faq-item {
  border-bottom: 1px solid #cdcdcd;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  padding-right: 16px;
  font-size: 1.5vw;
  font-weight: 500;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--color-secondary);
  transition: max-height 300ms ease, padding 300ms ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

/* Contacts */
.contacts {
  position: relative;
  background: var(--brand-blue);
  color: #fff;
  padding: 110px 0 90px;
  overflow: hidden;
}

.contacts-canvas-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.contacts .container {
  position: relative;
  z-index: 1;
}

.contacts-head {
  text-align: center;
  margin-bottom: 44px;
}

.contacts-head h2 {
  font-size: 5vw;
  color: #fff;
  margin-bottom: 14px;
}

.contacts-head p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

.contacts-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.contacts-actions .btn {
  width: 100%;
  max-width: 320px;
}

.contacts-actions .btn-primary {
  background: var(--brand-orange-dark);
  color: #fff;
  border-color: var(--brand-orange-dark);
}

.contacts-actions .btn-primary:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 57, 121, 0.25);
}

.contacts-actions .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.contacts-actions .btn-outline:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.contact-form {
  max-width: 720px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.form-field span {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-accent-light);
  background: rgba(255,255,255,0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-field select option {
  background: var(--brand-blue);
  color: #fff;
}

.form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
}

.contacts-info {
  text-align: center;
}

.contact-block {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.contact-block strong {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.contact-block a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.contact-block a:hover {
  color: var(--color-accent-light);
}

.form-page {
  padding-top: 130px;
  min-height: 100vh;
}

.form-page .contacts-head {
  margin-bottom: 44px;
}

.form-page .contacts-head h2 {
  font-size: 32px;
}

.form-page .contact-form {
  margin-bottom: 36px;
}

.form-page .contacts-info {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .form-page {
    padding-top: 110px;
  }
  .form-page .contacts-head h2 {
    font-size: 26px;
  }
}

/* Footer */
/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  15% { transform: translateY(-3px) scale(1.05) rotate(-8deg); }
  30% { transform: translateY(0) scale(1) rotate(8deg); }
  45% { transform: translateY(-2px) scale(1.03) rotate(-5deg); }
  60% { transform: translateY(0) scale(1) rotate(5deg); }
  75% { transform: translateY(-1px) scale(1.02) rotate(-2deg); }
}

.whatsapp-fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-ring 2s ease-out infinite;
}

@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-fab:hover {
  background: #1ebd5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 80px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* Lens fade effect — progressive blur towards bottom of page */
.lens-fade {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25vh;
  pointer-events: none;
  z-index: 9000;
  border-radius: 0;
  overflow: hidden;
  opacity: 1;
  transition: opacity 400ms ease;
}

.lens-fade.hidden {
  opacity: 0;
}

@media (max-width: 768px) {
  .lens-fade {
    opacity: 0 !important;
    pointer-events: none;
  }
}

.lens-layer {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  -webkit-mask-image: linear-gradient(
    rgba(0, 0, 0, 0) var(--mask-start),
    rgb(0, 0, 0) var(--mask-mid1),
    rgb(0, 0, 0) var(--mask-mid2),
    rgba(0, 0, 0, 0) var(--mask-end)
  );
  mask-image: linear-gradient(
    rgba(0, 0, 0, 0) var(--mask-start),
    rgb(0, 0, 0) var(--mask-mid1),
    rgb(0, 0, 0) var(--mask-mid2),
    rgba(0, 0, 0, 0) var(--mask-end)
  );
  pointer-events: none;
}

.site-footer {
  background: var(--brand-blue);
  color: rgba(255,255,255,0.5);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.footer-copy {
  font-size: 13px;
}

/* Scroll reveal base */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-media {
    order: -1;
  }

  .hero-visual {
    max-width: 100%;
  }

  .about-row,
  .exhibitors-row,
  .b2b-row,
  .corp-row,
  .loc-row {
    grid-template-columns: 1fr;
  }

  .about-visual,
  .b2b-visual,
  .corp-visual,
  .loc-visual {
    min-height: 240px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-card.wide {
    grid-column: span 2;
  }

  .audience-grid,
  .why-grid,
  .expo-grid,
  .gov-grid,
  .partnership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expo-card.wide,
  .why-card.wide {
    grid-column: span 2;
  }

  .program-directions,
  .program-days {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 76px 18px 20px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: none;
    z-index: 1050;
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.12);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    text-align: left;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    opacity: 1;
    transform: translateY(0);
    transition: color 200ms;
    background: #fff;
  }

  .main-nav a span {
    background: #fff;
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a .nav-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border-radius: 5px;
    background: rgba(13, 57, 121, 0.08);
    color: var(--color-accent);
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1060;
  }

  .mobile-menu-toggle span {
    background: var(--brand-blue);
  }

  .mobile-menu-toggle.active span {
    background: var(--brand-blue);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 10px 0 80px;
  }

  .hero h1 {
    font-size: 10vw;
    padding-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 7vw;
    line-height: 1.1;
  }

  .hero-desc {
    display: block;
    font-size: 4.4vw;
    line-height: 1;
    order: 3;
    margin-bottom: 20px;
  }

  .hero-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 4;
    margin-bottom: 28px;
  }

  .hero-info__item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-info__content {
    text-align: center;
  }

  .hero-info__icon {
    font-size: 20px;
  }

  .hero-info__value {
    font-size: 14px;
    text-align: center;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .partners-section {
    padding: 35px 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-card {
    width: 180px;
    height: 100px;
  }

  .partner-card img {
    max-height: 60px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .section-head .section-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .numbers-grid,
  .audience-grid,
  .why-grid,
  .expo-grid,
  .gov-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .number-card.wide,
  .expo-card.wide,
  .why-card.wide {
    grid-column: span 1;
  }

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

  .contacts-actions,
  .hero-actions {
    flex-direction: column;
  }

  .contacts-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Form intent-specific fields */
#stand-field {
  transition: opacity 200ms ease;
}

.hero-image-overlay {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
}

.hero-image-overlay.top-left {
  top: 12px;
  left: 12px;
}

.hero-image-overlay.bottom-right {
  bottom: 12px;
  right: 12px;
}

.visual-frame {
  position: relative;
}

.header-date {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-left: 8px;
  vertical-align: top;
  white-space: nowrap;
  line-height: 1;
  margin-top: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.b2b-image,
.corp-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-muted);
  display: block;
  mix-blend-mode: darken;
}

@media (max-width: 768px) {
  .b2b-image,
  .corp-image {
    height: 220px;
  }
}


/* Location linked map image */
.loc-map-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}

.loc-map-image {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-muted);
}

.loc-map-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(13, 57, 121, 0.85);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .loc-map-image {
    height: 220px;
  }
}


/* Desktop navigation: compact horizontal menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 24px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 200ms;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:active {
  color: var(--color-accent);
}

/* Floating nav pill (desktop) */
.floating-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: sticky;
  top: 16px;
  z-index: 999;
  background: rgb(255 255 255 / 65%);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 9999px;
  border-bottom: 1px solid rgba(251, 251, 253, .5);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  padding: 4px;
  max-width: max-content;
  transition: top 300ms ease, transform 300ms ease, background 240ms cubic-bezier(0.28, 0.11, 0.32, 1);
}

.floating-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-radius: 9999px;
  padding-top: max(.5rem, .7vmax);
  padding-bottom: max(.5rem, .7vmax);
  padding-left: max(1rem, 1.2vmax);
  padding-right: max(1rem, 1.2vmax);
  white-space: nowrap;
  transition: background 200ms, color 200ms;
}

.floating-nav a:hover {
  background: var(--color-muted);
  color: var(--brand-blue);
}

.floating-nav a.active {
  background: rgba(249, 115, 22, 0.65);
  color: var(--color-on-primary);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(251, 251, 253, .5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(249, 115, 22, 0.25);
}

@media (max-width: 768px) {
  .floating-nav {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .header-inner {
    padding: 14px 24px;
  }
}
