:root {
  --navy: #0b1220;
  --navy-light: #111a2e;
  --charcoal: #1a2233;
  --accent: #2ea3a3;
  --accent-dark: #237f7f;
  --text-light: #eef1f5;
  --text-muted: #a7b0c0;
  --white: #ffffff;
  --border: #26314a;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--text-light);
  line-height: 1.55;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Callbar */
.callbar {
  background: var(--accent-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.callbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.callbar a:hover {
  text-decoration: underline;
}

.callbar-sep {
  margin: 0 10px;
  opacity: 0.6;
}

/* Header */
.site-header {
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
}

.header-logo-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}

.header-logo-full {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

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

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* Hero */
.hero {
  padding: 64px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 20px;
}

.hero-body {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Sections */
.section {
  padding: 56px 0;
}

.alt-bg {
  background: var(--charcoal);
}

.section h2 {
  font-size: 1.7rem;
  margin: 0 0 32px;
  text-align: center;
  font-weight: 700;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
}

.checklist li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 1.02rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.checklist li:last-child {
  border-bottom: none;
}

/* Pricing */
.pricing-copy {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Intake form */
.intake-intro {
  max-width: 620px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-muted);
}

.intake-form {
  max-width: 640px;
  margin: 0 auto;
}

fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px 8px;
  margin-bottom: 24px;
  background: var(--navy-light);
}

legend {
  font-weight: 700;
  color: var(--accent);
  padding: 0 6px;
  font-size: 1rem;
}

.intake-form label {
  display: block;
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 14px 0 6px;
  font-weight: 600;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--navy);
  color: var(--text-light);
  font-size: 0.95rem;
  font-family: inherit;
}

.intake-form input:focus,
.intake-form textarea:focus {
  outline: 2px solid var(--accent);
}

.intake-form textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 400 !important;
  margin: 0 !important;
}

.checkbox-label input {
  width: auto;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: 90px 0;
}

.thank-you h1 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.thank-you p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

.footer-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 4px 0;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .header-logo-banner {
    padding: 14px 16px;
  }
  .header-logo-full {
    max-height: 90px;
  }
  .footer-logo {
    max-height: 80px;
  }
  .header-actions {
    gap: 6px;
  }
  .header-btn-label {
    display: none;
  }
  fieldset {
    padding: 16px 16px 4px;
  }
}
