:root {
  --brand-primary: #7748eb;
  --brand-primary-hover: #6838dd;
  --brand-primary-soft: rgba(119, 72, 235, 0.5);
  --brand-secondary: #2acdab;
  --brand-secondary-soft: rgba(42, 205, 171, 0.75);
  --text-primary: #21193d;
  --text-secondary: #514a69;
  --text-tertiary: #8b84a5;
  --bg-primary: #ffffff;
  --bg-secondary: #f7f4ff;
  --border-light: rgba(119, 72, 235, 0.12);
  --container-max: 1262px;
  --header-height: 44px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: none;
  transition: border-color 0.2s ease;
}

.header.scrolled {
  border-bottom-color: transparent;
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-accent {
  color: #0073ff;
}

.desk-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--brand-primary-hover) 0%, var(--brand-secondary) 100%);
}

.mob-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.88);
}

.mob-toggle span {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.2s ease;
}

.mob-toggle span:first-child {
  top: 14px;
}

.mob-toggle span:last-child {
  top: 20px;
}

.mob-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.mob-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mob-menu {
  position: fixed;
  top: 44px;
  right: 0;
  left: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: none;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mob-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 22px;
}

.mob-link,
.mob-button {
  display: block;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}

.mob-link:hover {
  background: var(--bg-secondary);
}

.mob-button {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
  text-align: center;
  border: none;
}

.hero {
  position: relative;
  min-height: 540px;
  padding-top: var(--header-height);
  color: #fff;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.7) 100%),
    url("./assets/kv-airace-v2.jpg") center/cover no-repeat;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 45%, var(--brand-primary-soft), transparent 34%),
    radial-gradient(circle at 84% 18%, var(--brand-secondary-soft), transparent 28%);
}

.hero-grid {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(119, 72, 235, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 205, 171, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(540px - var(--header-height));
  padding-top: 60px;
  padding-bottom: 84px;
}

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

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
}

.hero-title {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-subtitle {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-hover) 0%, var(--brand-secondary) 100%);
}

.btn-secondary {
  border: none;
  color: #fff;
  background: rgba(119, 72, 235, 0.16);
}

.btn-secondary:hover {
  background: rgba(42, 205, 171, 0.12);
}

.section-intro {
  padding: 32px 0 28px;
  background: linear-gradient(180deg, rgba(119, 72, 235, 0.04) 0%, rgba(42, 205, 171, 0.05) 100%);
}

.intro-panel {
  max-width: 1280px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.intro-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.intro-title {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--text-primary);
}

.intro-text {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
}

.intro-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: 6px;
  background: rgba(119, 72, 235, 0.08);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.section-timeline {
  padding: 76px 0 70px;
  background: linear-gradient(180deg, #fff 0%, rgba(119, 72, 235, 0.03) 100%);
}

.timeline-showcase {
  max-width: 1280px;
  margin: 0 auto;
}

.timeline-title {
  margin-bottom: 42px;
  text-align: left;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
}

.timeline-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 32px;
  align-items: start;
}

.timeline-roadmap::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary-soft) 0%, var(--brand-secondary-soft) 100%);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.timeline-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border: none;
}

.timeline-step-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-step-date {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.timeline-step-label {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text-primary);
}

.section-problem {
  padding: 72px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.problem-panel {
  max-width: 900px;
  margin: 0 auto;
}

.problem-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.problem-title {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.problem-desc {
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brand-primary);
  background: rgba(119, 72, 235, 0.05);
  padding: 20px 24px;
  border-left: 4px solid var(--brand-primary);
  border-radius: 4px;
  margin-bottom: 32px;
}

.problem-media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(119, 72, 235, 0.04);
}

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

.section-recruit {
  padding: 30px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(42, 205, 171, 0.08) 100%);
}

.recruit-shell {
  display: block;
}

.recruit-panel {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 36px;
  text-align: left;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

.recruit-panel h3 {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

.cv-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  margin-top: 28px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 18px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  background: #fcfbfe;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(119, 72, 235, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

/* File Upload styling */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px dashed rgba(119, 72, 235, 0.2);
  border-radius: 10px;
  background: #faf9ff;
  text-align: center;
  transition: all 0.2s ease;
}

.file-upload-wrapper:hover .file-upload-trigger {
  border-color: var(--brand-primary);
  background: #f4f1fe;
  box-shadow: 0 0 0 4px rgba(119, 72, 235, 0.04);
}

.file-upload-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-primary);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.file-upload-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.file-upload-filename {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  word-break: break-all;
  margin-top: 4px;
}

/* Submit button & Status messages */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
  margin-top: 12px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--brand-primary-hover) 0%, var(--brand-secondary) 100%);
}

