:root {
  --navy: #071a36;
  --navy-800: #0b2a52;
  --blue-900: #083a8c;
  --blue-800: #0c4db8;
  --blue-600: #1b6fe3;
  --blue-500: #2b86f0;
  --cyan: #3ec8f5;
  --cyan-soft: #7dd8f8;
  --bg: #f4f8fd;
  --surface: #ffffff;
  --text: #122033;
  --muted: #5a6b80;
  --line: #d5e3f3;
  --shadow: 0 16px 40px rgba(12, 47, 104, 0.1);
  --radius: 18px;
  --header-h: 76px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  color: var(--blue-800);
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.7em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213, 227, 243, 0.9);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(12, 77, 184, 0.25);
}

.brand span span {
  color: var(--blue-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-600);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary,
.site-nav .btn-primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-800));
  color: #fff;
  box-shadow: 0 8px 20px rgba(12, 77, 184, 0.28);
}

.btn-primary:hover,
.site-nav .btn-primary:hover {
  color: #fff;
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: #fff;
  color: var(--blue-800);
  border: 1px solid var(--line);
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(62, 200, 245, 0.28), transparent 28%),
    linear-gradient(165deg, #1a7ae8 0%, #0c4db8 52%, #083a8c 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 50px rgba(4, 24, 64, 0.22);
}

.hero-card img {
  width: 100%;
  border-radius: 20px;
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-head p,
.muted {
  color: var(--muted);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(12, 47, 104, 0.14);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e8f2ff;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.card a.more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--blue-800);
  letter-spacing: -0.03em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px #d9f4fd;
}

.panel {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band {
  background: linear-gradient(165deg, #1a7ae8 0%, #0c4db8 100%);
  color: #fff;
  padding: 64px 0;
}

.cta-band h2 {
  font-size: 2.2rem;
}

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

.page-hero {
  padding: 56px 0 36px;
  background:
    linear-gradient(180deg, #eaf3ff, var(--bg));
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 1.8em;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.ticket-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.form {
  display: grid;
  gap: 14px;
}

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

label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--cyan-soft);
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cta-inner,
  .ticket-banner,
  .cards,
  .stats,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cards,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-card {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .cards,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .section {
    padding: 56px 0;
  }
}
