:root {
  --bg: #eef5fb;
  --bg-accent: #f9fcff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --ink: #10346f;
  --muted: #4e6d9a;
  --line: rgba(16, 52, 111, 0.12);
  --brand: #133f86;
  --brand-2: #41aae5;
  --brand-3: #0d2f68;
  --success: #156e9d;
  --danger: #d3476b;
  --shadow: 0 24px 60px rgba(19, 63, 134, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(65, 170, 229, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(19, 63, 134, 0.16), transparent 32%),
    linear-gradient(180deg, #ecf5fb 0%, #f8fbff 44%, #edf4fb 100%);
}

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

.site-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 20px 24px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.4;
  pointer-events: none;
}

.hero::before {
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(65, 170, 229, 0.24), transparent 68%);
}

.hero::after {
  left: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(19, 63, 134, 0.18), transparent 70%);
}

.container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 178px;
  height: auto;
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-3);
  background: rgba(65, 170, 229, 0.12);
  border: 1px solid rgba(65, 170, 229, 0.2);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95)),
    radial-gradient(circle at top right, rgba(65, 170, 229, 0.12), transparent 28%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #256fd0);
  box-shadow: 0 14px 28px rgba(19, 63, 134, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.hero-panel {
  align-self: stretch;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 63, 134, 0.05), rgba(65, 170, 229, 0.08));
  border: 1px solid rgba(19, 63, 134, 0.08);
}

.hero-panel h2,
.section-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.hero-panel p,
.section-copy,
.faq-item p,
.site-footer,
.list li,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.section {
  padding: 10px 20px 48px;
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(19, 63, 134, 0.08);
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.location-card h3,
.status-card h1,
.faq-item h3,
.info-card h3 {
  margin: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(65, 170, 229, 0.12);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 600;
}

.status-shell {
  padding: 32px 20px 56px;
}

.status-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.status-ok {
  border-top: 8px solid rgba(21, 110, 157, 0.95);
}

.status-cancel {
  border-top: 8px solid rgba(211, 71, 107, 0.95);
}

.status-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.status-ok .status-mark {
  color: #fff;
  background: linear-gradient(135deg, #1f7ec0, #123f87);
}

.status-cancel .status-mark {
  color: #fff;
  background: linear-gradient(135deg, #ee6f95, #bf335d);
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li + li {
  margin-top: 10px;
}

.faq-group {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(19, 63, 134, 0.08);
  box-shadow: 0 14px 34px rgba(19, 63, 134, 0.06);
}

.site-footer {
  padding: 12px 20px 36px;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.muted-link {
  color: var(--brand);
}

@media (max-width: 980px) {
  .hero-card,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .status-card,
  .card,
  .faq-item {
    padding: 24px;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-inline: 14px;
  }

  .section,
  .status-shell,
  .site-footer {
    padding-inline: 14px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }
}
