:root {
  --bg: #f5f7fb;
  --bg-soft: #e9eef5;
  --surface: #ffffff;
  --surface-strong: #fbfcfe;
  --ink: #141c29;
  --muted: #617082;
  --line: #d7dee8;
  --line-dark: rgba(255, 255, 255, 0.24);
  --blue: #123d69;
  --blue-deep: #08182b;
  --blue-mid: #0e2d4f;
  --graphite: #2b313a;
  --silver: #d8e1ea;
  --gold: #bf9857;
  --gold-light: #f0d59a;
  --gold-soft: #f4ead5;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-warm: rgba(244, 234, 213, 0.54);
  --glass-line: rgba(255, 255, 255, 0.46);
  --success: #21704f;
  --error: #a73d36;
  --shadow: 0 18px 52px rgba(13, 30, 50, 0.14);
  --shadow-soft: 0 12px 32px rgba(13, 30, 50, 0.08);
  --glass-shadow: 0 22px 70px rgba(7, 22, 39, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(125deg, rgba(8, 24, 43, 0.08) 0%, transparent 32%, rgba(191, 152, 87, 0.12) 62%, transparent 100%),
    linear-gradient(180deg, #f6f8fb 0%, #eef3f8 46%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 12%, rgba(255, 255, 255, 0.34) 18%, transparent 32%),
    linear-gradient(292deg, transparent 0 46%, rgba(191, 152, 87, 0.13) 58%, transparent 74%);
  opacity: 0.78;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 4.15rem;
  line-height: 1;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 2.6rem;
  line-height: 1.08;
  font-weight: 830;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.22;
  font-weight: 820;
}

h4 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 1.02rem;
  line-height: 1.28;
}

ul,
ol {
  padding-left: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(8, 24, 43, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(145%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 24, 43, 0.92);
  box-shadow: 0 12px 32px rgba(8, 24, 43, 0.18);
}

.site-header .container {
  width: min(100% - 28px, 1320px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: #fff;
}

.brand-logo {
  width: 75px;
  height: 75px;
  max-width: 75px;
  max-height: 75px;
  flex: 0 0 auto;
  background: transparent;
  object-fit: contain;
}

.brand-name,
.brand-year {
  display: block;
}

.brand-name {
  font-weight: 850;
  line-height: 1.05;
}

.brand-year {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(240, 213, 154, 0.28);
  background: rgba(240, 213, 154, 0.14);
  color: var(--gold-light);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.main-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid rgba(240, 213, 154, 0.7);
  border-radius: var(--radius);
  background: rgba(240, 213, 154, 0.16);
  color: #fff;
  font-weight: 800;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  border-color: rgba(240, 213, 154, 0.9);
  background: rgba(240, 213, 154, 0.28);
}

.header-contacts {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  margin-left: 0;
  padding: 0;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.18;
  white-space: nowrap;
}

.main-nav .header-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(240, 213, 154, 0.7);
  border-radius: var(--radius);
  background: rgba(240, 213, 154, 0.16);
  box-shadow: none;
  color: #fff;
  font-weight: 800;
  line-height: 1.14;
}

.main-nav .header-contacts a:first-child {
  color: var(--gold-light);
  font-weight: 850;
}

.main-nav .header-contacts a:last-child {
  color: #fff;
}

.main-nav .header-contacts a:hover,
.main-nav .header-contacts a:focus-visible {
  border-color: rgba(240, 213, 154, 0.9);
  background: rgba(240, 213, 154, 0.28);
  box-shadow: none;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 76svh;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(117deg, transparent 0 18%, rgba(255, 255, 255, 0.2) 24%, transparent 34%),
    linear-gradient(252deg, transparent 0 58%, rgba(240, 213, 154, 0.2) 66%, transparent 80%);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 16, 30, 0.9) 0%, rgba(7, 24, 43, 0.78) 42%, rgba(7, 24, 43, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 16, 30, 0.72) 0%, rgba(5, 16, 30, 0.08) 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  min-height: calc(76svh - var(--header-height));
  padding: 56px 0 92px;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-section .eyebrow {
  color: var(--gold-light);
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 20px;
  color: #f3f7fb;
  font-size: 1.28rem;
  font-weight: 760;
}

.hero-text,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 6px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.44), transparent 34%, rgba(255, 255, 255, 0.16) 58%, transparent);
  opacity: 0.55;
  pointer-events: none;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #101823;
  box-shadow: 0 14px 32px rgba(191, 152, 87, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-secondary {
  border-color: rgba(216, 225, 234, 0.48);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
}

.btn-ghost-dark,
.btn-outline {
  border-color: rgba(240, 213, 154, 0.6);
  background: transparent;
  color: #fff;
}

.btn-outline {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(191, 152, 87, 0.44);
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06) 42%, rgba(8, 24, 43, 0.52)),
    rgba(8, 24, 43, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
}

