* {
  box-sizing: border-box;
}

:root {
  --navy: #071d3a;
  --blue: #1476e8;
  --blue-dark: #075cc1;
  --light: #f5f8fc;
  --text: #0b1728;
  --muted: #64748b;
  --border: #dbe5f0;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span span,
.footer strong span {
  color: var(--blue);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), #5aa7ff);
  color: white;
  box-shadow: 0 14px 34px rgba(20,118,232,.25);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(20,118,232,.25);
}

.btn:hover {
  background: var(--blue-dark);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-ghost {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #eef5ff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(20,118,232,.16), transparent 34%),
    linear-gradient(180deg, #fff, #f5f8fc);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 26px;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.hero-panel {
  position: relative;
}

.glass-card {
  padding: 26px;
  border-radius: 36px;
  background: #071d3a;
  color: white;
  box-shadow: 0 28px 80px rgba(7,29,58,.25);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.10), transparent 45%);
  pointer-events: none;
}

.panel-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.panel-top small {
  display: block;
  color: #9fb3cb;
  margin-bottom: 6px;
}

.panel-top strong {
  font-size: 24px;
}

.status {
  height: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20,118,232,.24);
  color: #b9d8ff;
  font-weight: 800;
}

.schedule {
  position: relative;
  display: grid;
  grid-template-columns: 90px repeat(7, 1fr);
  gap: 8px;
  font-size: 13px;
}

.schedule b,
.person,
.slot {
  border-radius: 14px;
}

.schedule b {
  padding: 12px 4px;
  text-align: center;
  background: rgba(255,255,255,.10);
}

.person {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 10px;
  background: rgba(255,255,255,.10);
  font-weight: 800;
}

.person span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4da0ff;
}

.slot {
  min-height: 48px;
  padding: 5px;
  background: rgba(255,255,255,.06);
}

.slot span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #1476e8, #77b8ff);
}

.strip {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
}

.strip-inner strong {
  color: var(--navy);
  font-size: 20px;
  margin-right: auto;
}

.section {
  padding: 96px 0;
}

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

.section-head h2,
.contact-grid h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-head p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 38px rgba(7,29,58,.05);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.section-dark {
  background: var(--navy);
  color: white;
}

.section-dark .eyebrow {
  background: rgba(255,255,255,.1);
  color: #b9d8ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-grid p {
  color: #b9c8dc;
}

.contact-form {
  padding: 28px;
  border-radius: 30px;
  background: white;
  color: var(--text);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20,118,232,.12);
}

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

.form-status {
  margin: 14px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.footer {
  background: white;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer strong {
  color: var(--navy);
  font-size: 22px;
}

@media (max-width: 980px) {
  .menu,
  .nav .btn-small {
    display: none;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .hero-grid {
    padding: 56px 0;
  }

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

  .schedule {
    grid-template-columns: 74px repeat(7, 62px);
    overflow-x: auto;
  }

  .glass-card {
    overflow-x: auto;
    border-radius: 26px;
    padding: 18px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
