:root {
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --fg: #2A2A2A;
  --fg-muted: #6B6B6B;
  --accent: #8B9E7C;
  --accent-dark: #6E7E60;
  --gold: #C9A84C;
  --border: #E2DDD6;
  --radius: 12px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Nav */
.nav {
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }

/* Hero */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.hero-headline { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.5rem; color: var(--fg); }
.hero-sub { color: var(--fg-muted); font-size: 1.05rem; margin-bottom: 1rem; max-width: 500px; }
.hero-cta-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }
.btn-full { display: block; text-align: center; }

/* Device Stack */
.hero-visual { display: flex; justify-content: center; }
.device-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.device-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.06); overflow: hidden; }
.device-header { background: #F0EDE8; padding: 0.6rem 1rem; display: flex; gap: 0.4rem; align-items: center; }
.device-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.device-content { padding: 1.2rem; }
.device-phone { max-width: 220px; }

.check-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; font-size: 0.8rem; color: var(--fg-muted); }
.check-row.active { color: var(--accent); font-weight: 600; }
.check-icon { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid currentColor; flex-shrink: 0; }
.check-row.active .check-icon { background: var(--accent); border-color: var(--accent); }

.device-laptop { max-width: 340px; }
.laptop-header { background: #E8E5E0; height: 14px; border-radius: 2px 2px 0 0; }
.laptop-content { padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; }

.plan-item { display: flex; gap: 1rem; align-items: flex-start; }
.plan-num { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--accent); font-weight: 600; flex-shrink: 0; line-height: 1; }
.plan-info strong { font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 0.2rem; }
.plan-info p { font-size: 0.75rem; color: var(--fg-muted); line-height: 1.4; }

/* Problem */
.problem { padding: 5rem 2rem; background: var(--surface); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.problem-headline { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 3rem; max-width: 700px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.problem-card { }
.problem-icon { width: 44px; height: 44px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* Process */
.process { padding: 5rem 2rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.process-headline { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 3rem; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 2.5rem; padding: 2rem 0; border-top: 1px solid var(--border); }
.step-num { font-family: 'Fraunces', serif; font-size: 2.5rem; color: var(--accent); font-weight: 600; flex-shrink: 0; line-height: 1; width: 60px; }
.step-body { }
.step-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step-body p { font-size: 0.9rem; color: var(--fg-muted); max-width: 600px; margin-bottom: 0.8rem; line-height: 1.6; }
.step-meta { font-size: 0.75rem; color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* Testimonials */
.testimonials { padding: 5rem 2rem; background: var(--surface); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.testimonials-headline { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card { background: var(--bg); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); }
.quote-text { font-family: 'Fraunces', serif; font-size: 1.05rem; font-style: italic; margin-bottom: 1.2rem; line-height: 1.5; }
.quote-attr { font-size: 0.8rem; color: var(--fg-muted); }

/* Pricing */
.pricing { padding: 5rem 2rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.pricing-headline { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.pricing-sub { color: var(--fg-muted); font-size: 1rem; max-width: 540px; margin: 0 auto 3rem; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 3rem; max-width: 460px; margin: 0 auto; text-align: left; }
.pricing-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.5rem; }
.pricing-price { font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 700; color: var(--fg); margin-bottom: 2rem; line-height: 1; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; display: flex; align-items: center; gap: 0.8rem; }
.pricing-features li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Closing */
.closing { padding: 5rem 2rem; background: var(--fg); color: white; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-text { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; margin-bottom: 1rem; line-height: 1.4; }
.closing-sub { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* Footer */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { font-family: 'Fraunces', serif; font-weight: 600; margin-bottom: 0.3rem; }
.footer-note { font-size: 0.85rem; color: var(--fg-muted); }

/* Mobile */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .device-stack { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
  .device-card { flex-shrink: 0; }
  .device-phone { min-width: 180px; }
  .device-laptop { min-width: 260px; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 1rem; }
  .pricing-card { padding: 2rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* === Questionnaire Landing Page === */
.ql-hero { padding: 5rem 2rem 4rem; text-align: center; }
.ql-hero-inner { max-width: 660px; margin: 0 auto; }
.ql-eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.ql-headline { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; color: var(--fg); }
.ql-sub { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.ql-meta { margin-top: 1rem; font-size: 0.85rem; color: var(--fg-muted); }

.ql-sections { padding: 5rem 2rem; background: var(--surface); }
.ql-sections-inner { max-width: 1100px; margin: 0 auto; }
.ql-sections-headline { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 2.5rem; }
.ql-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ql-section-card { padding: 1.75rem; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.ql-section-num { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; line-height: 1; }
.ql-section-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.ql-section-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

.ql-example { padding: 5rem 2rem; }
.ql-example-inner { max-width: 1100px; margin: 0 auto; }
.ql-example-headline { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 1rem; }
.ql-example-sub { color: var(--fg-muted); margin-bottom: 2.5rem; }
.ql-example-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; max-width: 620px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.ql-example-header { background: var(--fg); color: white; padding: 1.25rem 1.75rem; font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 500; }
.ql-example-section { padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--border); }
.ql-example-section:last-of-type { border-bottom: none; }
.ql-example-section h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.5rem; }
.ql-example-section p { font-size: 0.9rem; color: var(--fg); line-height: 1.6; }
.ql-example-footer { padding: 1.5rem 1.75rem; background: var(--bg); }
.ql-example-footer p { font-size: 0.85rem; color: var(--fg-muted); font-style: italic; }

.ql-cta { padding: 5rem 2rem; background: var(--fg); color: white; text-align: center; }
.ql-cta-inner { max-width: 600px; margin: 0 auto; }
.ql-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.ql-cta p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.ql-cta .btn-primary { background: white; color: var(--fg); }
.ql-cta .btn-primary:hover { background: rgba(255,255,255,0.85); }

.ql-submit-row { text-align: center; margin-top: 2rem; }
.ql-submit-note { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.75rem; }

/* Mobile questionnaire */
@media (max-width: 768px) {
  .ql-section-grid { grid-template-columns: 1fr; }
}