.hero-thumbs {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 8px;
  margin: 0 0 16px;
}

.hero-thumbs img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.seal {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.seal svg {
  width: 52px;
  height: 52px;
  color: var(--gold-light);
}

.seal span {
  font-size: 1.22rem;
  font-weight: 850;
}

.hero-path {
  display: grid;
  gap: 6px;
  margin: 0;
  list-style: none;
}

.hero-path li {
  position: relative;
  padding: 8px 12px 8px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.hero-path li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

.direction-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: -84px;
  padding-bottom: 30px;
}

.direction-strip a {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(5, 16, 30, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.direction-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 32%, rgba(255, 255, 255, 0.12) 70%, transparent);
  opacity: 0.55;
  pointer-events: none;
}

.direction-strip svg {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.section {
  padding: 92px 0;
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.62);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-heading.center,
.center-action {
  text-align: center;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.center .lead {
  margin-right: auto;
  margin-left: auto;
}

.center-action {
  margin-top: 34px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.split-layout.reverse .section-lead {
  order: 2;
}

.section-lead {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.statement-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.38) 44%, rgba(244, 234, 213, 0.42)),
    rgba(255, 255, 255, 0.48);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.statement-panel::after,
.benefit-grid article::after,
.participant-grid article::after,
.nomination-grid article::after,
.territory-grid article::after,
.criteria-matrix article::after,
.package-grid article::after,
.partner-benefits article::after,
.process-grid li::after,
.faq-list details::after,
.form-shell::after,
.value-grid span::after,
.media-board li::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.46), transparent 30%, rgba(255, 255, 255, 0.14) 64%, transparent);
  opacity: 0.64;
  pointer-events: none;
}

.statement-panel p {
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1.35;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-rows: 101px;
  gap: 10px;
  margin: 0 0 22px;
}

.proof-gallery figure,
.image-ribbon figure,
.nomination-visuals figure,
.partner-photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-soft);
}

.proof-gallery img,
.image-ribbon img,
.nomination-visuals img,
.partner-photo-card img,
.process-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.proof-gallery figure {
  height: auto;
}

.proof-gallery figure:first-child {
  grid-row: span 2;
}

.proof-gallery figcaption,
.image-ribbon figcaption,
.nomination-visuals figcaption,
.partner-photo-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(8, 24, 43, 0.52);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 820;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.proof-gallery figure:hover img,
.image-ribbon figure:hover img,
.nomination-visuals figure:hover img,
.partner-photo-card:hover img,
.process-showcase img:hover {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  list-style: none;
}

.tag-cloud li {
  padding: 9px 12px;
  border: 1px solid rgba(18, 61, 105, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  font-weight: 720;
}

.benefit-grid,
.participant-grid,
.nomination-grid,
.territory-grid,
.package-grid,
.partner-benefits,
.process-grid {
  display: grid;
  gap: 14px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article,
.participant-grid article,
.nomination-grid article,
.territory-grid article,
.criteria-matrix article,
.package-grid article,
.partner-benefits article,
.process-grid li,
.faq-list details,
.form-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.42);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.benefit-grid article,
.participant-grid article {
  min-height: 230px;
  padding: 24px;
}

.benefit-grid article svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold);
}

.benefit-grid article p,
.participant-grid article p,
.nomination-grid article p,
.territory-grid article p,
.package-grid article p,
.partner-benefits span {
  margin-bottom: 0;
  color: var(--muted);
}

.image-ribbon {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  margin-top: 22px;
}

.image-ribbon figure {
  height: 280px;
  min-height: 280px;
}

.participant-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.participant-grid article {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
}

.participant-photo {
  width: 100%;
  height: 140px;
  margin-bottom: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(8, 24, 43, 0.12);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(191, 152, 87, 0.38);
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--blue-deep);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.participant-grid article a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 820;
}

.nominations-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(8, 24, 43, 0.1), transparent 36%, rgba(191, 152, 87, 0.1) 72%, transparent),
    linear-gradient(180deg, rgba(8, 24, 43, 0.04), rgba(255, 255, 255, 0.82)),
    var(--bg);
}

