body { background: var(--paper); }

/* Hero */
.demo-hero {
  max-width: var(--container); margin: 0 auto;
  padding: 80px var(--gutter) 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
@media(max-width:860px){ .demo-hero{grid-template-columns:1fr;gap:48px;} .demo-form-col{order:-1;} }
@media(max-width:767px){ .demo-hero { padding-top: 56px; } }
.demo-hero-text {}
.demo-hero-text .eyebrow { margin-bottom: 24px; }
.demo-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 500; letter-spacing: -0.032em;
  line-height: 1.03; color: var(--ink);
  margin-bottom: 22px; text-wrap: balance;
}
.demo-hero-text p { font-size: 17px; color: var(--gray-600); line-height: 1.72; margin-bottom: 28px; max-width: 440px; }
.demo-guarantees { display: grid; gap: 12px; }
.dg-item { display: flex; gap: 12px; align-items: flex-start; }
.dg-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--accent); margin-top: 1px; }
.dg-text { font-size: 15px; color: var(--gray-600); line-height: 1.5; }
.dg-text strong { color: var(--ink); font-weight: 500; }

/* Form card */
.demo-form-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 16px 48px rgba(11,13,16,0.08);
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: none;
  overflow: visible;
}
@media (max-width: 900px) {
  .demo-form-card { position: static; padding: 28px 22px; }
}
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.5; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 7px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 11px 14px;
  background: var(--paper); border: 1px solid var(--gray-200);
  border-radius: 8px; font-size: 14px; color: var(--ink);
  font-family: var(--font-sans); transition: border-color 0.2s;
  appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--accent);
  background: white; box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row textarea { height: 88px; resize: vertical; min-height: 72px; max-height: 200px; }
.form-row select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6C6F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-submit { width: 100%; height: 48px; border-radius: 999px; font-size: 15px; font-weight: 500; background: var(--ink); color: white; border: none; cursor: pointer; font-family: var(--font-sans); transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; }
.form-submit:hover { background: var(--accent); }
.form-note { font-family: var(--font-mono); font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 12px; letter-spacing: 0.05em; }

/* Process section */
.process-section { padding: 96px 0; background: white; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.process-section .container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.process-head { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.process-head .eyebrow { margin-bottom: 20px; }
.process-head h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.process-head p { font-size: 16px; color: var(--gray-600); line-height: 1.7; }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 28px; left: calc(100%/6); right: calc(100%/6); height: 1px; background: var(--gray-200); z-index: 0; }
@media(max-width:720px){ .process-steps{grid-template-columns:1fr;gap:32px;} .process-steps::before{display:none;} }
.process-step { padding: 0 32px; text-align: center; position: relative; }
.ps-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; color: var(--ink);
  margin: 0 auto 24px; position: relative; z-index: 1;
  font-weight: 500;
}
.process-step.highlight .ps-num { background: var(--accent); border-color: var(--accent); color: white; }
.ps-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 10px; }
.ps-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* What's included */
.included-section { padding: 96px 0; }
.included-section .container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.included-head { max-width: 540px; margin-bottom: 56px; }
.included-head .eyebrow { margin-bottom: 20px; }
.included-head h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.included-head p { font-size: 16px; color: var(--gray-600); line-height: 1.7; }
.included-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--gray-200); border-radius: 14px; overflow: hidden; }
@media(max-width:600px){ .included-grid{grid-template-columns:1fr;} }
.inc-item { background: white; padding: 32px 36px; }
.inc-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.inc-icon svg { display: block; }
.inc-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 8px; }
.inc-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* FAQ */
.faq-section { padding: 96px 0; background: white; border-top: 1px solid var(--gray-200); }
.faq-section .container { max-width: 740px; margin: 0 auto; padding-inline: var(--gutter); }
.faq-head { text-align: center; margin-bottom: 52px; }
.faq-head .eyebrow { margin-bottom: 18px; }
.faq-head h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 500; letter-spacing: -0.025em; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-top: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; padding: 22px 0; text-align: left;
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--ink);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-sans);
}
.faq-q-toggle { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--gray-300); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-500); transition: all 0.2s; }
.faq-item.open .faq-q-toggle { background: var(--ink); border-color: var(--ink); color: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; font-size: 15px; color: var(--gray-600); line-height: 1.72; }
.faq-item.open .faq-a { display: block; }

/* Bottom CTA */
.demo-bottom-cta { background: var(--navy); background-image: radial-gradient(ellipse at 40% 60%, rgba(37,99,235,0.14) 0%, transparent 55%); padding: 100px var(--gutter); text-align: center; }
.demo-bottom-cta h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 64px); font-weight: 500; letter-spacing: -0.032em; color: white; line-height: 1.02; margin-bottom: 20px; }
.demo-bottom-cta p { font-size: 17px; color: rgba(255,255,255,0.60); max-width: 440px; margin: 0 auto 40px; line-height: 1.7; }