:root{
  --bg: #f6f1e7;
  --bg-alt: #eee6d3;
  --border: #ddd0b3;
  --text: #211d16;
  --text-dim: #7c7263;
  --accent: #c1502e;
  --accent-dim: #dba793;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, Menlo, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%23c9b990' stroke-width='0.85'%3E%3Cpath d='M0 8 Q15 2 30 8 T60 8 T90 8 T120 8' opacity='0.22'/%3E%3Cpath d='M0 38 Q15 32 30 38 T60 38 T90 38 T120 38' opacity='0.22'/%3E%3Cpath d='M0 23 Q20 15 40 23 T80 23 T120 23' opacity='0.12'/%3E%3Cpath d='M0 53 Q20 45 40 53 T80 53 T120 53' opacity='0.12'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap{ max-width: 960px; margin: 0 auto; padding: 0 24px; }

header.nav{
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; }
.logo{ font-family: var(--mono); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; text-decoration: none; color: var(--text); }
.logo span{ color: var(--accent); }
.nav-links a{
  color: var(--text-dim); text-decoration:none; font-size: 14px; margin-left: 24px;
}
.nav-links a:hover{ color: var(--text); }

.hero{ padding: 88px 0 64px; border-bottom: 1px solid var(--border); }
.hero-grid{ display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 32px; align-items: center; }
.hero h1{
  font-size: 44px; line-height: 1.15; margin: 0 0 20px; font-weight: 700; letter-spacing: -0.02em;
  max-width: 640px;
}
.hero .accent-word{ color: var(--accent); }
.hero p.sub{
  font-size: 18px; color: var(--text-dim); max-width: 560px; margin: 0 0 32px;
}
.cta-row{ display:flex; align-items:center; gap: 20px; flex-wrap: wrap; }
.btn-primary{
  display:inline-block; background: var(--accent); color: #fbf3e9; font-weight: 700;
  padding: 14px 24px; border-radius: 6px; text-decoration:none; font-size: 15px;
  border: 1px solid var(--accent);
  transition: background-color 0.25s ease;
}
.btn-primary:hover{ background: #b04a2c; }
.link-secondary{ color: var(--text-dim); font-size: 14px; text-decoration: underline; text-decoration-color: var(--border); }
.link-secondary:hover{ color: var(--text); }

section{ padding: 64px 0; border-bottom: 1px solid var(--border); }
.kicker{
  font-family: var(--mono); font-size: 13px; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin: 0 0 14px;
}
h2{ font-size: 28px; margin: 0 0 20px; letter-spacing: -0.01em; max-width: 600px; }
h3{ font-size: 19px; margin: 28px 0 10px; letter-spacing: -0.01em; }
.prose{ color: var(--text-dim); font-size: 17px; max-width: 620px; margin: 0 0 16px; }
.prose:last-child{ margin-bottom: 0; }
.prose strong{ color: var(--text); }
.catch-box p{ margin: 0 0 12px; }
.catch-box p:last-child{ margin-bottom: 0; }

table.compare{
  width: 100%; border-collapse: collapse; margin-top: 28px; font-size: 15px;
}
table.compare th, table.compare td{
  text-align: left; padding: 14px 16px; border: 1px solid var(--border);
}
table.compare th{
  background: var(--bg-alt); font-family: var(--mono); font-weight: 600; font-size: 13px;
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em;
}
table.compare td:first-child{ color: var(--text-dim); }
table.compare th.us, table.compare td.us{ background: rgba(193,80,46,0.07); }
.verified-badge{ vertical-align: middle; margin-left: 5px; position: relative; top: -1px; }
.check{ color: #2f7d52; }
.cross{ color: #b23a2a; }
.source-note{
  font-family: var(--mono); font-size: 12px; color: var(--text-dim); margin-top: 12px;
}

.steps{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-top: 32px; }
.step{
  position: relative; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-alt); border-radius: 8px; padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step:hover{
  transform: translateY(-2px); border-color: var(--accent);
  box-shadow: 0 10px 20px -16px rgba(193,80,46,0.28);
}
.num-ghost{
  position: absolute; top: -14px; right: 8px; font-family: var(--mono); font-weight: 700;
  font-size: 76px; color: var(--accent); opacity: 0.08; line-height: 1; pointer-events: none;
}
.step p{ margin: 0; font-size: 15px; color: var(--text-dim); position: relative; }

.catch-box{
  border: 1px solid var(--accent-dim); background: rgba(193,80,46,0.06);
  border-radius: 8px; padding: 28px; margin-top: 24px;
}
.catch-box h3{ margin: 0 0 10px; font-size: 18px; }
.catch-box p{ margin: 0; color: var(--text-dim); font-size: 16px; }

.pricing-grid{ display:grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 20px; margin-top: 32px; }
.pricing-grid.centered{ max-width: 560px; margin-left: auto; margin-right: auto; }
.centered-note{ text-align: center; }
#closing-cta .wrap.centered{ text-align: center; display:flex; flex-direction: column; align-items: center; }
#closing-cta h2{ max-width: 480px; }
#closing-cta .prose.centered{ max-width: 480px; margin-bottom: 28px; }
#closing-cta{ border-bottom: none; }

.faq-list{ max-width: 640px; margin-top: 28px; }
.faq-list details{
  border-bottom: 1px solid var(--border); padding: 18px 0;
}
.faq-list details:first-child{ border-top: 1px solid var(--border); }
.faq-list summary{
  cursor: pointer; font-weight: 600; font-size: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list summary::after{
  content: '+'; font-family: var(--mono); color: var(--accent); font-size: 18px; margin-left: 16px;
}
.faq-list details[open] summary::after{ content: '−'; }
.faq-list details p{
  color: var(--text-dim); font-size: 15px; margin: 12px 0 0; max-width: 560px;
}
.price-card{
  border: 1px solid var(--border); border-radius: 8px; padding: 28px; background: var(--bg-alt);
  display: flex; flex-direction: column;
}
.price-card ul{ flex-grow: 1; }
.price-card .btn-primary, .price-card .btn-secondary{ margin-top: 24px; text-align: center; }
.btn-block{ display: block; }
.btn-secondary{
  display: block; text-align: center; background: transparent; color: var(--text);
  font-weight: 700; padding: 13px 24px; border-radius: 6px; text-decoration: none;
  font-size: 15px; border: 1px solid var(--border);
}
.btn-secondary:hover{ border-color: var(--accent); color: var(--accent); }
.price-card.highlight{
  border-color: var(--accent);
  box-shadow: 0 8px 20px -14px rgba(193,80,46,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card.highlight:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(193,80,46,0.35);
}
.price-card .plan-name{ font-family: var(--mono); font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.price-card .price{ font-size: 36px; font-weight: 700; margin: 10px 0 16px; font-family: var(--mono); }
.price-card .price span{ font-size: 15px; color: var(--text-dim); font-weight: 400; }
.price-card ul{ list-style: none; padding: 0; margin: 0; color: var(--text-dim); font-size: 14px; }
.price-card li{ padding: 6px 0; border-top: 1px solid var(--border); }
.price-card li:first-child{ border-top: none; }
.price-note{ font-family: var(--mono); font-size: 13px; color: var(--text-dim); margin-top: 16px; }

footer{ padding: 40px 0; }
footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap: wrap; gap: 16px; }
footer .foot-links a{ color: var(--text-dim); text-decoration:none; font-size: 13px; margin-left: 20px; }
footer .foot-note{ font-size: 13px; color: var(--text-dim); font-family: var(--mono); }

.invoice-mock{
  position: relative;
  width: 250px; background: #ffffff; border: 1px solid var(--border);
  border-radius: 6px; padding: 24px; font-family: Arial, Helvetica, sans-serif; font-size: 13px;
  color: #17140f;
  box-shadow: 0 30px 60px -20px rgba(20,17,12,0.5);
  opacity: 0;
  animation: card-in 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes card-in{
  0%{ opacity: 0; transform: translateY(10px) rotate(-3.5deg) scale(0.985); }
  100%{ opacity: 1; transform: translateY(0) rotate(-2deg) scale(1); }
}
.invoice-mock-head{
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px;
}
.im-title{ font-weight: 700; font-size: 15px; letter-spacing: 0.02em; }
.im-dim{ color: #7c7263; font-size: 11.5px; }
.im-to{ margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #ddd0b3; font-size: 12px; }
.im-row{ display:flex; justify-content:space-between; padding: 5px 0; }
.im-total{
  font-weight: 700; margin-top: 6px; padding-top: 10px; border-top: 1px solid #ddd0b3;
}
.pay-pill{
  margin-top: 18px; display:flex; align-items:center; justify-content:center;
  background: #f6f1e7; border: 1px solid #ddd0b3; border-radius: 20px;
  padding: 8px 14px; color: #7c7263;
  position: relative; overflow: hidden;
  animation-name: pill-press, pill-color-in;
  animation-duration: 0.25s, 0.4s;
  animation-timing-function: ease, ease;
  animation-delay: 1.45s, 2.05s;
  animation-fill-mode: none, forwards;
}
@keyframes pill-color-in{
  to{ background: #e8f4ec; border-color: #a8d5b8; color: #2f7d52; }
}
@keyframes pill-press{
  0%{ transform: scale(1); }
  50%{ transform: scale(0.93); }
  100%{ transform: scale(1); }
}
.pay-pill::after{
  content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 14px;
  margin: -7px 0 0 -7px; border-radius: 50%; background: rgba(47,125,82,0.35);
  opacity: 0; transform: scale(0.4); pointer-events: none;
  animation: pill-ripple 0.5s ease-out forwards; animation-delay: 1.48s;
}
@keyframes pill-ripple{
  0%{ opacity: 0.5; transform: scale(0.4); }
  100%{ opacity: 0; transform: scale(8); }
}
.check-draw{
  color: #2f7d52; flex-shrink: 0; opacity: 0;
  width: 0; margin-right: 0; overflow: hidden;
  animation: check-expand 0.6s ease forwards; animation-delay: 2.05s;
}
.check-draw path{
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: check-in 0.9s ease forwards; animation-delay: 2.05s;
}
@keyframes check-in{ to{ stroke-dashoffset: 0; } }
@keyframes check-expand{ to{ opacity: 1; width: 16px; margin-right: 8px; } }
.pay-label{ position: relative; display:inline-block; min-width: 46px; height: 16px; line-height: 16px; }
.pay-label span{ position:absolute; left:0; top:0; line-height: 16px; white-space: nowrap; }
.label-pending{ opacity:1; animation: fade-out 0.9s ease forwards; animation-delay: 1.95s; }
.label-paid{ opacity:0; color: #2f7d52; font-weight: 600; animation: fade-in 0.9s ease forwards; animation-delay: 2.05s; }
@keyframes fade-out{ to{ opacity: 0; } }
@keyframes fade-in{ to{ opacity: 1; } }

/* App / invoice form */
.app-section{ padding: 56px 0 80px; border-bottom: none; }
.app-grid{ display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); gap: 48px; align-items: start; max-width: 1340px; }
.app-form h2{ margin-bottom: 8px; }
.limit-banner{
  background: rgba(193,80,46,0.08); border: 1px solid var(--accent-dim);
  border-radius: 8px; padding: 14px 16px; margin: 16px 0;
}
.limit-banner p{ margin: 0; font-size: 14px; color: var(--text); }
.limit-banner a{ color: var(--accent); font-weight: 600; }

#invoice-form{ margin-top: 36px; }
.form-section{
  border-top: 1px solid var(--border);
  margin-top: 40px; padding-top: 32px;
}
.form-section-first{ border-top: none; margin-top: 0; padding-top: 0; }
.section-label{
  font-family: var(--mono); font-size: 12px; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin: 0 0 24px;
}
.form-row{ display: flex; gap: 24px; margin-bottom: 32px; }
.form-row:last-child{ margin-bottom: 0; }
.field{ flex: 1; display: flex; flex-direction: column; min-width: 0; }
.field-small{ flex: 0.6; }
.field label{ font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.field .optional{ font-weight: 400; color: var(--text-dim); }
.field input{
  font-family: var(--sans); font-size: 15px; padding: 14px 16px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder{ color: #b3aa98; opacity: 1; }
.field select{
  font-family: var(--sans); font-size: 15px; padding: 14px 16px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text);
}
.field textarea{
  font-family: var(--sans); font-size: 16px; padding: 14px 16px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text);
  resize: vertical; line-height: 1.65;
}
.field-hint{ font-size: 13px; color: var(--text-dim); margin: 12px 0 0; line-height: 1.6; }
.field-hint a{ color: var(--accent); }
.form-section > .field{ margin-bottom: 32px; }
.form-section > .field:last-child{ margin-bottom: 0; }

.items-block{ margin-bottom: 36px; }
.items-block > label{ font-size: 13px; font-weight: 600; display: block; margin-bottom: 16px; }
.item-row{ display: grid; grid-template-columns: minmax(0,2fr) minmax(0,0.6fr) minmax(0,0.9fr) 28px; gap: 14px; margin-bottom: 16px; align-items: center; }
.item-row-head{
  font-size: 12px; color: var(--text-dim); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 12px;
}
.item-row input{
  font-family: var(--sans); font-size: 15px; padding: 14px 16px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text);
  width: 100%; box-sizing: border-box;
}
.item-row input::placeholder{ color: #b3aa98; opacity: 1; }
.item-row input:focus{ outline: none; border-color: var(--accent); }
.item-remove{
  background: none; border: none; color: var(--text-dim); font-size: 18px;
  cursor: pointer; line-height: 1; padding: 6px;
}
.item-remove:hover{ color: #b23a2a; }
.btn-add{
  background: none; border: 1px dashed var(--border); color: var(--text-dim);
  font-family: var(--mono); font-size: 13px; padding: 10px 14px; border-radius: 6px;
  cursor: pointer; width: 100%; margin-top: 4px;
}
.btn-add:hover{ border-color: var(--accent); color: var(--accent); }

.total-row{
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-weight: 700; font-size: 18px;
  padding: 14px 0; border-top: 1px solid var(--border); margin-bottom: 24px;
}
.total-row.subtotal-row, .total-row.vat-row{
  font-weight: 400; font-size: 14px; color: var(--text-dim);
  padding: 8px 0; margin-bottom: 0; border-top: none;
}
.total-row.vat-row{ border-bottom: 1px dashed var(--border); padding-bottom: 14px; }
.total-row[hidden], .im-row[hidden]{ display: none; }

.button-row{ display: flex; gap: 12px; margin-top: 16px; }
.button-row .btn-primary, .button-row .btn-secondary{ flex: 1; }
.btn-generate{ font-size: 16px; padding: 15px 24px; }
.form-note{ font-family: var(--mono); font-size: 13px; margin-top: 12px; text-align: center; }
#new-invoice-btn{ margin-top: 16px; }
#new-invoice-btn[hidden]{ display: none; }
.form-note.error{ color: #b23a2a; }
.form-note.success{ color: #2f7d52; }

.app-preview{ position: sticky; top: 32px; }

/* Deliberately neutral / paper-white: mirrors the generated PDF's look,
   not the site's branded theme, so this is an honest preview of the file. */
.pdf-preview{
  padding: 12px;
}
.pdf-page{
  background: #ffffff; color: #17140f; padding: 46px 42px;
  font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.6;
  box-shadow: 0 20px 45px -18px rgba(20,17,12,0.55); border-radius: 3px;
  transition: background-color 0.3s ease;
}
.pdf-page.bg-white{ background: #ffffff; }
.pdf-page.bg-paper{ background: #faf6ec; }
.pdf-page.bg-slate{ background: #f2f2f2; }
.pdf-head{ display: flex; justify-content: space-between; align-items: flex-start; }
.pdf-title{ font-weight: bold; font-size: 24px; }
.pdf-meta{ text-align: right; color: #5a5246; font-size: 12.5px; line-height: 1.8; }
.pdf-hr{ border: none; border-top: 1px solid #ddd0b3; margin: 24px 0; }
.pdf-parties{ display: flex; gap: 24px; }
.pdf-party{ flex: 1; min-width: 0; }
.pdf-party-label{ font-weight: bold; margin-bottom: 10px; }
.pdf-party div#pv-biz, .pdf-party div#pv-client{ color: #5a5246; white-space: pre-line; overflow-wrap: break-word; }
.pdf-table-head{
  display: grid; grid-template-columns: minmax(0,2fr) minmax(0,0.6fr) minmax(0,0.8fr) minmax(0,0.9fr); gap: 6px;
  font-weight: bold; color: #7c7263; font-size: 12.5px; letter-spacing: 0.03em;
  padding-bottom: 12px; border-bottom: 1px solid #ddd0b3; margin-bottom: 12px;
}
.pdf-table-head span:not(:first-child){ text-align: right; }
.pdf-item-row{
  display: grid; grid-template-columns: minmax(0,2fr) minmax(0,0.6fr) minmax(0,0.8fr) minmax(0,0.9fr); gap: 6px;
  padding: 7px 0; color: #17140f; font-size: 14px;
}
.pdf-item-row span:not(:first-child){ text-align: right; }
.pdf-item-row .pdf-item-desc{ color: #17140f; }
.pdf-totals{ margin-top: 8px; }
.pdf-total-row{ display: flex; justify-content: space-between; padding: 6px 0; color: #5a5246; }
.pdf-total-row[hidden]{ display: none; }
.pdf-total-final{ font-weight: bold; color: #17140f; font-size: 17px; padding-top: 12px; }
.pdf-notes{
  margin-top: 22px; padding-top: 16px; border-top: 1px solid #ddd0b3;
  color: #7c7263; font-size: 13px; white-space: pre-line;
}
.pdf-pay-btn{
  margin-top: 26px; background: var(--accent); color: #fbf3e9; text-align: center;
  font-weight: bold; font-size: 15px; padding: 16px; border-radius: 6px;
}
.pdf-pay-btn.pending{ background: #c9c2b2; color: #6b6353; }

.stripe-link-row{ display: flex; align-items: center; gap: 14px; }
.stripe-link-row input[type="url"]{ flex: 1; min-width: 0; }
.color-field{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.color-field input[type="color"]{
  width: 50px; height: 50px; padding: 0; border: 1px solid var(--border);
  border-radius: 6px; background: var(--bg-alt); cursor: pointer;
}
.color-hex{ font-family: var(--mono); font-size: 13px; color: var(--text-dim); }
.color-field-label{ font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.field-hint-sep{ margin: 0 4px; }
.preview-caption{
  font-family: var(--mono); font-size: 12px; color: var(--text-dim);
  text-align: center; margin-top: 12px;
}

.bg-picker{
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px;
}
.bg-picker-label{ font-size: 12px; color: var(--text-dim); font-weight: 600; }
.bg-swatches{ display: flex; gap: 8px; }
.bg-swatch{
  width: 28px; height: 28px; border-radius: 5px; cursor: pointer;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 0; transition: transform 0.12s ease, border-color 0.15s ease;
}
.bg-swatch:active{ transform: scale(0.88); }
.bg-swatch-white{ background: #ffffff; }
.bg-swatch-paper{ background: #faf6ec; }
.bg-swatch-slate{ background: #f2f2f2; }
.bg-check{
  color: var(--accent); font-size: 13px; font-weight: 700; opacity: 0;
  transform: scale(0.4); transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bg-swatch.selected{ border-color: var(--accent); border-width: 2px; }
.bg-swatch.selected .bg-check{ opacity: 1; transform: scale(1); }

@media (max-width: 860px){
  .app-grid{ grid-template-columns: minmax(0,1fr); }
  .app-preview{ position: static; order: -1; }
  .pdf-page{ font-size: 11px; padding: 20px 18px; }
  .form-row{ flex-direction: column; gap: 12px; }
  .color-field-label{ display: none; }

  .item-row-head{ display: none; }
  .item-row{
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) 28px;
    grid-template-areas:
      "desc desc remove"
      "qty price price";
    row-gap: 10px;
  }
  .item-row .item-desc{ grid-area: desc; }
  .item-row .item-qty{ grid-area: qty; }
  .item-row .item-price{ grid-area: price; }
  .item-row .item-remove{ grid-area: remove; justify-self: end; }
}

/* Legal pages */
.legal-content{ max-width: 720px; }
.legal-content h2{ max-width: none; }
.legal-content .prose{ max-width: none; }
.legal-updated{ font-family: var(--mono); font-size: 12px; color: var(--text-dim); margin-bottom: 8px; }
.back-link{ display: inline-block; margin-bottom: 24px; color: var(--text-dim); font-size: 14px; text-decoration: none; }
.back-link:hover{ color: var(--accent); }
.legal-content ul{ color: var(--text-dim); font-size: 16px; padding-left: 20px; margin: 0 0 16px; }
.legal-content li{ margin-bottom: 8px; }
.contact-message-field{ margin-bottom: 28px; }
.contact-submit{ margin-top: 8px; }
.contact-footnote{ margin-top: 24px; font-size: 14px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: minmax(0,1fr); }
  .invoice-mock{ width: 100%; max-width: 300px; margin-top: 32px; }
}

@media (max-width: 720px){
  .hero h1{ font-size: 32px; }
  .invoice-mock{ max-width: 280px; margin-top: 8px; }
  .steps{ grid-template-columns: minmax(0,1fr); }
  .pricing-grid{ grid-template-columns: minmax(0,1fr); }
  table.compare{ font-size: 13px; }
  table.compare th, table.compare td{ padding: 10px; }
}

@media (max-width: 480px){
  .nav .wrap{ flex-wrap: wrap; row-gap: 8px; }
  .stripe-link-row{ flex-wrap: wrap; }
  .stripe-link-row input[type="url"]{ width: 100%; }
  .color-field{ width: 100%; }
}