.nomination-visuals {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-rows: 154px;
  gap: 12px;
  margin: 0 0 34px;
}

.nomination-visuals figure {
  height: auto;
}

.nomination-visuals figure.wide {
  grid-row: span 2;
}

.nomination-group + .nomination-group {
  margin-top: 44px;
}

.group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.group-heading h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.16;
}

.group-text {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--muted);
}

.nomination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nomination-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nomination-grid article,
.territory-grid article {
  min-height: 176px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.58);
}

.nomination-grid article::before,
.territory-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}

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

.levels-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.08), transparent 25%, rgba(240, 213, 154, 0.14) 62%, transparent),
    linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: #fff;
}

.levels-section h2,
.levels-section .lead {
  color: #101823;
}

.levels-section .section-heading {
  max-width: 940px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92) 58%, rgba(244, 234, 213, 0.86)),
    #fff;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.levels-section .section-heading.center {
  margin-right: auto;
  margin-left: auto;
}

.levels-section .eyebrow {
  color: #111;
}

.levels-section .lead {
  color: #172033;
  font-weight: 700;
}

.level-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  list-style: none;
}

.level-timeline li {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(240, 213, 154, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92) 54%, rgba(244, 234, 213, 0.9)),
    #f8fbff;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.level-timeline li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.5), transparent 24%, rgba(191, 152, 87, 0.08));
  opacity: 0.32;
  pointer-events: none;
}

.level-timeline li > * {
  position: relative;
  z-index: 1;
}

.level-timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #8a642a;
  font-size: 0.92rem;
  font-weight: 850;
  text-shadow: none;
}

.level-timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 1.16rem;
  line-height: 1.18;
  text-shadow: none;
}

.level-timeline p {
  margin: 0;
  color: #28384b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
  text-shadow: none;
}

.warning-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 18px;
  border: 1px solid rgba(191, 152, 87, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92) 58%, rgba(244, 234, 213, 0.86)),
    #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.warning-note svg {
  width: 38px;
  height: 38px;
  color: #8a642a;
}

.warning-note p {
  margin: 0;
  color: #111;
  font-weight: 820;
}

.criteria-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.criteria-matrix article {
  padding: 24px;
}

.criteria-matrix ul {
  display: grid;
  gap: 9px;
  margin: 0;
  list-style: none;
}

.criteria-matrix li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.criteria-matrix li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: center;
  gap: 36px;
  margin-bottom: 28px;
}

.visual-band img,
.media-board img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.value-grid span {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  color: var(--blue-deep);
  font-weight: 780;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.media-board {
  display: grid;
  gap: 18px;
}

.media-board ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  list-style: none;
}

.media-board li {
  position: relative;
  overflow: hidden;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  font-weight: 720;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.process-showcase {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 12px;
  margin: -8px 0 18px;
}

.process-showcase img {
  height: 290px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-showcase img + img {
  height: 230px;
  align-self: end;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  list-style: none;
}

.process-grid li {
  min-height: 138px;
  padding: 20px;
  color: var(--graphite);
  font-weight: 760;
}

.process-grid span,
.package-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.terms-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.terms-section .section-heading .lead {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid article {
  min-height: 250px;
  padding: 26px;
}

.package-grid article.featured {
  border-color: rgba(191, 152, 87, 0.7);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 20px 58px rgba(191, 152, 87, 0.18);
}

.package-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-deep);
  font-size: 1.04rem;
}

.partners-section .btn {
  margin-top: 18px;
}

.partner-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-photo-card {
  grid-column: 1 / -1;
  min-height: 260px;
}

.partner-photo-card img {
  min-height: 260px;
}

.partner-benefits article {
  min-height: 172px;
  padding: 24px;
}

.partner-benefits strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 1.04rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 20px 56px 20px 20px;
  color: var(--blue-deep);
  font-weight: 820;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 760;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 920px;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #fff;
  background: var(--blue-deep);
}

.final-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 30, 0.9), rgba(7, 24, 43, 0.62)),
    linear-gradient(0deg, rgba(5, 16, 30, 0.48), rgba(5, 16, 30, 0.14));
}

.final-inner {
  position: relative;
}

.final-section h2,
.final-section p {
  color: #fff;
}

.final-section h2 {
  max-width: 920px;
}

.final-section p {
  max-width: 780px;
  font-size: 1.12rem;
}

.final-line {
  display: block;
  max-width: 720px;
  margin-top: 34px;
  color: var(--gold-light);
  font-size: 1.22rem;
}

