@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #FAF6F1;
  --surface: #FFFFFF;
  --surface-alt: #F4EDE3;
  --ink: #2A2523;
  --muted: #7A6F67;
  --border: #E8E0D6;
  --accent: #FF7A59;
  --accent-hover: #E85F3E;
  --accent-soft: #FFE8DF;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-1: 0 4px 16px rgba(42, 37, 35, 0.06);
  --shadow-2: 0 8px 24px rgba(42, 37, 35, 0.08);
  --shadow-hover-card: 0 8px 24px rgba(42, 37, 35, 0.06);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 200ms var(--ease);

  --container: 1160px;
  --section-pad: clamp(64px, 10vw, 160px);
}

* { box-sizing: border-box; }

html {
  direction: rtl;
  text-align: start;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Assistant', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 0.6em; font-weight: 700; color: var(--ink); }

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.875rem, 3vw + 0.75rem, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
}
.eyebrow, h4.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 14px;
}

p { margin: 0 0 1em; }
.meta, .body-small { font-size: 0.9375rem; line-height: 1.6; color: var(--muted); }

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

section { padding-block: var(--section-pad); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 18px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.125rem;
}
.brand span { direction: ltr; display: inline-block; }
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-cta .btn-secondary { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.btn-tertiary {
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  border-radius: 0;
  padding-bottom: 3px;
}
.btn-tertiary:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 780px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 140px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 246, 241, 0.55) 0%, rgba(250, 246, 241, 0.15) 40%, rgba(250, 246, 241, 0.65) 100%);
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero h1 { margin-bottom: 18px; }
.hero .lead {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
    min-height: 540px;
  }
}

/* Underline wavy motif */
.underline-wave {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.underline-wave::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M0 6 Q 15 0 30 5 T 60 5 T 90 5 T 120 5' fill='none' stroke='%23FF7A59' stroke-width='2.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ========== COMPACT HEADER ========== */
.compact-header {
  background: var(--surface-alt);
  padding-block: clamp(72px, 10vw, 120px);
}
.compact-header .breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.compact-header .breadcrumb a:hover { color: var(--accent); }
.compact-header h1 { margin-bottom: 16px; }
.compact-header .lead { font-size: 1.125rem; color: var(--ink); max-width: 640px; margin-bottom: 28px; }

/* ========== VALUE PROPS ========== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.value-item .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
  direction: ltr;
  display: inline-block;
}
.value-item h3 { margin-bottom: 8px; }
.value-item p { margin: 0; color: var(--muted); }

@media (max-width: 800px) {
  .value-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ========== SECTION INTRO ========== */
.section-intro {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-intro h2 { margin-bottom: 14px; }
.section-intro p { color: var(--muted); margin: 0; }

/* ========== CARDS ========== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color var(--transition);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover-card);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 18px; }
.card .card-link { display: inline-flex; gap: 6px; align-items: center; color: var(--ink); font-weight: 600; }
.card .card-link:hover { color: var(--accent); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  direction: ltr;
}
.step h3 { margin: 0 0 4px; }
.step p { color: var(--muted); margin: 0; }

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== BAND (alt) ========== */
.band-alt { background: var(--surface-alt); }

/* ========== STATS / SOCIAL PROOF ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.stat-card .stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  direction: ltr;
}
.stat-card .stat-label { color: var(--muted); margin: 0; }

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== FAQ ========== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 6px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  padding: 22px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  gap: 16px;
}
.faq-question .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-question .toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ========== CONTACT BAND ========== */
.contact-band {
  background: var(--accent-soft);
}
.contact-band-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-band h2 { margin-bottom: 14px; }
.contact-band p { color: var(--ink); margin-bottom: 28px; font-size: 1.125rem; }
.contact-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.phone-link {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
  direction: ltr;
  display: inline-block;
}
.phone-link:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ========== FOOTER ========== */
footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand { font-size: 1.25rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { color: var(--muted); font-size: 0.9375rem; max-width: 340px; margin: 0; }
footer h5 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink); font-size: 0.9375rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
}
.footer-signature {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
  margin: 0;
  text-align: center;
}
.footer-signature a {
  text-decoration: underline;
  text-underline-offset: 2px;
  direction: ltr;
  display: inline-block;
}
.footer-signature a:hover { color: var(--accent); }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== STICKY WHATSAPP ========== */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-2);
  transition: transform var(--transition), background var(--transition);
}
.wa-sticky:hover { background: var(--accent-hover); transform: translateY(-2px); }
.wa-sticky svg { width: 28px; height: 28px; }

