:root {
  --bg: #faf8f7;
  --panel: #ffffff;
  --ink: #1a1a1a;
  --muted: #5a5550;
  --line: #e8e4e1;
  --primary: #8c3d34;
  --primary-hover: #a04a40;
  --primary-ink: #fff;
  --accent: #f2b5a7;
  --accent-strong: #f7d7cf;
  --surface-soft: #faf6f4;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

/* ---------- Spacing ---------- */
.topbar, .hero, .proof-band, .section-grid, .comparison-grid,
.process, .content-slab, .faq-grid, .form-section, .footer {
  margin-top: 24px;
}

/* ---------- Topbar ---------- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.eyebrow, .section-tag, .panel-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}

.brand {
  display: block;
  margin-top: 4px;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--primary);
}

.cta-link {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1a7f62;
  color: #fff;
  transition: background 0.2s;
}
.cta-link:hover { background: #15694f; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

h1, h2, h3 { font-family: "Fraunces", serif; margin: 0; }
h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 10px;
  line-height: 1.15;
}
h3 { font-size: 1.15rem; }

.lead {
  margin-top: 16px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}
.button.primary {
  background: var(--primary);
  color: var(--primary-ink);
}
.button.primary:hover { background: var(--primary-hover); }
.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.button.ghost:hover { border-color: var(--muted); }

/* ---------- Direct contact block ---------- */
.direct-contact, .inline-whatsapp {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}
.direct-contact-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.direct-contact-links, .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: #1a7f62;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.contact-pill:hover { background: #15694f; }
.contact-pill.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.contact-pill.secondary:hover { border-color: var(--muted); }
.direct-contact-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  margin: 0;
  padding-left: 18px;
}
.trust-strip li {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Hero accent card with image ---------- */
.accent-card {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  box-shadow: var(--shadow-lg);
  border: none;
}

.hero-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.accent-card-overlay {
  padding: 28px;
  position: relative;
  z-index: 2;
  flex: 1;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.97), rgba(26, 26, 26, 0.92));
}

.accent-card-overlay .panel-label {
  color: rgba(255, 255, 255, 0.6);
}

