:root {
  --blue: #1e3fff;
  --blue-hover: #1633d6;
  --ink: #090909;
  --white: #ffffff;
  --bg: #fafaf8;
  --soft-blue: #eef3ff;
  --cream: #fff8ee;
  --grey: #f4f5f7;
  --border: #e3e5ea;
  --muted: #5c5f68;
  --success: #16a36a;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 12px 40px rgba(9, 9, 9, 0.06);
  --shadow-sm: 0 4px 18px rgba(9, 9, 9, 0.05);
  --max: 1240px;
  --pad: clamp(1.25rem, 3vw, 2rem);
  --section: clamp(3.5rem, 8vw, 7.5rem);
  --float-h: 72px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--float-h) + env(safe-area-inset-bottom, 0px));
}
body.quiz-open { overflow: hidden; }
body.quiz-open .float-bar { display: none !important; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-lg { min-height: 56px; padding: 1rem 1.85rem; font-size: 1.05rem; }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: #f3f5ff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--grey); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.kicker::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.section { padding: var(--section) 0; }
.section-head { max-width: 42rem; margin-bottom: 2.5rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 {
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 40;
  padding: 0 var(--pad);
}
.site-header__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 0.75rem 0.65rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled .site-header__inner {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  box-shadow: var(--shadow);
}
.logo img { height: 28px; width: auto; }
.site-header .btn { min-height: 44px; padding: 0.65rem 1.2rem; font-size: 0.88rem; }

/* Hero */
.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.hero .kicker { margin-bottom: 1.15rem; }
.hero h1 {
  margin: 0 auto;
  max-width: 16ch;
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero .subhead {
  margin: 0.85rem auto 0;
  max-width: 22ch;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #1a1a1a;
}
.hero .lead {
  margin: 1.15rem auto 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-note {
  max-width: 32rem;
  margin: 0.35rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  margin-top: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 1rem;
  align-items: end;
}
.device {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.device-laptop { transform: translateY(0); }
.device-phone {
  border-radius: 28px;
  max-width: 220px;
  margin-inline: auto;
  animation: floatSoft 6s ease-in-out infinite;
}
.device-tablet {
  animation: floatSoft 7s ease-in-out infinite reverse;
}
.device img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.device-phone img { aspect-ratio: 9/16; }
.device-label {
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--grey);
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Logos */
.logos {
  padding: 0 0 var(--section);
}
.logos-box {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.logos-box h2 {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.25rem;
}
.logos-row img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.72;
}

/* Results carousel */
.results { background: var(--white); }
.results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.results-head .section-head { margin-bottom: 0; }
.carousel-nav { display: flex; gap: 0.5rem; }
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-btn:hover { background: var(--grey); border-color: #c9ccd4; }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}
.carousel::-webkit-scrollbar { display: none; }
.result-card {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.result-card__media {
  height: 180px;
  background: var(--grey);
  overflow: hidden;
}
.result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.result-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.result-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}
.tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

/* System */
.system { background: var(--soft-blue); }
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.system-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  min-height: 240px;
  box-shadow: var(--shadow-sm);
}
.system-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  font-size: 1.25rem;
}
.system-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.system-card p { margin: 0; color: var(--muted); }

/* Audit panel */
.audit-panel {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.audit-panel h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.audit-panel p { margin: 0; color: var(--muted); }
.audit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.audit-points li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.audit-points li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

/* Services */
.services-stack { display: grid; gap: 1.15rem; }
.svc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}
.svc-panel--blue { background: var(--soft-blue); }
.svc-panel--cream { background: var(--cream); }
.svc-panel:nth-child(even) .svc-copy { order: 2; }
.svc-copy {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-copy h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.svc-copy p { margin: 0; color: var(--muted); font-size: 1rem; }
.svc-visual {
  position: relative;
  min-height: 240px;
  background: var(--white);
}
.svc-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--grey);
  aspect-ratio: 4/5;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-copy h2 {
  margin: 0.65rem 0 0.85rem;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.founder-copy p { color: var(--muted); margin: 0 0 0.85rem; }
.founder-meta {
  margin: 1rem 0 1.5rem;
  font-weight: 700;
}
.founder-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}
.founder-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
}
.founder-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

/* Testimonials / work spotlight */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.work-card__media {
  aspect-ratio: 16/11;
  background: var(--grey);
  position: relative;
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card__body { padding: 1.15rem 1.2rem 1.35rem; }
.work-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.work-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Offer */
.offer-card {
  background: var(--grey);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}
.offer-list li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
}
.offer-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}
.offer-side {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.offer-side .price-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.offer-side .price {
  margin: 0.5rem 0 1.15rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.offer-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.15rem 1.25rem;
  font-weight: 750;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
  min-height: 56px;
}
.faq-item button span.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-panel {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  display: none;
}
.faq-item.is-open .faq-panel { display: block; }
.faq-item.is-open button span.icon { background: var(--blue); color: var(--white); }
.faq-item.is-open button span.icon::before { content: "–"; }
.faq-item button span.icon::before { content: "+"; }
.faq-item button span.icon { font-size: 0; }
.faq-item button span.icon::before { font-size: 1.1rem; }

/* Final CTA */
.final-cta {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.final-cta h2 {
  margin: 0.5rem auto 0.75rem;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.final-cta p {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.85);
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.footer-copy {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Floating bar */
.float-bar {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 45;
  width: min(calc(100% - 1.5rem), 920px);
  background: #111318;
  color: var(--white);
  border-radius: 999px;
  padding: 0.65rem 0.7rem 0.65rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.float-bar.is-hidden { display: none; }
.float-copy strong { display: block; font-size: 0.95rem; font-weight: 750; }
.float-copy span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.float-actions { display: flex; align-items: center; gap: 0.45rem; }
.float-dismiss {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}
.float-mobile { display: none; }
.float-desktop { display: block; }

/* Quiz modal */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(9, 9, 9, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.quiz-overlay.is-open { display: flex; }
.quiz-modal {
  width: min(100%, 760px);
  max-height: min(92vh, 880px);
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.quiz-top img { height: 24px; }
.quiz-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--grey);
  cursor: pointer;
  font-size: 1.2rem;
}
.quiz-progress {
  height: 4px;
  background: var(--grey);
}
.quiz-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: width 0.3s ease;
}
.quiz-body {
  padding: 1.5rem 1.5rem 1.25rem;
  overflow-y: auto;
  flex: 1;
}
.quiz-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.quiz-body h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
}
.quiz-body .hint {
  margin: 0 0 1.25rem;
  color: var(--muted);
}
.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.answer-grid.one-col { grid-template-columns: 1fr; }
.answer {
  text-align: left;
  min-height: 56px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.answer:hover { border-color: #c5cae0; background: var(--white); }
.answer.is-selected {
  border-color: var(--blue);
  background: var(--soft-blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.currency-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.currency-row button {
  flex: 1;
  min-height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-weight: 750;
  cursor: pointer;
}
.currency-row button.is-selected {
  border-color: var(--blue);
  background: var(--soft-blue);
  color: var(--blue);
}
.quiz-field { display: grid; gap: 0.35rem; margin-bottom: 0.9rem; }
.quiz-field label { font-size: 0.82rem; font-weight: 700; }
.quiz-field input {
  min-height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 0.75rem 0.95rem;
  background: var(--white);
}
.quiz-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 63, 255, 0.15);
}
.quiz-field .error {
  color: #c62828;
  font-size: 0.8rem;
  font-weight: 600;
  min-height: 1.1em;
}
.quiz-consent {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.quiz-footer {
  display: flex;
  gap: 0.65rem;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.quiz-footer .btn { flex: 1; }
.welcome-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}
.welcome-points li {
  display: flex;
  gap: 0.45rem;
  font-weight: 650;
  font-size: 0.92rem;
}
.welcome-points li::before { content: "✓"; color: var(--success); font-weight: 800; }

.diagnosis {
  display: grid;
  gap: 0.85rem;
}
.diagnosis .badge { align-self: flex-start; }
.diagnosis h2 { margin: 0; }
.diagnosis ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}
.diagnosis-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .device-phone { display: none; }
  .system-grid, .stats-grid, .work-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .svc-panel, .founder-grid, .offer-card, .audit-panel { grid-template-columns: 1fr; }
  .svc-panel:nth-child(even) .svc-copy { order: 0; }
  .svc-visual { min-height: 200px; height: 220px; }
  .offer-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { top: 0.5rem; }
  .site-header .btn span.full { display: none; }
  .hero-visual { grid-template-columns: 1fr; }
  .device-tablet { display: none; }
  .system-grid, .stats-grid, .work-grid { grid-template-columns: 1fr; }
  .answer-grid { grid-template-columns: 1fr; }
  .float-desktop { display: none; }
  .float-mobile { display: block; }
  .float-bar {
    width: calc(100% - 1rem);
    border-radius: 18px;
    padding: 0.65rem 0.65rem 0.65rem 1rem;
  }
  .quiz-overlay { padding: 0; align-items: stretch; }
  .quiz-modal {
    width: 100%;
    max-height: none;
    height: 100%;
    border-radius: 0;
  }
  .quiz-footer {
    position: sticky;
    bottom: 0;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}
