:root {
  --gold: #d8aa31;
  --lime: #d8aa31;
  --lime-dark: #c09628;
  --dark: #213e70;
  --dark-2: #1a325c;
  --steel: #81aec6;
  --ice: #cae2e1;
  --cream: #f6f4eb;
  --white: #ffffff;
  --muted: #5a6e82;
  --line: #d4e3e2;
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.55;
  overflow-x: hidden;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--lime);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar a { font-weight: 800; }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-links .fb {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
}

.topbar-links .fb:hover { background: var(--dark-2); }

.socials { display: flex; gap: 12px; }
.socials a { display: grid; place-items: center; opacity: 0.85; }
.socials a:hover { opacity: 1; }

.header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 78px;
  width: auto;
  object-fit: contain;
}

.brand-header {
  flex-shrink: 0;
  line-height: 0;
}

.brand-header img {
  height: 64px;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover,
.nav a.active { color: var(--gold); }

.menu {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  font-weight: 700;
  cursor: pointer;
  max-width: 100%;
}

.btn .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  display: grid;
  place-items: center;
}

.btn-lime {
  background: var(--lime);
  color: var(--dark);
}

.btn-lime .ico {
  background: var(--dark);
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 70% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,244,239,0.96) 0%, rgba(245,244,239,0.88) 34%, rgba(245,244,239,0.18) 62%, transparent 78%);
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(33, 62, 112, 0.08);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 640px;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  max-width: 460px;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  word-break: break-word;
}

.call .phone {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
}

