:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --ink: #1f2937;
  --muted: #6b7280;
  --surface: #f8fafc;
  --card: #ffffff;
  --logo-blue: #3b9fd8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

.container {
  width: min(100% - 2rem, 1020px);
  margin-inline: auto;
}

.hero {
  background: linear-gradient(135deg, #0b132b, #1c2541 55%, #3a506b);
  color: white;
  padding: 5rem 0 4rem;
  text-align: center;
}


.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero-logo {
  width: min(240px, 55vw);
  height: auto;
  border-radius: 999px;
  padding: 0.35rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 14, 29, 0.35);
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #ffffff;
  margin: 1rem 0 0.25rem;
}

.hero-subtitle {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--logo-blue);
  margin: 0 0 1.5rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 1rem 0;
}

.subhead {
  margin: 0 auto 2rem;
  max-width: 48ch;
  text-align: center;
}

.subhead p {
  margin: 0.35rem 0;
  color: #dbeafe;
}

.subhead-highlight {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #ffffff !important;
}

.subhead-cta {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--logo-blue) !important;
  margin-top: 0.5rem !important;
}

.cta-btn {
  display: inline-block;
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  background: var(--primary-dark);
}

.services,
.form-section {
  background: var(--card);
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
}

.services h2 {
  text-align: center;
}

.services-kicker {
  margin: -0.4rem 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.service-grid {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-grid li {
  border: 1px solid #dbe3ef;
  border-radius: 0.55rem;
  padding: 0.75rem 0.85rem;
  background: #f9fbff;
  font-weight: 600;
}

.field-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.split-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.8rem;
}

.split-3 {
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  column-gap: 0.8rem;
}

label {
  font-weight: 600;
}

.required {
  color: #dc2626;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.45rem;
  padding: 0.7rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #bfdbfe;
  border-color: var(--primary);
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  color: #374151;
}

.check-label input[type='checkbox'] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#form-status {
  margin-top: 0.75rem;
  color: var(--muted);
}

footer {
  margin-top: 2.25rem;
  padding: 1.2rem 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 860px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-2,
  .split-3 {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }
}
