:root {
  --color-bg: #fff9f5;
  --color-surface: #ffffff;
  --color-surface-soft: #fdeee8;
  --color-surface-gold: #fff7e6;
  --color-primary: #bd6755;
  --color-primary-dark: #8f493b;
  --color-primary-light: #ee9d89;
  --color-gold: #d7a34b;
  --color-text: #352a27;
  --color-muted: #6e625e;
  --color-border: #ecd9d1;
  --color-success: #266b4f;
  --color-error: #a62c2c;
  --shadow-sm: 0 8px 24px rgba(91, 55, 45, 0.08);
  --shadow-md: 0 20px 55px rgba(91, 55, 45, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 8%, rgba(233, 146, 127, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(214, 162, 71, 0.09), transparent 26rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

body.menu-open { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--color-text);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: linear-gradient(180deg, rgba(253, 240, 236, 0.78), rgba(255, 250, 247, 0.65)); }
.section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  color: var(--color-muted);
  font-size: 1.12rem;
}
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(234, 218, 212, 0.8);
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--color-primary-dark);
  white-space: nowrap;
}
.brand-mark { width: 46px; height: 46px; }
.brand-text small { display: block; color: var(--color-muted); font-weight: 400; font-size: 0.76rem; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  text-decoration: none;
  color: var(--color-muted);
  font-weight: 700;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { color: var(--color-primary-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: #fff;
  color: var(--color-text);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  box-shadow: 0 10px 30px rgba(183, 95, 76, 0.25);
}
.button-secondary { background: #fff; border-color: var(--color-border); color: var(--color-primary-dark); }
.button-ghost { background: transparent; border-color: rgba(183, 95, 76, 0.32); color: var(--color-primary-dark); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 0.94rem; }
.button:disabled { opacity: 0.62; cursor: wait; transform: none; }

.hero { padding: 54px 0 76px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.65rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.hero h1 span { color: var(--color-primary); }
.hero-copy > p {
  max-width: 690px;
  margin: 0 0 22px;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.personal-note {
  max-width: 650px;
  display: grid;
  gap: 3px;
  margin: 0 0 26px;
  padding: 14px 17px;
  border-right: 4px solid var(--color-gold);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 25px rgba(91,55,45,.06);
}
.personal-note strong { color: var(--color-primary-dark); }
.personal-note span { color: var(--color-muted); font-size: .96rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; color: var(--color-muted); font-size: 0.94rem; }
.hero-notes span { display: inline-flex; align-items: center; gap: 8px; }
.hero-notes span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-gold); }
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -12% -7% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 146, 127, 0.23), transparent 68%);
  filter: blur(12px);
}
.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 162, 71, 0.25);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.hero-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center center; }
.hero-float {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 250px;
  padding: 16px 18px;
  border: 1px solid rgba(234, 218, 212, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.hero-float strong, .hero-float span { display: block; }
.hero-float strong { color: var(--color-primary-dark); margin-bottom: 3px; }
.hero-float span { color: var(--color-muted); font-size: .92rem; }

.logo-banner {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.logo-banner img { width: 100%; aspect-ratio: 16 / 5; object-fit: contain; object-position: center; background: #fff8f4; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.trust-item {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.trust-item strong { display: block; color: var(--color-primary-dark); margin-bottom: 5px; }
.trust-item span { color: var(--color-muted); font-size: 0.94rem; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--color-surface-soft), var(--color-surface-gold));
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  font-weight: 900;
}
.card h3 { margin: 0 0 10px; font-size: 1.28rem; }
.card p { margin: 0; color: var(--color-muted); }
.card a { display: inline-flex; margin-top: 18px; color: var(--color-primary-dark); font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-step {
  position: relative;
  padding: 28px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
}
.process-step h3 { margin: 0 0 8px; }
.process-step p { margin: 0; color: var(--color-muted); }

.about-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 52px; align-items: center; }
.about-visual {
  min-height: 520px;
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 250, 247, 0.12), rgba(255, 250, 247, 0.12)),
    url("../images/hero-scene.webp") center / cover;
  box-shadow: var(--shadow-md);
}
.about-lead { font-size: 1.15rem; color: var(--color-text) !important; }
.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 270px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}
.about-content p { color: var(--color-muted); font-size: 1.07rem; }
.check-list { margin: 24px 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-right: 28px; }
.check-list li::before { content: "✓"; position: absolute; right: 0; color: var(--color-primary); font-weight: 900; }

.quote-section {
  padding: 58px 0;
  background: linear-gradient(120deg, var(--color-primary-dark), #6f3c34);
  color: #fff;
}
.quote-box { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-box blockquote { margin: 0 0 18px; font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1.35; }
.quote-box p { margin: 0; opacity: 0.78; }

.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--color-border); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: right;
  font-weight: 800;
}
.faq-button::after { content: "+"; color: var(--color-primary); font-size: 1.5rem; }
.faq-button[aria-expanded="true"]::after { content: "−"; }
.faq-panel { padding: 0 22px 22px; color: var(--color-muted); }
.faq-panel p { margin: 0; }

.contact-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: stretch;
}
.contact-info {
  padding: 34px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-primary-dark), #6d3b33);
  color: #fff;
}
.contact-info p { opacity: 0.82; }
.contact-details { display: grid; gap: 14px; margin-top: 28px; }
.contact-details a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-details span { display: block; opacity: 0.7; font-size: 0.88rem; }


