:root {
  color-scheme: light;
  --ink: #0b1f22;
  --muted: #546568;
  --accent: #0f8e8a;
  --accent-dark: #0a5a58;
  --accent-soft: #d7f3f1;
  --sun: #f6b35a;
  --sand: #f7efe3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 38, 45, 0.15);
  --radius: 20px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fdf6e9, #f4fbfb 38%, #eaf7f6 70%, #f6f0f0 100%);
}

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

h1, h2, h3, h4 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.hero {
  position: relative;
  padding: 36px 6vw 80px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(0);
}

.hero::before {
  width: 360px;
  height: 360px;
  background: rgba(15, 142, 138, 0.14);
  top: -120px;
  right: 10%;
}

.hero::after {
  width: 520px;
  height: 520px;
  background: rgba(246, 179, 90, 0.22);
  bottom: -240px;
  left: -120px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.brand-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(10, 90, 88, 0.15));
}

.brand-name {
  font-weight: 700;
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 143, 138, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 6vw;
}

.section.accent {
  background: linear-gradient(120deg, rgba(15, 142, 138, 0.1), rgba(246, 179, 90, 0.22));
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.assessment-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.scale-key {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 18px;
  border-radius: 16px;
}

.assessment-form {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.question {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.question p {
  font-weight: 600;
}

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

.options label {
  background: rgba(26, 143, 138, 0.08);
  border: 1px solid rgba(26, 143, 138, 0.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.options input {
  margin-right: 6px;
}

.options .skip {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}

.assessment-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.result {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.result.hidden {
  display: none;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score {
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.result-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.contact-card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 29, 0.2);
  font-family: inherit;
}

.lead-form label {
  font-weight: 600;
  display: grid;
  gap: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(26, 143, 138, 0.25);
}

.btn-secondary {
  background: var(--sun);
  color: var(--ink);
}

.btn-tertiary {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(15, 27, 29, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(12, 38, 45, 0.15);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 6vw;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer a {
  display: block;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 30px 6vw 50px;
  }

  .brand-logo {
    width: 140px;
  }
}