/* ========== FORMS ========== */
.form {
  display: grid;
  gap: 18px;
}
.form-field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-feedback {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  display: none;
}
.form-feedback.show { display: block; }
.form-feedback.success {
  background: var(--accent-soft);
  color: var(--ink);
  border: 1px solid #F8C8B5;
}
.form-feedback.error {
  background: #FFEFEF;
  color: #8A2F1E;
  border: 1px solid #F3C5BC;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-card .method {
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-card .method:last-child { border-bottom: none; }
.contact-card .method h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 8px;
}
.contact-card .method .val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  direction: ltr;
}
.contact-card .method .note { color: var(--muted); font-size: 0.9375rem; margin: 0; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ========== CHIPS ========== */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
}

/* ========== SERVICE DETAIL ========== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col h2 { margin-bottom: 18px; }
.two-col p { color: var(--ink); }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  position: relative;
  padding-inline-start: 34px;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.feature-list li::before {
  content: '';
  position: absolute;
  top: 8px;
  inset-inline-start: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7A59' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* ========== PRICING TIERS ========== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  border-color: var(--accent);
  position: relative;
}
.tier.featured::before {
  content: 'פופולרי';
  position: absolute;
  top: -12px;
  inset-inline-end: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.tier h3 { margin-bottom: 6px; }
.tier .tier-tagline { color: var(--muted); margin-bottom: 20px; font-size: 0.9375rem; }
.tier .tier-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 22px;
}
.tier ul { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.tier ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9375rem;
  color: var(--ink);
}
.tier ul li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== PRINCIPLES GRID ========== */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.principle { text-align: start; }
.principle .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.principle .icon svg { width: 26px; height: 26px; }
.principle h3 { margin-bottom: 6px; font-size: 1.125rem; }
.principle p { color: var(--muted); font-size: 0.9375rem; margin: 0; }

@media (max-width: 900px) {
  .principles { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 500px) {
  .principles { grid-template-columns: 1fr; }
}

/* ========== ABOUT NARRATIVE ========== */
.narrative {
  max-width: 680px;
  margin: 0 auto;
}
.narrative p { font-size: 1.125rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.2em; }

/* ========== FUNNEL & QUOTE (multi-step) ========== */
.flow-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.flow-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.flow-bar .brand { font-size: 1.125rem; }
.flow-bar .close-x {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}
.flow-bar .close-x:hover { background: var(--ink); color: #fff; }
.flow-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 8vw, 88px);
}
.flow-container {
  width: min(100% - 40px, 720px);
  margin-inline: auto;
}
.progress-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.progress-dots .dot {
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  transition: background var(--transition);
}
.progress-dots .dot.active { background: var(--accent); }
.progress-dots .dot.done { background: var(--ink); }

.funnel-page, .quote-step { display: none; }
.funnel-page.active, .quote-step.active { display: block; animation: stepIn 400ms var(--ease); }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-q {
  font-size: clamp(1.75rem, 3vw + 0.75rem, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-sub { color: var(--muted); margin: 0 0 30px; font-size: 1.0625rem; }
.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.choice-pill {
  padding: 16px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.choice-pill:hover { border-color: var(--ink); transform: translateY(-1px); }
.choice-pill.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
}
.choice-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.choice-stack .choice-pill { width: 100%; text-align: start; padding: 18px 22px; border-radius: var(--radius-md); }

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.step-nav .spacer { flex: 1; }

/* Progress bar */
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 40px;
}
.progress-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 25%;
  transition: width 400ms var(--ease);
}

/* Quote live estimate */
.estimate-card {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.estimate-card h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}
.estimate-range {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  direction: ltr;
  text-align: start;
}
.estimate-note { font-size: 0.875rem; color: var(--muted); margin: 0; }

.quote-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .flow-main {
    align-items: flex-start;
    padding-block: 24px 48px;
  }
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .estimate-card {
    position: static;
    top: auto;
    padding: 20px 22px;
  }
  .estimate-range { font-size: 1.5rem; }
  .step-q { font-size: 1.5rem; margin-bottom: 8px; }
  .step-sub { margin-bottom: 22px; font-size: 1rem; }
  .choice-stack { margin-bottom: 22px; }
  .choice-stack .choice-pill { padding: 16px 18px; font-size: 0.9375rem; }
  .progress-bar { margin-bottom: 28px; }
  .step-nav .btn { flex: 1; }
}

/* Confirmation */
.confirmation {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.confirmation .check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
}
.confirmation .check svg { width: 36px; height: 36px; }
.confirmation h2 { margin-bottom: 12px; }
.confirmation p { color: var(--muted); margin-bottom: 28px; }
.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slim footer for flows */
.footer-slim {
  background: transparent;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-slim .footer-signature { text-align: center; }

/* ========== SCROLL REVEALS ========== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero { background-attachment: scroll; }
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.no-pad-top { padding-top: 0; }

/* section intro centered variant */
.section-intro-center { text-align: center; margin-inline: auto; }