.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-card {
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label, .field-label { font-weight: 800; }
.required-mark { color: var(--color-error); }
.form-field input,
.form-field textarea,
.form-field select,
.wizard-field input,
.wizard-field textarea,
.wizard-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9cbc6;
  border-radius: 13px;
  background: #fffdfc;
  color: var(--color-text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea, .wizard-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.wizard-field input:focus,
.wizard-field textarea:focus,
.wizard-field select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(183, 95, 76, 0.12);
}
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; color: var(--color-muted); }
.checkbox-row input { margin-top: 6px; accent-color: var(--color-primary); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; }
.form-note { color: var(--color-muted); font-size: 0.88rem; }
.form-note-error { color: var(--color-error); }
.form-status { margin-top: 16px; padding: 12px 14px; border-radius: 12px; outline: none; }
.form-status.is-info { background: #eef5ff; color: #26517f; }
.form-status.is-success { background: #eaf6f0; color: var(--color-success); }
.form-status.is-error { background: #fff0f0; color: var(--color-error); }
.turnstile-box { margin-top: 18px; min-height: 0; }

.page-hero { padding: 54px 0 42px; text-align: center; }
.page-hero h1 { margin: 0 0 16px; font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.08; }
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--color-muted); font-size: 1.1rem; }

.questionnaire-shell { max-width: 890px; margin: 0 auto; }
.backup-form-note { margin: 0 0 18px; padding: 12px 15px; border-radius: 13px; background: var(--color-surface-gold); color: var(--color-muted); font-size: .93rem; }
.backup-form-note a { color: var(--color-primary-dark); font-weight: 800; }
.questionnaire-progress { margin-bottom: 22px; }
.progress-meta { display: flex; justify-content: space-between; color: var(--color-muted); font-size: 0.92rem; margin-bottom: 8px; }
.progress-track { height: 10px; overflow: hidden; border-radius: 999px; background: #f0dfd9; }
.progress-bar { height: 100%; width: 20%; border-radius: inherit; background: linear-gradient(90deg, var(--color-primary), var(--color-gold)); transition: width 0.25s ease; }
.wizard-step { padding: clamp(24px, 5vw, 44px); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.wizard-step legend { width: 100%; margin-bottom: 8px; padding: 0; font-size: clamp(1.65rem, 3.5vw, 2.35rem); font-weight: 900; }
.wizard-step > p { margin: 0 0 28px; color: var(--color-muted); }
.wizard-fields { display: grid; gap: 20px; }
.wizard-field { display: grid; gap: 8px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: #fffdfc;
}
.choice-card input { margin-top: 4px; accent-color: var(--color-primary); }
.wizard-navigation { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { margin-top: 36px; color: var(--color-primary-dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--color-muted); }
.legal-content a { color: var(--color-primary-dark); }
.notice-box { padding: 18px; border-right: 5px solid var(--color-gold); border-radius: 12px; background: var(--color-surface-gold); }

.thank-you-card {
  max-width: 720px;
  margin: 70px auto;
  padding: clamp(34px, 7vw, 68px);
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.thank-you-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--color-surface-soft); color: var(--color-primary); font-size: 2.5rem; }
.thank-you-card h1 { margin: 0 0 16px; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.thank-you-card p { color: var(--color-muted); }
.thank-you-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-footer { padding: 58px 0 24px; border-top: 1px solid var(--color-border); background: #fff7f3; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 34px; }
.footer-title { margin: 0 0 13px; font-size: 1.1rem; }
.footer-text { max-width: 440px; color: var(--color-muted); }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--color-muted); text-decoration: none; }
.footer-links a:hover { color: var(--color-primary-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--color-border); color: var(--color-muted); font-size: 0.86rem; }

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #267d5a;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 12px 28px rgba(38, 125, 90, 0.28);
}

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 24px 30px;
    border-bottom: 1px solid var(--color-border);
    background: #fffaf7;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--color-border); }
  .header-actions .button { display: none; }
  .hero-grid, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .hero-float { right: 18px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 64px 0; }
  .header-inner { gap: 10px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-text { font-size: 0.92rem; }
  .brand-text small { font-size: 0.69rem; }
  .hero { padding-top: 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; gap: 9px; }
  .hero-float { position: static; max-width: none; margin: -12px 14px 16px; }
  .personal-note { text-align: right; margin-inline: auto; }
  .logo-banner { border-radius: 20px; }
  .cards-grid, .process-grid, .form-grid, .choice-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .about-visual { min-height: 390px; }
  .form-card, .contact-info, .legal-content { padding: 24px; }
  .wizard-step { padding: 23px 18px; }
  .wizard-navigation { flex-direction: column-reverse; }
  .wizard-navigation .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { left: 14px; bottom: 14px; width: 52px; height: 52px; }
}

@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; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* 2026-08-06 polish: warmer hero, safe caption, questionnaire fallback */
.hero { background: radial-gradient(circle at 82% 22%, rgba(245, 205, 184, .20), transparent 34%), linear-gradient(180deg, #fffaf6 0%, #fffdfb 100%); }
.hero h1 { font-size: clamp(3.2rem, 6vw, 5.55rem); letter-spacing: -.035em; }
.hero-copy > p { color: #6c5b55; }
.hero-card { overflow: hidden; }
.hero-float {
  right: 22px;
  left: 22px;
  bottom: 20px;
  max-width: none;
  box-sizing: border-box;
  padding: 15px 18px;
  backdrop-filter: blur(12px);
  background: rgba(255, 252, 249, .94);
}
.hero-float strong, .hero-float span { overflow-wrap: anywhere; }
.hero-actions .text-link, .form-actions .text-link { align-self: center; }
.questionnaire-fallback {
  margin: 22px auto 0;
  max-width: 650px;
  padding: 12px 16px;
  border: 1px solid rgba(183,95,76,.18);
  border-radius: 14px;
  background: rgba(255,248,244,.88);
  color: #6c5b55;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.questionnaire-fallback a { font-weight: 800; color: var(--color-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.9rem); }
  .hero-float { position: static; margin: -10px 12px 16px; }
}
