* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --text2: #999;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.15);
  --red: #ef4444;
  --radius: 12px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); }
.logo span { color: var(--accent); }
nav a.nav-cta {
  background: var(--accent);
  color: #000;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
nav a.nav-cta:hover { background: var(--accent-hover); }

/* HERO compact */
.hero.compact {
  text-align: center;
  padding: 40px 20px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.hero .price-tag {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 17px;
  color: var(--text2);
  max-width: 450px;
  margin: 0 auto;
}

/* WIZARD */
.wizard-wrap {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  transition: opacity 0.3s;
}
.wiz-dots { display: flex; gap: 6px; }
.wiz-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.wiz-dot.active { background: var(--accent); }
.wiz-dot.done { background: var(--accent); opacity: 0.5; }
.wiz-count { font-size: 13px; color: var(--text2); font-weight: 600; }

.wiz-step { display: none; animation: wizFadeIn 0.25s ease; }
.wiz-step.active { display: block; }
@keyframes wizFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wiz-step h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.wiz-sub { font-size: 14px; color: var(--text2); margin-bottom: 20px; }

.wiz-step textarea,
.wiz-step input[type="text"],
.wiz-step input[type="email"],
.wiz-step input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.wiz-step textarea { resize: none; min-height: 120px; }
.wiz-step input:focus, .wiz-step textarea:focus { outline: none; border-color: var(--accent); }
.wiz-skip { margin-top: 8px; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text2);
}

/* Shake */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.shake { animation: shake 0.4s ease; border-color: var(--red) !important; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { background: var(--surface2); border-color: var(--text2); }
.btn-sm { padding: 10px 20px; font-size: 14px; width: auto; }
.btn .arrow { font-size: 18px; }

/* AI LOADING */
.ai-loading { text-align: center; padding: 20px 0; }
.ai-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ai-loading h2 { font-size: 20px; margin-bottom: 6px; }

.ai-checklist {
  text-align: left;
  max-width: 320px;
  margin: 24px auto;
}
.ai-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text2);
  transition: color 0.3s;
}
.ai-check-item.done { color: var(--accent); }
.ai-check-icon {
  font-size: 10px;
  width: 20px;
  text-align: center;
  transition: color 0.3s;
}
.ai-check-item.done .ai-check-icon { font-size: 14px; }
.ai-note {
  font-size: 13px;
  color: var(--text2);
  margin-top: 20px;
}
.ai-note strong { color: var(--text); }

/* AI BADGE */
.ai-badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* AI QUESTIONS */
.aiq-field { margin-bottom: 16px; }
.aiq-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.aiq-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.aiq-select:focus { outline: none; border-color: var(--accent); }

/* MOCKUP DISPLAY */
.mockup-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.mockup-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mockup-label {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
.mockup-canvas {
  padding: 0;
  min-height: 280px;
}
.mockup-disclaimer {
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

/* WIREFRAME MOCKUP COMPONENTS */
.mock-phone, .mock-desktop {
  font-size: 11px;
  overflow: hidden;
}
.mock-header {
  padding: 10px 12px;
  color: #000;
  font-weight: 800;
  font-size: 12px;
}
.mock-body { padding: 12px; }
.mock-title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text);
}
.mock-card {
  background: var(--surface2);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
}
.mock-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 5px;
}
.mock-bar:last-child { margin-bottom: 0; }
.mock-bar.light { background: #1a1a1a; height: 6px; }
.mock-bar.w30 { width: 30%; }
.mock-bar.w35 { width: 35%; }
.mock-bar.w40 { width: 40%; }
.mock-bar.w50 { width: 50%; }
.mock-bar.w60 { width: 60%; }
.mock-bar.w70 { width: 70%; }
.mock-bar.w80 { width: 80%; }
.mock-bar.w25 { width: 25%; }
.mock-bar.w20 { width: 20%; }
.mock-bar.w15 { width: 15%; }
.mock-bar.w10 { width: 10%; }

.mock-btn {
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 11px;
  color: #000;
  margin-top: 10px;
}
.mock-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin: 10px 0;
}
.mock-slot {
  text-align: center;
  padding: 6px;
  background: var(--surface2);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text2);
  font-weight: 600;
}
.mock-slot.active {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.mock-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-product { text-align: left; }
.mock-img {
  width: 100%;
  height: 50px;
  background: var(--surface2);
  border-radius: 4px;
  margin-bottom: 6px;
}
.mock-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.mock-stat {
  background: var(--surface2);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
}
.mock-stat-num {
  font-weight: 900;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 4px;
}
.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-bottom: 12px;
  padding: 0 4px;
}
.mock-chart-bar {
  flex: 1;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
}
.mock-table { margin-bottom: 8px; }
.mock-table-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #1a1a1a;
}
.mock-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.mock-badge.dim { background: #1a1a1a; color: var(--text2); }
.mock-search {
  background: var(--surface2);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

/* PROOF STRIP */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px 40px;
  max-width: 500px;
  margin: 0 auto;
}
.proof-item { font-size: 13px; color: var(--text2); text-align: center; }
.proof-item strong { color: var(--accent); font-weight: 800; }
.proof-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* HOW IT WORKS */
.steps-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.steps-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* EXAMPLES */
.examples-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.examples-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.examples-section .sub { text-align: center; color: var(--text2); margin-bottom: 40px; }
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.example-card .tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.example-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.example-card p { font-size: 13px; color: var(--text2); line-height: 1.5; }
.example-card .built-in { margin-top: 12px; font-size: 12px; color: var(--accent); font-weight: 600; }

/* FAQ */
.faq-section {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.faq-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}
.faq-q .toggle { font-size: 20px; color: var(--text2); transition: transform 0.2s; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-top: 12px; font-size: 14px; color: var(--text2); line-height: 1.6; }
.faq-item.open .faq-a { max-height: 200px; }

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.final-cta p { color: var(--text2); font-size: 18px; margin-bottom: 32px; }

/* FOOTER */
footer {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text2);
}