.forms-section {
  background: var(--bg);
}

.forms-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.forms-copy {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 19, 36, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 48px rgba(0, 0, 0, 0.16);
}

.forms-copy .eyebrow {
  color: var(--gold-light);
}

.forms-copy h2 {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.forms-copy .lead {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 650;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 750;
  text-decoration: none;
}

.contact-panel svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--gold-light);
}

.form-shell {
  isolation: isolate;
  width: 100%;
  padding: 12px;
}

.form-shell > * {
  position: relative;
  z-index: 1;
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.form-tabs button {
  min-height: 50px;
  border: 1px solid rgba(18, 61, 105, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--graphite);
  font-weight: 820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.form-tabs button.active {
  border-color: rgba(191, 152, 87, 0.72);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #101823;
}

.lead-form {
  padding: 18px;
}

.lead-form[hidden] {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--blue-deep);
  font-weight: 760;
}

label.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(18, 61, 105, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 8px 18px rgba(8, 24, 43, 0.06);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 116px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(191, 152, 87, 0.88);
  box-shadow: 0 0 0 3px rgba(191, 152, 87, 0.2), 0 10px 24px rgba(8, 24, 43, 0.08);
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 650;
  min-width: 0;
  overflow-wrap: anywhere;
}

.privacy + input[type="hidden"] + .privacy {
  margin-top: 0;
}

.privacy input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.lead-form .btn {
  width: auto;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--success);
  font-weight: 740;
}

.form-status.is-error {
  color: var(--error);
}

.site-footer {
  padding: 32px 0;
  background: var(--blue-deep);
  color: #fff;
}

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

.footer-inner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
}

.footer-links svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #101823;
  font-weight: 850;
  box-shadow: 0 18px 38px rgba(8, 24, 43, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.cta-visible .floating-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
  }

  .benefit-grid,
  .nomination-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nomination-grid.compact,
  .value-grid,
  .participant-grid,
  .image-ribbon,
  .nomination-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nomination-visuals figure.wide {
    grid-row: span 2;
  }

  .level-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100svh - var(--header-height) - 18px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 24, 43, 0.96);
    box-shadow: 0 24px 58px rgba(8, 24, 43, 0.3);
    font-size: 1rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .main-nav .nav-cta {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
  }

  .header-contacts {
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin: 8px 0 0;
    padding: 0;
    white-space: normal;
  }

  .main-nav .header-contacts a {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    white-space: normal;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100svh - var(--header-height) - 18px);
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 24, 43, 0.96);
    box-shadow: 0 24px 58px rgba(8, 24, 43, 0.3);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a,
  .main-nav .nav-cta {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0 118px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .direction-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .split-layout.reverse,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .proof-gallery,
  .process-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-gallery figure:first-child {
    grid-row: span 2;
  }

  .split-layout.reverse .section-lead {
    order: 0;
  }

  .section-lead {
    position: static;
  }

  .criteria-matrix,
  .package-grid,
  .partner-benefits,
  .forms-layout {
    grid-template-columns: 1fr;
  }

  .forms-copy {
    position: static;
  }

  .partner-photo-card {
    grid-column: auto;
  }

  .media-board ul {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    max-width: 154px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-inner {
    padding: 56px 0 88px;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-panel {
    padding: 16px;
  }

  .direction-strip {
    margin-top: -64px;
  }

  .direction-strip a {
    min-height: 64px;
    flex-direction: column;
    gap: 6px;
  }

  .section {
    padding: 68px 0;
  }

  .benefit-grid,
  .participant-grid,
  .nomination-grid,
  .nomination-grid.compact,
  .territory-grid,
  .value-grid,
  .image-ribbon,
  .nomination-visuals,
  .proof-gallery,
  .process-showcase,
  .process-grid,
  .level-timeline {
    grid-template-columns: 1fr;
  }

  .proof-gallery figure,
  .proof-gallery figure:first-child,
  .image-ribbon figure,
  .image-ribbon figure:first-child,
  .nomination-visuals figure,
  .nomination-visuals figure.wide,
  .process-showcase img,
  .process-showcase img + img,
  .partner-photo-card,
  .partner-photo-card img {
    height: 220px;
    min-height: 220px;
  }

  .proof-gallery figure:first-child,
  .nomination-visuals figure.wide {
    grid-row: auto;
  }

  .group-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .visual-band img,
  .media-board img {
    height: 230px;
  }

  .field-grid,
  .form-tabs {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .form-shell {
    padding: 10px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
}

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