:root {
  --bg: #f7f4ef;
  --panel: #ffffff;
  --text: #1f1f1f;
  --muted: #666;
  --line: #e8e2d8;
  --accent: #d86f2d;
  --accent-dark: #b75c24;
  --soft: #fff2e9;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.narrow { max-width: 820px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.logo-secondary {
  display: inline-flex;
  gap: 3px;
  color: var(--text);
  font-weight: 700;
}

.logo-word {
  display: inline-block;
}

.logo-word-fast {
  color: var(--accent);
  font-weight: 900;
}

.logo:hover .logo-word-fast {
  color: var(--accent-dark);
}

.accent { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher form {
  display: inline-flex;
  margin: 0;
}

.language-switcher button {
  min-width: 30px;
  min-height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: 0.18s ease;
}

.language-switcher button:hover {
  color: var(--accent-dark);
}

.language-switcher .is-active {
  background: var(--soft);
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: white;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.full-width { width: 100%; }

.hero,
.page-hero {
  padding: 64px 0 44px;
}

.hero .wrap {
  width: min(1280px, calc(100% - 32px));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 52px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  background: var(--soft);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.hero p,
.page-copy {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-microcopy {
  margin: 0 0 18px;
}

.hero-price-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 8px;
  font-weight: 700;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #faf8f4;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.url {
  margin-left: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  width: 100%;
  min-width: 0;
  font-size: 0.86rem;
}

.preview-content {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 0;
  min-width: 0;
}

.builder-panel {
  padding: 12px 12px;
  border-right: 1px solid var(--line);
  background: #fcfbf8;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.builder-panel h3,
.preview-panel h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.preview-kicker {
  margin: 0 0 8px;
  font-weight: 700;
}

.preview-helper {
  margin-bottom: 12px;
}

.field { margin-bottom: 9px; }

.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font: inherit;
}

.form-group {
  margin-bottom: 10px; /* instead of 14–16 */
}

input, textarea, select {
  padding: 10px 12px; /* slightly smaller */
}

.field textarea {
  min-height: 102px;
  resize: vertical;
}

.preview-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 16px 16px;
  min-width: 0;
  overflow: hidden;
}

.preview-panel-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.preview-panel-head h3 {
  margin-bottom: 0;
}

.preview-template-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-preview-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.phone-preview {
  width: 100%;
  max-width: 256px;
  padding: 9px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #1f1f1f;
  box-shadow: var(--shadow);
  min-width: 0;
}

.phone-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  margin-bottom: 10px;
}

.phone-camera {
  position: absolute;
  left: 50%;
  transform: translateX(-52px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
}

.phone-speaker {
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: #343434;
}

.phone-screen {
  min-width: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7f1 0%, #ffffff 58%);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 8px;
  min-width: 0;
}

.phone-status-text {
  font-weight: 700;
}

.phone-card {
  margin: 0 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  min-width: 0;
}

.phone-brand {
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.phone-title {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.phone-copy {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.phone-cta {
  width: 100%;
  min-height: 42px;
  font-size: 0.9rem;
}

.phone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.preview-summary-card {
  max-width: 760px;
}

.public-preview-page {
  padding: 46px 0 72px;
  background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
}

.public-preview-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: start;
}

.public-preview-sidebar,
.preview-browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.public-preview-sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.public-preview-sidebar h1 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.public-preview-sidebar p {
  margin: 0 0 20px;
  color: var(--muted);
}

.preview-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.preview-detail-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.preview-detail-list dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.preview-detail-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.preview-detail-list [data-preview-field="short_description"] {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

.preview-sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.public-preview-stage {
  min-width: 0;
}

.preview-browser {
  overflow: hidden;
}

.jcw-preview-template {
  background: #fff;
  color: #1f1f1f;
}

.jcw-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.jcw-preview-header strong {
  font-size: 1.08rem;
}

.jcw-preview-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.jcw-preview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 52px 34px;
  background: linear-gradient(135deg, #fff7f1 0%, #ffffff 66%);
}

.jcw-preview-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-weight: 800;
}

.jcw-preview-hero h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.jcw-preview-hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.jcw-preview-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.jcw-preview-card span {
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.jcw-preview-card strong {
  font-size: 1.45rem;
}

.jcw-preview-card p {
  margin: 0;
  color: var(--muted);
}

.jcw-preview-services,
.jcw-preview-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
  gap: 24px;
  padding: 34px;
  border-top: 1px solid var(--line);
}

.jcw-preview-services h3,
.jcw-preview-contact h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.jcw-preview-services p,
.jcw-preview-contact p {
  margin: 0;
  color: var(--muted);
}

.jcw-preview-service-grid {
  display: grid;
  gap: 10px;
}

.jcw-preview-service-grid span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfaf6;
  font-weight: 700;
}

.jcw-preview-contact {
  align-items: center;
  background: #fcfaf6;
}

.jcw-preview-contact div:last-child {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.jcw-preview-contact strong {
  font-size: 1.1rem;
}

.jcw-preview-contact span {
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.48);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin: 48px auto;
}

.modal-dialog-preview {
  width: min(1180px, calc(100% - 32px));
}

.modal-content {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1.3rem;
}

.modal-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.modal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.modal-copy {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 580px;
}

.onboarding-form {
  min-width: 0;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.modal-field {
  min-width: 0;
}

.modal-field-wide {
  grid-column: 1 / -1;
}

.modal-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.modal-field input,
.modal-field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: inherit;
}

.modal-field textarea {
  min-height: 112px;
  resize: vertical;
}

.field-errors {
  margin-top: 6px;
}

.field-errors p {
  margin: 0;
  color: #9a3d1a;
  font-size: 0.82rem;
}

.modal-actions {
  margin-top: 20px;
}

.modal-preview-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 18px;
  align-items: stretch;
}

.modal-preview-form {
  min-width: 0;
}

.modal-preview-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.modal-template-browser {
  min-height: 100%;
}

.modal-jcw-preview .jcw-preview-header {
  padding: 14px 16px;
}

.modal-jcw-preview .jcw-preview-header nav {
  gap: 10px;
  font-size: 0.82rem;
}

.modal-jcw-preview .jcw-preview-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 28px 20px;
}

.modal-jcw-preview .jcw-preview-hero h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.modal-jcw-preview .jcw-preview-services {
  grid-template-columns: 1fr;
  padding: 22px 20px;
}

.modal-jcw-preview .jcw-preview-card {
  padding: 18px;
}

.modal-preview-status {
  margin: 10px 0 0;
}

.modal-preview-status.is-saved {
  color: var(--accent-dark);
  font-weight: 700;
}

section { padding: 58px 0; }

.section-band {
  position: relative;
}

.section-plain {
  background: #ffffff;
}

.section-soft {
  background: linear-gradient(180deg, #f8f5f0 0%, #f3eee7 100%);
}

.section-emphasis {
  padding: 96px 0;
}

.section-cta-shell {
  padding: 76px 0 92px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.section-head p {
  color: var(--muted);
  max-width: 650px;
  margin: 0;
}

.section-head-centered {
  align-items: center;
}

.steps,
.examples,
.faq,
.proof-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.steps,
.examples,
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.proof-grid { grid-template-columns: repeat(4, 1fr); }
.faq { grid-template-columns: 1fr 1fr; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.card,
.pricing-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.card h3,
.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.pricing-card h3 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.plan-card-title {
  margin: 0 0 18px;
  font-size: 1.9rem;
  line-height: 1.15;
}

.card p,
.card li,
.pricing-card li,
.pricing-head p,
.pricing-footnote p { color: var(--muted); }

.example-shot {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff5ee, #f6ece5);
  border: 1px solid var(--line);
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-weight: 700;
}

.feature-strip-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-badge {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid #e4dacd;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.feature-badge strong {
  font-size: 0.98rem;
}

.feature-badge span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.feature-badge-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.steps .card {
  padding: 24px;
  border-radius: 20px;
}

.compact-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-steps .card {
  min-height: 150px;
}

#how .section-note {
  margin: 18px 0 0;
  font-weight: 700;
}

.ai-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-benefits .card {
  padding: 24px 22px;
}

.ai-benefits .feature-badge-icon {
  margin: 0 0 14px;
}

.ai-assistant-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 20px;
}

.ai-assistant-note p {
  margin: 0;
}

.ai-assistant-note strong {
  color: var(--accent-dark);
}

.proof-grid .card {
  padding: 24px 22px;
  background: #fcfaf6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.035);
}

.examples .card {
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}

.examples .template-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.examples .template-card p {
  flex: 1;
}

.examples .template-card .btn {
  margin-top: 4px;
}

.examples .example-shot {
  margin-bottom: 18px;
}

#examples .examples-note {
  margin: 18px 0 0;
  font-weight: 700;
}

.faq .card {
  padding: 24px;
  border-color: #e2d8ca;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.03);
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-section {
  padding: 96px 0;
  background: #f4f1ec;
}

.pricing-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.pricing-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  color: #111;
}

.pricing-head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.pricing-card-featured {
  border: 2px solid #d9742f;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(217, 116, 47, 0.12);
}

.pricing-card-muted {
  background: #fcfbf8;
  box-shadow: none;
}

.pricing-card-coming-soon {
  border-style: dashed;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d9742f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}

.pricing-badge-muted {
  background: #3a332b;
  color: #fff;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
  margin-bottom: 10px;
}

.price-soon {
  font-size: 2.1rem;
  color: #3a332b;
}

.price-addon {
  font-size: 2rem;
}

.price-stack {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old {
  color: #8a8177;
  font-size: 1.1rem;
  font-weight: 700;
}

.price-note {
  color: #666;
  font-size: 1rem;
  margin-bottom: 22px;
}

.pricing-card ul {
  margin: 0 0 28px;
  padding-left: 22px;
}

.clean-list {
  margin: 0;
  padding-left: 22px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.pricing-card-note {
  margin: -8px 0 24px;
  color: #3a332b;
  font-weight: 700;
}

.clean-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--muted);
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.pricing-btn-solid {
  background: #d9742f;
  color: #fff;
  border: 1px solid #d9742f;
}

.pricing-btn-solid:hover {
  background: #bf6427;
  border-color: #bf6427;
}

.pricing-btn-outline {
  background: #fff;
  color: #111;
  border: 1px solid #d8cfc3;
}

.pricing-btn-outline:hover {
  border-color: #d9742f;
  color: #d9742f;
}

.pricing-footnote { margin-top: 24px; }

.pricing-microcopy {
  margin: 18px auto 0;
  max-width: 878px;
  text-align: center;
}

.pricing-addon {
  margin: 24px auto 0;
  max-width: 878px;
  padding: 20px 24px;
  border: 1px solid #d8cfc3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.pricing-addon h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.pricing-addon p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-addon strong {
  color: #111;
  margin-right: 8px;
}

.cta {
  padding: 30px 32px;
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  color: white;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 8px 0 0;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  font-size: 0.94rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-contact a {
  color: white;
  font-weight: 700;
}

.cta-contact-divider {
  color: rgba(255, 255, 255, 0.56);
}

.cta-contact-note {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 72px 0 34px;
  background: #1f1f1f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 38px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  line-height: 1.65;
}

.site-footer-brand {
  display: grid;
  gap: 18px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-contact-list a {
  color: #fff;
  font-weight: 700;
}

.footer-supporting-note {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer-column {
  display: grid;
  gap: 11px;
}

.site-footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1024px) {
  .hero-grid,
  .preview-content,
  .steps,
  .compact-steps,
  .ai-benefits,
  .examples,
  .pricing-grid,
  .proof-grid,
  .faq,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-content,
  .public-preview-layout,
  .pricing-head {
    grid-template-columns: 1fr;
  }

  .public-preview-sidebar {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
  }

  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  section {
    padding: 50px 0;
  }

  .section-emphasis {
    padding: 82px 0;
  }

  .section-cta-shell {
    padding: 64px 0 78px;
  }

  .builder-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav { display: none; }

  .hero-grid,
  .steps,
  .compact-steps,
  .ai-benefits,
  .examples,
  .pricing-grid,
  .proof-grid,
  .faq,
  .feature-strip,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 54px 0 30px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer-bottom {
    display: grid;
    margin-top: 38px;
  }

  .section-head,
  .cta { display: block; }

  .modal-dialog {
    width: calc(100% - 20px);
    margin: 16px auto;
  }

  .modal-content {
    padding: 22px 16px 18px;
  }

  .modal-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modal-preview-layout {
    grid-template-columns: 1fr;
  }

  .modal-jcw-preview .jcw-preview-header,
  .modal-jcw-preview .jcw-preview-hero,
  .modal-jcw-preview .jcw-preview-services {
    padding-left: 14px;
    padding-right: 14px;
  }

  .public-preview-page {
    padding: 28px 0 48px;
  }

  .jcw-preview-header,
  .jcw-preview-hero,
  .jcw-preview-services,
  .jcw-preview-contact {
    grid-template-columns: 1fr;
  }

  .jcw-preview-header {
    align-items: flex-start;
  }

  .jcw-preview-hero,
  .jcw-preview-services,
  .jcw-preview-contact {
    padding: 26px 18px;
  }

  .jcw-preview-contact div:last-child {
    justify-items: start;
  }

  section {
    padding: 42px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-emphasis {
    padding: 68px 0;
  }

  .section-cta-shell {
    padding: 56px 0 70px;
  }

  .cta .btn { margin-top: 16px; }
  .cta-actions .btn { margin-top: 0; }
}
