* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #172033;
  background: #f4f6f8;
  line-height: 1.6;
}

.hero {
  min-height: 72vh;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: white;
  padding: 28px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-link {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero-content {
  max-width: 1120px;
  margin: 110px auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b7d4ff;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  max-width: 850px;
  margin: 18px 0;
}

.lead {
  max-width: 760px;
  font-size: 1.25rem;
  color: #e5eefc;
}

.button {
  display: inline-block;
  margin-top: 24px;
  background: white;
  color: #0f172a;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px;
}

.section.alt {
  background: white;
  max-width: none;
  padding-left: calc((100vw - 1120px) / 2 + 28px);
  padding-right: calc((100vw - 1120px) / 2 + 28px);
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: white;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.alt .card {
  background: #f8fafc;
}

.card h3 {
  margin-top: 0;
}

ul {
  padding-left: 22px;
}

.note {
  background: #eaf2ff;
  border-left: 4px solid #2563eb;
  padding: 16px;
  border-radius: 12px;
}

footer {
  text-align: center;
  padding: 28px;
  background: #0f172a;
  color: #cbd5e1;
}
.ticket-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ticket-form label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 8px;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.ticket-form .full {
  grid-column: 1 / -1;
}

.form-button {
  border: none;
  cursor: pointer;
  align-self: end;
}

.result-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #172033;
}

}

.result-box.success {
  background: #ecfdf5;
  border-color: #10b981;
  color: #064e3b;
}

.result-box.success strong {
  color: #064e3b;
}

.result-box.error {
  background: #fef2f2;
  border-color: #ef4444;
}