/* ========== CONFIRMATION PAGE (quote.html) ========== */
.confirm-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.confirm-header {
  text-align: center;
  margin-bottom: 32px;
}
.confirm-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.confirm-header h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}
.confirm-header p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}

/* DISCOUNT CARD */
.discount-card {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}
.discount-card .badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.discount-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.discount-card .prices { margin-bottom: 12px; }
.discount-card .old-price {
  text-decoration: line-through;
  color: var(--text2);
  font-size: 20px;
  margin-right: 12px;
}
.discount-card .new-price {
  color: var(--accent);
  font-size: 32px;
  font-weight: 900;
}
.discount-card .savings {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* RECEIPT */
.receipt {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.receipt-header h3 { font-size: 16px; font-weight: 800; }
.receipt-status {
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.receipt-section { margin-bottom: 16px; }
.receipt-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.receipt-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.receipt-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text2);
}
.receipt-row span:last-child { color: var(--text); font-weight: 600; }
.receipt-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.receipt-mockup-placeholder {
  background: var(--surface2);
  border: 1px dashed var(--border);
  border-radius: 8px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 12px;
}

/* NEXT STEPS */
.next-steps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.next-steps h3 { font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.next-step-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.next-step-item:last-child { margin-bottom: 0; }
.next-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
}
.next-step-item strong { font-size: 14px; display: block; margin-bottom: 2px; }
.next-step-item p { font-size: 13px; color: var(--text2); margin: 0; }

/* COMMS BOX */
.comms-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.comms-box h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.comms-box p { font-size: 14px; color: var(--text2); margin-bottom: 12px; }
.comms-email {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.comms-note { font-size: 12px; color: var(--text2); margin: 0; }

/* CHECKOUT PAGE */
.checkout-page {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.checkout-page h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
}
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.order-summary h3 {
  font-size: 14px;
  color: var(--text2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.order-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}
.order-line.total {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 800;
  font-size: 18px;
}
.order-line .old { text-decoration: line-through; color: var(--text2); margin-right: 8px; }

.payment-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.payment-form h3 {
  font-size: 14px;
  color: var(--text2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text2);
}
.field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.field input:focus { outline: none; border-color: var(--accent); }
#card-element {
  padding: 14px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 20px;
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 20px;
}
.guarantee {
  text-align: center;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.guarantee p { font-size: 13px; color: var(--text2); }
.guarantee strong { color: var(--text); }

/* PROGRESS BAR (checkout) */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 20px 0;
  max-width: 500px;
  margin: 0 auto;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 600;
}
.progress-step.active { color: var(--accent); }
.progress-step.done { color: var(--accent); }
.progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.progress-step.active .progress-dot {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}
.progress-step.done .progress-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: #000;
}
.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  max-width: 60px;
}
.progress-line.done { background: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .hero.compact { padding: 24px 16px 12px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
  .hero p { font-size: 15px; }
  .hero .price-tag { font-size: 10px; padding: 4px 12px; }
  .wizard-wrap { padding: 16px 16px 32px; }
  .wiz-step h2 { font-size: 18px; }
  .steps { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .mockup-display { grid-template-columns: 1fr; }
  .receipt-mockups { grid-template-columns: 1fr; }
  .proof-strip { gap: 12px; }
  .proof-item { font-size: 12px; }
  .confirm-header h1 { font-size: 26px; }
  .discount-card { padding: 24px 16px; }
  .receipt { padding: 20px 16px; }
  .mock-stat-num { font-size: 13px; }
}
