/* Questionnaire Desk — Clean B2B SaaS */
:root {
  --navy: #0f172a;
  --slate: #1e293b;
  --slate-mid: #334155;
  --slate-light: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #ccfbf1;
  --text: #0f172a;
  --text-muted: #475569;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 4px 6px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
  --max: 1080px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }
ul { list-style: none; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--navy); }
.logo span { color: var(--teal); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--slate-mid);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--navy); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  text-decoration: none !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--slate-light);
  color: var(--navy);
  background: var(--bg-soft);
}
.btn-lg { padding: 0.9rem 1.6rem; font-size: 1rem; }

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  max-width: 40rem;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-rule strong { color: var(--navy); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.problem-body p {
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 1rem;
}
.problem-body p:last-child { margin-bottom: 0; }
.problem-body .emphasis {
  color: var(--navy);
  font-weight: 600;
}

/* Value props */
.props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.prop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.prop-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.prop-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.prop-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  color: var(--teal-dark);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
}
.package-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.package-card.featured::before {
  content: "Most common";
  position: absolute;
  top: -10px;
  left: 1.25rem;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.package-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.package-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-light);
}
.package-includes {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.package-best {
  font-size: 0.8rem;
  color: var(--slate-mid);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.package-best strong { color: var(--navy); }

.scope-notes {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.scope-notes h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.scope-notes ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.scope-notes li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.packages-cta {
  margin-top: 2rem;
  text-align: center;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.turnaround-note {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  background: var(--teal-soft);
  border-radius: var(--radius);
  color: var(--teal-dark);
}
.turnaround-note strong { color: var(--navy); }

/* Who */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.audience-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.audience-card.fit {
  background: var(--white);
}
.audience-card.nofit {
  background: var(--bg-muted);
}
.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.audience-card ul {
  list-style: disc;
  padding-left: 1.2rem;
}
.audience-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  max-width: 44rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: white;
  text-align: center;
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
}
.cta-band .btn-primary {
  background: var(--teal);
}
.cta-band .btn-primary:hover {
  background: var(--teal-dark);
}

/* Form */
.form-section { padding: 4.5rem 0; }
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group .optional {
  font-weight: 400;
  color: var(--slate-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  grid-column: 1 / -1;
}
.checkbox-group input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--teal);
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}
.form-submit .btn { width: 100%; }
.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 0.5rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Footer / Disclaimer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}
.footer-brand {
  font-weight: 700;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.footer-brand span { color: var(--teal); }
.footer-tag {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.75rem;
  margin-top: 0.5rem;
}
.disclaimer h3 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.disclaimer p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* Thank you */
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.thank-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.thank-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  font-weight: 700;
}
.thank-card h1 {
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.thank-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.thank-card .alert {
  background: var(--bg-muted);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--slate-mid);
  margin: 1.5rem 0;
  text-align: left;
}

/* Mobile */
@media (max-width: 900px) {
  .props { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }
  .nav a:hover { background: var(--bg-soft); }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { max-width: none; }
  .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 3.25rem 0; }
  .form-card { padding: 1.35rem; }
}
