:root {
  --berry: #e23b57;
  --berry-deep: #b81d3c;
  --berry-soft: #fff1f3;
  --leaf: #3f9860;
  --ink: #2a2024;
  --ink-soft: #6b5f63;
  --cream: #fffaf7;
  --line: #f0dfe1;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(178, 30, 60, 0.10);
  --maxw: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  background: var(--berry-soft);
  color: var(--berry-deep);
  padding: 0.12em 0.4em;
  border-radius: 5px;
}

/* ---- Top bar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 48px);
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.brand-name { font-size: 0.95rem; letter-spacing: 0.01em; }
.berry { font-size: 1.3rem; }

.topbar-nav { display: flex; align-items: center; gap: 18px; }
.topbar-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.topbar-link:hover { color: var(--berry-deep); }
.topbar-cta {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--berry-deep);
  border: 1.5px solid var(--berry);
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.topbar-cta:hover { background: var(--berry); color: #fff; }

/* ---- About / prose ---- */
.prose { max-width: 640px; margin: 0 auto; padding: clamp(40px, 8vw, 80px) 0; }
.prose h1 { font-size: clamp(2rem, 5.5vw, 3rem); margin-bottom: 8px; }
.prose h2 { font-size: clamp(1.4rem, 3.5vw, 1.8rem); margin: 40px 0 12px; }
.prose .lead { font-size: clamp(1.15rem, 2.6vw, 1.35rem); color: var(--ink); margin: 20px 0 28px; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 18px; }
.prose a:not(.btn) { color: var(--berry-deep); font-weight: 600; text-decoration: none; }
.prose a:not(.btn):hover { text-decoration: underline; }
.prose-cta { margin-top: 36px; }

/* ---- Layout ---- */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
section { padding: clamp(48px, 8vw, 88px) 0; }

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding-top: clamp(56px, 10vw, 104px);
  padding-bottom: clamp(34px, 6vw, 58px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--berry);
  margin: 0 0 18px;
}
.hero h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
.lede {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 34px 0 14px;
}
.reassure { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---- Trust ---- */
.trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(18px, 4vw, 34px);
}
.trust-lead .eyebrow { margin-bottom: 14px; }
.trust-lead h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.trust-note {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 16px 0 0;
}
.trust-signature {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 14px 0 0;
}
.trust-signature a {
  color: var(--berry-deep);
  font-weight: 600;
  text-decoration: none;
}
.trust-signature a:hover { text-decoration: underline; }
.trust-ledger {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-ledger li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.trust-ledger li:first-child { border-top: 0; padding-top: 4px; }
.trust-ledger li:last-child { padding-bottom: 0; }
.trust-ledger h3 { font-size: 1.18rem; margin-bottom: 6px; }
.trust-ledger p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s, background 0.15s;
}
.btn-primary {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 8px 22px rgba(226, 59, 87, 0.32);
}
.btn-primary:hover { background: var(--berry-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--berry); color: var(--berry-deep); }
.btn-block { width: 100%; margin-top: 6px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---- How ---- */
.how { text-align: center; }
.how h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 40px; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  text-align: left;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--berry-soft);
  color: var(--berry-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 8px; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ---- Send section ---- */
.send {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
.send-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.send-card h2 { font-size: 1.7rem; }
.send-sub { color: var(--ink-soft); margin: 8px 0 26px; }

.field { margin-bottom: 20px; border: 0; padding: 0; }
.field legend, .field-label {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  display: block;
  padding: 0;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.text-input {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s;
}
.text-input:focus { outline: none; border-color: var(--berry); }
select.text-input { cursor: pointer; }

.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 20px;
  border: 2px dashed var(--line);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.dropzone:hover, .dropzone.dragover { border-color: var(--berry); background: var(--berry-soft); }
.dropzone.has-file { border-style: solid; border-color: var(--leaf); background: #f2fbf5; }
.dropzone-icon { font-size: 1.7rem; }
.dropzone-text { color: var(--ink-soft); font-size: 0.95rem; }

.or {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin: 12px 0;
  position: relative;
}

.hop-note {
  margin: -6px 0 16px;
  font-size: 0.88rem;
  padding: 10px 12px;
  border-radius: 8px;
}
.hop-note.ok { background: #f2fbf5; color: var(--leaf); }
.hop-note.warn { background: var(--berry-soft); color: var(--berry-deep); }

.price-note {
  margin: -2px 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
}
.price-note.scanning, .price-note.neutral { background: var(--cream); color: var(--ink-soft); border: 1px dashed var(--line); }
.price-note.ok { background: #f2fbf5; color: var(--leaf); }
.price-note.complex { background: #fff7ec; color: #91621c; }
.price-note.no { background: var(--berry-soft); color: var(--berry-deep); }

.fine-print { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin: 14px 0 0; }

/* ---- Confirmation ---- */
.confirmation { text-align: center; padding: 20px 0; }
.confirm-berry { font-size: 2.6rem; display: block; margin-bottom: 8px; }
.confirmation h3 { font-size: 1.5rem; margin-bottom: 10px; }
.confirmation p { color: var(--ink-soft); margin: 0 auto 22px; max-width: 380px; }

/* ---- Transparency aside ---- */
.transparency {
  background: var(--berry-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
}
.transparency h3 { font-size: 1.25rem; margin-bottom: 10px; }
.transparency p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 14px; }
.transparency ul { margin: 0 0 14px; padding-left: 18px; }
.transparency li { margin-bottom: 8px; font-size: 0.93rem; }
.transparency-foot { font-style: italic; margin-bottom: 0 !important; }

/* ---- Price ---- */
.price { text-align: center; }
.price h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 34px; }
.price-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 680px;
  margin: 0 auto 28px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.price-num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--berry-deep);
  display: block;
  margin-bottom: 10px;
}
.price-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.price-foot { max-width: 560px; margin: 0 auto; color: var(--ink-soft); font-size: 0.92rem; }

/* ---- Generated SEO pages ---- */
.seo-body {
  max-width: 680px;
  margin: 24px auto 0;
  text-align: left;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
}
.seo-body p { margin: 0 0 16px; }
.seo-body h2 {
  color: var(--ink);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  margin: 30px 0 10px;
}
.seo-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.seo-body li {
  margin-bottom: 8px;
}
.seo-faq { max-width: 680px; margin: 0 auto; text-align: left; }
.seo-faq h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 24px; text-align: center; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  background: #fff;
}
.faq-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.faq-item p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

.related-links {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}
.related-links h2 { font-size: clamp(1.35rem, 3.4vw, 1.8rem); margin-bottom: 20px; }
.related-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: left;
}
.related-grid a {
  display: block;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
}
.related-grid a:hover {
  border-color: var(--berry);
  color: var(--berry-deep);
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px clamp(20px, 5vw, 48px);
  text-align: center;
}
.footer-story {
  max-width: 560px;
  margin: 0 auto 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.footer-mini { font-size: 0.82rem; color: var(--ink-soft); opacity: 0.8; margin: 0; }
.footer-mini a { color: var(--berry-deep); text-decoration: none; font-weight: 600; }
.footer-mini a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .trust { grid-template-columns: 1fr; gap: 24px; }
  .trust-ledger li:first-child { border-top: 1px solid var(--line); padding-top: 20px; }
  .send { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