.section { padding: 84px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head h2,
.about-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p { color: var(--muted); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.feature.white { background: #fff; }
.feature.lime { background: var(--ice); }
.feature.dark { background: var(--dark); color: #fff; }

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--lime);
  color: var(--dark);
}

.feature.lime .icon-box { background: var(--dark); color: var(--gold); }
.feature.dark .icon-box { background: #2c5088; color: var(--gold); }

.feature h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.feature p { color: inherit; opacity: 0.8; margin-bottom: 18px; }
.feature.white p { color: var(--muted); opacity: 1; }

.more {
  margin-top: auto;
  font-weight: 800;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-visual { display: grid; gap: 14px; }

.about-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 28px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-tile {
  background: var(--lime);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.stat-tile span { display: block; font-size: 15px; font-weight: 600; margin-top: 6px; }

.about-row img {
  height: 180px;
  border-radius: 28px;
}

.about-copy .eyebrow { margin-bottom: 10px; }
.about-copy p { color: var(--muted); margin: 14px 0 22px; }

.about-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong { display: block; }
.person span { color: var(--muted); font-size: 12px; }

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini {
  background: var(--ice);
  border-radius: 18px;
  padding: 16px;
}

.mini b { display: block; font-size: 22px; margin-bottom: 4px; }
.stars { color: var(--gold); letter-spacing: 2px; }

.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

.pills span {
  background: var(--ice);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.day {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
}

.day span {
  display: inline-block;
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
  font-size: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.day h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.03em; }
.day p { color: var(--muted); }

.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 56px;
}

.partners a { display: block; }

.partners img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.cta-band {
  background: var(--dark);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-band h2 { color: #fff; font-size: clamp(24px, 4vw, 36px); letter-spacing: -0.04em; }
.cta-band p { opacity: 0.8; margin-top: 6px; }

.page-form { max-width: 860px; padding: 48px 0 20px; }
.form-intro { color: var(--muted); margin: 10px 0 24px; }
.form-section { margin: 0 0 8px; }
.form.wizard { gap: 0; }

.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 12px;
}

.prize {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
}

.prize b { display: block; font-size: 18px; margin-bottom: 6px; }
.prize p { color: var(--muted); font-size: 14px; }

.info-list {
  background: #fff;
  border-radius: 24px;
  padding: 24px 28px;
  margin: 20px 0 36px;
}

.info-list li { margin: 8px 0 8px 18px; color: var(--muted); }

.wizard {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 40px;
}

.steps { display: none; }

.panel {
  display: grid;
  gap: 14px;
}

.panel + .panel {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.is-hidden { display: none !important; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { display: grid; gap: 6px; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #b42318;
  background: #fff5f5;
}
.choices.invalid label,
.checkboxes.invalid {
  outline: 1px solid #b42318;
  outline-offset: 4px;
  border-radius: 10px;
}
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.req { color: #c2410c; }

.choices { display: flex; flex-wrap: wrap; gap: 8px; }

.choices label {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.choices input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.choices label.is-on,
.choices label:has(input:checked) {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.checkboxes { display: grid; gap: 8px; }
.checkboxes label { display: flex; gap: 8px; align-items: flex-start; font-weight: 600; font-size: 14px; }
.checkboxes a { text-decoration: underline; }

.drop {
  border: 1px dashed #cfcabe;
  border-radius: 16px;
  padding: 18px;
  background: var(--cream);
  font-size: 13px;
  color: var(--muted);
}

.wizard-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.btn-ghost {
  background: var(--ice);
  color: var(--dark);
  padding: 12px 18px;
}

.success-box {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.success-box.show { display: block; }
.success-box h2 { margin: 10px 0; }

.photo-preview-name {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.photo-preview {
  display: block;
  margin-top: 12px;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line, #e6e4dc);
}

.photo-preview[hidden],
.photo-preview-name[hidden] {
  display: none !important;
}

.error { color: #b42318; font-size: 13px; display: none; }
.error.show { display: block; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--dark); }

.field textarea { min-height: 120px; resize: vertical; }

.field input,
.field select,
.field textarea,
.form input,
.form select,
.form textarea {
  font-size: 16px;
}

.form { display: grid; gap: 12px; }

.form label { font-size: 13px; font-weight: 700; }

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--dark); }

.form textarea { min-height: 120px; resize: vertical; }

.toast {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf3;
  color: #166534;
}

.toast.show { display: block; }

.site-footer {
  background: var(--dark);
  color: var(--ice);
  margin-top: 64px;
  padding: 56px 0 0;
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
}

.site-footer .brand img {
  height: 68px;
  width: 68px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin: 14px 0 18px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ice);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2c5088;
  color: var(--gold);
  display: grid;
  place-items: center;
}

.footer-socials a:hover { background: var(--lime); color: var(--dark); }

.site-footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.site-footer ul { list-style: none; }
.site-footer li { margin: 8px 0; font-size: 14px; }
.site-footer a { color: var(--ice); }
.site-footer a:hover { color: var(--gold); }

.site-footer .meta {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid #2c5088;
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--steel);
}

.mail-link { overflow-wrap: anywhere; }

.inner { padding: 40px 0 8px; }
.crumb {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.crumb a:hover { color: var(--dark); }
.lead-text {
  color: var(--muted);
  max-width: 760px;
  margin: 12px 0 28px;
  font-size: 17px;
}
.prose-block { max-width: 760px; margin-bottom: 28px; }
.prose-block p { color: var(--muted); margin: 0 0 14px; }
.related { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news-cover {
  display: block;
  height: 180px;
  background: linear-gradient(135deg, #213e70, #81aec6);
}

.news-cover img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-body time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.news-body h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.news-body p {
  color: var(--muted);
  font-size: 15px;
}

.news-body .more { margin-top: auto; }

.news-empty {
  color: var(--muted);
  background: #fff;
  border-radius: 24px;
  padding: 28px;
}

.news-article img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  margin: 8px 0 22px;
}

.admin-news {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.admin-news li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.admin-news small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.admin-news-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}

.admin-news-actions form { display: inline; }

.admin-news-actions button {
  border: 0;
  background: none;
  color: #b42318;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav { gap: 16px; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .container { width: min(1180px, calc(100% - 24px)); }
  .header { position: sticky; }
  .header .container { position: relative; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(33, 62, 112, 0.12);
    z-index: 50;
  }
  .menu { display: grid; place-items: center; }
  .section { padding: 56px 0; }
  .section-head,
  .about,
  .cards-3,
  .days,
  .cta-band,
  .mini-grid,
  .form-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .partners,
  .prize-grid,
  .about-row { grid-template-columns: 1fr 1fr; }
  .hero {
    height: calc(100dvh - 110px);
    min-height: calc(100svh - 110px);
  }
  .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(245,244,239,0.55) 0%, rgba(245,244,239,0.88) 45%, rgba(245,244,239,0.92) 100%);
  }
  .hero-copy {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
  }
  .hero-copy .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 44px);
    max-width: 16ch;
  }
  .hero p {
    max-width: 34ch;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .topbar .hide { display: none; }
  .feature { min-height: 0; }
  .cta-band { padding: 24px; border-radius: 24px; }
  .wizard { padding: 18px; border-radius: 20px; }
  .wizard-nav { flex-wrap: wrap; }
  .wizard-nav .btn { justify-content: center; }
}

@media (max-width: 640px) {
  .partners,
  .prize-grid,
  .about-row,
  .footer-grid,
  .related { grid-template-columns: 1fr; }
  .header .container { min-height: 76px; }
  .brand img { height: 64px; }
  .brand-header img { height: 48px; }
  .site-footer .brand {
    width: 72px;
    height: 72px;
  }
  .site-footer .brand img {
    height: 54px;
    width: 54px;
  }
  .btn { padding: 5px 5px 5px 14px; font-size: 14px; }
  .btn .ico { width: 32px; height: 32px; }
  .hero {
    height: calc(100dvh - 98px);
    min-height: calc(100svh - 98px);
  }
  .badge { font-size: 12px; white-space: normal; max-width: 100%; justify-content: center; }
  .site-footer { margin-top: 36px; padding-top: 36px; }
  .page-form { padding: 28px 0 12px; }
}

@media (max-width: 420px) {
  .btn-text { display: none; }
  .header .btn { padding: 5px; }
}
