:root {
  --bg: #05070b;
  --panel: #0b1119;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f2f6ff;
  --muted: #c3cedf;
  --brand: #37a7ef;
  --brand-dark: #1f7fbe;
}

* {
  box-sizing: border-box;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 7, 11, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand-text {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f2f6ff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: #e0e9f8;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero > img,
.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > img {
  z-index: 0;
}

.hero > video {
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(4, 7, 12, 0.48), rgba(4, 7, 12, 0.86));
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4.8rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #d0ddf4;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero-sub {
  margin: 1rem 0 0;
  max-width: 690px;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #e1e9f7;
}

.cta-row {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #05131f;
}

.btn-primary:hover {
  background: #5ab9f6;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(6, 13, 22, 0.42);
}

.section {
  padding: 4rem 0;
}

.trust-strip-section {
  padding: 1rem 0 1.3rem;
  border-bottom: 1px solid var(--line);
  background: #07101a;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-strip span {
  border: 1px solid rgba(116, 177, 239, 0.45);
  background: rgba(20, 35, 56, 0.55);
  color: #d6e8ff;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.section-dark {
  background: linear-gradient(180deg, #0a111a, #070c13);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-blue {
  background: linear-gradient(180deg, #0d1928, #0a1420);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-navy {
  background: #05070b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.section-sub {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 700px;
}

.state-list {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.state-list span {
  border: 1px solid var(--line);
  background: #0d1520;
  color: #d7e3f8;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.cat-note {
  margin-top: 0.9rem;
  font-weight: 700;
  color: #b9d6ff;
}

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

.process-step {
  border: 1px solid var(--line);
  background: #0d1520;
  border-radius: 12px;
  padding: 1rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.card h3 {
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.serve-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.serve-card {
  border: 1px solid var(--line);
  background: #0c1520;
  border-radius: 12px;
  padding: 0.95rem;
  font-weight: 700;
  color: #d9e7fb;
}

.about-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-wrap p {
  color: var(--muted);
}

.contact-btn {
  min-width: 180px;
}

.contact-assign {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  align-items: start;
}

.contact-intro p {
  color: var(--muted);
}

.same-day-note {
  color: #c7e1ff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.assignment-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.assignment-form label {
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
  font-weight: 600;
  color: #dce8fb;
}

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

.assignment-form input,
.assignment-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0b1119;
  color: #f3f7ff;
  padding: 0.68rem 0.72rem;
  font: inherit;
}

.assignment-form button {
  width: fit-content;
}

.small-note {
  font-size: 0.92rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.footer-wrap p {
  margin: 0;
  color: #aebbd3;
}

@media (max-width: 640px) {
  .hero {
    min-height: 70vh;
  }

  .nav-links {
    font-size: 0.93rem;
    gap: 0.6rem;
  }

  .assignment-form {
    grid-template-columns: 1fr;
  }

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

}