.accent-card-overlay .metric-row {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.accent-card-overlay .metric-row strong,
.accent-card-overlay .metric-row span {
  color: rgba(255, 255, 255, 0.9);
}

.accent-card-overlay .price-note {
  color: rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.accent-card-overlay .hero-mini-grid div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.accent-card-overlay .hero-mini-grid span {
  color: rgba(255, 255, 255, 0.5);
}
.accent-card-overlay .hero-mini-grid strong {
  color: #fff;
}

/* ---------- Metric / price rows ---------- */
.metric-row, .price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.metric-row:last-of-type, .price-row:last-of-type { border-bottom: 0; }

.metric-row strong, .price-row strong { color: var(--ink); }
.metric-row span, .price-row span { color: var(--muted); }

.price-note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.hero-mini-grid div {
  padding: 14px 14px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.hero-mini-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.hero-mini-grid strong {
  display: block;
  line-height: 1.35;
  font-size: 0.95rem;
}

/* ---------- Proof band ---------- */
.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-band article {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}
.proof-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
.proof-band strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}

/* ---------- Section grid / pricing ---------- */
.section-grid, .form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.section-grid p,
.form-copy p,
.content-slab p,
.steps p,
.footer p,
.faq-list p,
.comparison-list li {
  color: var(--muted);
  line-height: 1.65;
}

.table-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.disclaimer-copy {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
}

/* ---------- Comparison ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.comparison-card.spotlight {
  background: linear-gradient(180deg, rgba(140, 61, 52, 0.06), var(--panel));
  border-color: rgba(140, 61, 52, 0.15);
}
.comparison-list {
  margin: 18px 0 0;
  padding-left: 18px;
}
.comparison-list li { margin: 8px 0; }
.comparison-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.comparison-row:last-child { border-bottom: 0; }
.comparison-row strong { color: var(--ink); }
.comparison-row span { color: var(--muted); }

/* ---------- Process steps ---------- */
.process .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.steps article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.steps article h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.steps p {
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- Content slab ---------- */
.content-slab {
  display: grid;
  gap: 20px;
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.bullet-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bullet-columns ul {
  margin: 0;
  padding-left: 18px;
}
.bullet-columns li {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list article {
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.faq-list p { margin: 10px 0 0; }

/* ---------- Form ---------- */
.form-copy { padding: 34px; }
.lead-form {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.full-width { grid-column: 1 / -1; margin-top: 14px; }
.consent-row {
  margin-top: 14px;
  flex-direction: row;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.88rem;
}
.consent-row input { width: auto; margin-top: 3px; }
.status-message { min-height: 24px; }
.status-message.success { color: #1a7f62; }
.status-message.error { color: #9c2f2f; }
.field-hint { display: block; font-size: 0.78rem; color: #666; margin-top: 4px; }
.contact-error { color: #9c2f2f; font-size: 0.88rem; margin: 0 0 8px; grid-column: 1 / -1; }
.form-trust-signals { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-signal { font-size: 0.88rem; color: #444; }
.trust-signal strong { color: #1a7f62; }
.inline-whatsapp { margin-top: 24px; }
.inline-whatsapp a {
  display: inline-flex;
  margin-top: 8px;
  color: #1a7f62;
  font-weight: 700;
}
.inline-whatsapp a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.footer-copy {
  display: grid;
  gap: 12px;
  width: 100%;
}
.footer-links a {
  font-weight: 600;
  color: var(--primary);
}
.footer-links a:hover { text-decoration: underline; }

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  background: #1a7f62;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(26, 127, 98, 0.3);
  transition: background 0.2s;
}
.floating-wa::before {
  content: attr(data-tooltip);
  position: absolute;
  top: -36px;
  right: 0;
  padding: 6px 12px;
  border-radius: 6px;
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.floating-wa:hover { background: #15694f; }
.floating-wa:hover::before { opacity: 1; }

/* ---------- Social Proof Stats ---------- */
.social-proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
}
.social-proof-bar .proof-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.2;
}
.social-proof-bar .proof-stat span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Cross-Brand Banner ---------- */
.cross-brand-banner {
  max-width: 1120px;
  margin: 0 auto 32px;
  padding: 24px 32px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cross-brand-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.cross-brand-banner p strong {
  color: var(--primary);
}
.cross-brand-banner a {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s;
}
.cross-brand-banner a:hover { opacity: 0.9; }

/* ---------- Exit-Intent Popup ---------- */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.visible {
  display: flex;
}
.exit-popup {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  background: var(--panel);
  box-shadow: var(--shadow-lg);
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
}
.exit-popup-close:hover { color: var(--ink); }
.exit-popup h2 {
  font-size: 1.5rem;
  margin: 0 0 6px;
}
.exit-popup .exit-popup-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 20px;
  line-height: 1.5;
}
.exit-popup-form {
  display: grid;
  gap: 14px;
}
.exit-popup-form input,
.exit-popup-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s;
}
.exit-popup-form input:focus,
.exit-popup-form select:focus {
  outline: none;
  border-color: var(--primary);
}
.exit-popup-form .consent-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.exit-popup-form .consent-row input { width: auto; margin-top: 2px; }
.exit-popup-form button {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.exit-popup-form button:hover { background: var(--primary-hover); }
.exit-popup-status { font-size: 0.88rem; min-height: 20px; margin: 0; }
.exit-popup-status.success { color: #1a7f62; }
.exit-popup-status.error { color: #9c2f2f; }

/* ---------- Social Proof Ticker ---------- */
.social-proof-ticker {
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: 8px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker-item {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ticker-item.active {
  display: inline;
  opacity: 1;
}

/* ---------- Urgency Callout ---------- */
.urgency-callout {
  margin-top: 18px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(140,61,52,0.08), rgba(140,61,52,0.04));
  border: 1px solid rgba(140,61,52,0.18);
  border-radius: 8px;
  text-align: center;
}
.urgency-callout a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.urgency-callout a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero,
  .proof-band,
  .section-grid,
  .comparison-grid,
  .faq-grid,
  .form-section,
  .process .steps,
  .bullet-columns,
  .field-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }
  .topbar, .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-copy, .accent-card-overlay, .form-copy,
  .table-card, .content-slab, .lead-form, .footer {
    padding: 24px;
  }
  .hero-image {
    height: 200px;
  }
  .social-proof-bar { grid-template-columns: 1fr; padding: 32px 24px; gap: 16px; }
  .cross-brand-banner { flex-direction: column; text-align: center; padding: 20px; }
  .referral-share-buttons { flex-direction: column; }
}

/* ---------- Referral Share Buttons ---------- */
.referral-share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