.submit-btn:active {
  transform: scale(0.99);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  font-size: 13.5px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  display: none;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: rgba(42, 205, 171, 0.08);
  color: #16937a;
  border: 1px solid rgba(42, 205, 171, 0.25);
}

.form-status.error {
  display: block;
  background: rgba(235, 72, 72, 0.08);
  color: #d12e2e;
  border: 1px solid rgba(235, 72, 72, 0.25);
}

.footer {
  background: var(--bg-secondary);
  padding-top: 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(0, 4fr);
  gap: 32px;
  align-items: start;
}

.footer-brand-block {
  max-width: 292px;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 18px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111111;
}

.footer-brand span {
  color: var(--brand-primary);
}

.footer-brand-text {
  margin-bottom: 18px;
  color: #67627b;
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5a556f;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-item:hover {
  color: var(--brand-primary);
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.footer-icon svg,
.footer-social svg,
.footer-subscribe-button svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #767185;
}

.footer-social:hover {
  color: var(--brand-primary);
}

.footer-links-grid {
  display: grid;
  grid-template-columns:
    minmax(120px, 0.9fr)
    minmax(140px, 1fr)
    minmax(140px, 1fr)
    minmax(140px, 1fr)
    minmax(230px, 1.18fr);
  gap: 20px 26px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 5px;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-column a {
  color: #67627b;
  font-size: 13px;
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--brand-primary);
}

.footer-column-support {
  min-width: 0;
}

.footer-newsletter {
  width: 100%;
  margin-top: 0;
}

.footer-newsletter-title {
  margin-bottom: 8px;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 276px;
  padding: 5px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.footer-subscribe-input {
  flex: 1;
  min-width: 0;
  padding: 0 14px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
}

.footer-subscribe-input::placeholder {
  color: #8d89a0;
}

.footer-subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  flex: 0 0 40px;
  margin-right: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--brand-primary);
}

.footer-subscribe-button:hover {
  background: var(--brand-primary-hover);
}

.footer-subscribe-button svg {
  width: 14px;
  height: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin-top: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.footer-legal p,
.footer-legal-links a {
  color: #746f86;
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal-links a + a::before {
  content: "|";
  margin-right: 8px;
  color: #a09bb1;
}

/* ==========================================================================
   PRIZES SECTION
   ========================================================================== */
.section-prizes {
  padding: 60px 0 80px;
  background: #ffffff;
}

.prizes-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: left;
  letter-spacing: -0.02em;
}

.prizes-total-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(119, 72, 235, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.prizes-total-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.prizes-total-amount {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}

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

.prize-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prize-card.prize-first {
  border: 1.5px solid rgba(119, 72, 235, 0.25); /* Light brand primary border */
}

.prize-card.prize-consolation {
  border: 1.5px solid rgba(42, 205, 171, 0.25); /* Light brand secondary border */
}

.prize-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.prize-badge-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.circle-gold {
  background-color: #fff2d4;
}

.circle-bronze {
  background-color: #ffe9dc;
}

.prize-card-icon {
  width: 26px;
  height: 26px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-gold {
  stroke: #d97d00;
}

.icon-bronze {
  stroke: #d45d1b;
}

.prize-card-info {
  text-align: left;
}

.prize-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e1b29;
  margin: 0 0 4px 0;
}

.prize-sub {
  font-size: 13px;
  font-weight: 500;
  color: #746f86;
  margin: 0;
}

.prize-card-body {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-align: left;
}

.prize-value {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--brand-primary);
}

.prize-unit {
  font-size: 14px;
  font-weight: 500;
  color: #746f86;
}

@media (max-width: 960px) {
  .desk-nav,
  .header-cta {
    display: none;
  }

  .mob-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    align-items: flex-start;
    min-height: calc(500px - var(--header-height));
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-intro {
    padding: 22px 0 18px;
  }

  .intro-panel {
    padding: 0;
  }

  .intro-title {
    font-size: 1.9rem;
  }

  .intro-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .btn {
    width: 100%;
  }

  .timeline-roadmap {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 4px 10px;
    scrollbar-width: none;
  }

  .timeline-roadmap::-webkit-scrollbar {
    display: none;
  }

  .timeline-roadmap::before {
    top: 33px;
    left: 40px;
    right: 40px;
  }

  .timeline-step {
    flex: 0 0 180px;
  }

  .timeline-step-icon {
    width: 60px;
    height: 60px;
  }

  .timeline-step-label {
    font-size: 16px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-subscribe {
    max-width: none;
  }

  .footer-legal {
    margin-top: 18px;
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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