:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #102320;
  --text: #17201b;
  --muted: #5e6a63;
  --line: #dcd5ca;
  --brand: #157a6e;
  --brand-dark: #0e4f47;
  --mint: #eaf7f3;
  --gold: #e3a84c;
  --coral: #d96b5f;
  --shadow: 0 22px 70px rgba(16, 35, 32, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(220, 213, 202, 0.8);
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.site-nav a:hover { color: var(--brand-dark); }

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: var(--brand-dark);
  background: #fff;
}

.nav-login {
  color: var(--ink);
  font-weight: 800;
}

.nav-login:hover { color: var(--brand-dark); }

.nav-cta-primary {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

.nav-cta-primary:hover { color: #fff; }

.menu-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.lang-trigger:hover { color: var(--brand-dark); border-color: var(--brand); }

.lang-trigger[aria-expanded="true"] {
  color: var(--brand-dark);
  border-color: var(--brand);
  background: var(--mint);
}

.lang-caret {
  transition: transform 0.15s ease;
  flex: none;
}

.lang-trigger[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lang-menu[hidden] { display: none; }

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 620;
  text-align: left;
  cursor: pointer;
}

.lang-option::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-dark);
  opacity: 0;
}

.lang-option[aria-checked="true"] {
  color: var(--brand-dark);
  font-weight: 800;
}

.lang-option[aria-checked="true"]::after { opacity: 1; }

.lang-option:hover,
.lang-option:focus-visible {
  background: var(--mint);
}

.lang-trigger:focus-visible,
.lang-option:focus-visible {
  outline: 3px solid rgba(21, 122, 110, 0.22);
  outline-offset: 2px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--ink);
}

.hero,
.section,
.split-section,
.band,
.cta-panel,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  min-height: calc(100vh - 72px);
}

.hero-wallet {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  max-width: 1320px;
  min-height: calc(100vh - 72px);
  padding-top: 56px;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-section h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-heading h2,
.split-section h2,
.cta-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(21, 122, 110, 0.22);
  border-radius: 999px;
  background: var(--mint);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-copy,
.page-hero p,
.split-section p,
.cta-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.button.primary { background: var(--brand-dark); color: #fff; }
.button.secondary { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.text-link { display: inline-flex; margin-top: 18px; color: var(--brand-dark); font-weight: 850; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.wallet-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 24px;
}

.wallet-badges span {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.wallet-badges b {
  color: var(--ink);
  font-size: 0.98rem;
}

.wallet-badges small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.hero-proof div {
  padding: 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-visual img,
.showcase-card,
.contact-form,
.mini-card,
.price-card,
.blog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(16, 35, 32, 0.08);
}

.hero-visual img { box-shadow: var(--shadow); }

.wallet-visual img {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logo-strip {
  display: flex;
  max-width: var(--max);
  margin: -26px auto 32px;
  padding: 0 24px 36px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logo-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 780;
}

.band {
  max-width: none;
  background: #fff;
}

.band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.dark {
  background: var(--ink);
  color: #fff;
}

.dark .metric span { color: rgba(255, 255, 255, 0.72); }

.section-heading { max-width: 760px; }
.section-heading.center { margin: 0 auto 34px; text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

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

.overview-grid,
.process-cards,
.feature-matrix,
.industry-list {
  display: grid;
  gap: 18px;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.overview-grid article,
.process-cards article,
.feature-matrix article,
.industry-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(16, 35, 32, 0.06);
}

.overview-grid article {
  min-height: 230px;
  padding: 24px;
}

.icon-pill {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.overview-grid h3,
.process-cards h3,
.feature-matrix h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.25rem;
}

.overview-grid p,
.process-cards p,
.feature-matrix p {
  margin: 0;
  color: var(--muted);
}

.wallet-demo {
  max-width: 1320px;
  grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.1fr);
  align-items: center;
}

.section-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.phone-only-image {
  max-width: 620px;
  margin-left: auto;
}

.how-band {
  padding-top: 80px;
  padding-bottom: 80px;
}

.process-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 34px auto 0;
}

.process-cards article {
  min-height: 220px;
  padding: 24px;
}

.process-cards span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 900;
}

.product-proof {
  max-width: 1320px;
}

.feature-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-matrix article {
  min-height: 180px;
  padding: 24px;
}

.industries-band {
  padding-top: 80px;
  padding-bottom: 80px;
}

.industry-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--max);
  margin: 34px auto 0;
}

.industry-list article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.industry-list strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.industry-list span {
  color: var(--muted);
}

.pricing-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mini-card {
  min-height: 190px;
  padding: 24px;
}

.mini-card strong,
.showcase-card h3,
.price-card h3,
.blog-card h3 {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
}

.mini-card p,
.showcase-card p,
.price-card p,
.blog-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps li::before {
  content: counter(step);
  grid-row: 1 / span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 850;
}

.steps span { color: var(--muted); }

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

.showcase-card {
  overflow: hidden;
}

.showcase-card.wide { grid-column: 1 / -1; }
.showcase-card div { padding: 24px; }
.showcase-card img { width: 100%; background: #f4f0e8; }
.showcase-card:not(.wide) img { aspect-ratio: 4 / 3; object-fit: cover; }

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

.metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.metric span {
  display: block;
  max-width: 270px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 780;
}

.section-cta { margin-top: 24px; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
  border: 1px solid rgba(21, 122, 110, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf7f3, #fff7e5);
}

.page-hero {
  padding-bottom: 46px;
}

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

.price-grid,
.blog-grid {
  display: grid;
  gap: 18px;
}

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

.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.billing-toggle-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle-btn:hover { color: var(--brand-dark); }

.billing-toggle-btn.is-active {
  background: var(--brand-dark);
  color: #fff;
}

.billing-toggle-btn:focus-visible {
  outline: 3px solid rgba(21, 122, 110, 0.22);
  outline-offset: 2px;
}
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.price-card,
.blog-card {
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(21, 122, 110, 0.5);
  background: var(--mint);
}

.price {
  display: block;
  margin: 16px 0 2px;
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 850;
}

.price-period { font-size: 1rem; font-weight: 700; color: var(--muted); }

.savings-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.savings-badge[hidden] { display: none; }

.muted-inline { color: var(--muted); }

.price-note { margin: 0 0 14px; color: var(--muted); font-size: 0.86rem; }

.price-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  content: "+";
  margin-right: 8px;
  color: var(--brand);
  font-weight: 850;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 780;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(21, 122, 110, 0.22);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--brand-dark);
  font-weight: 780;
}

.form-status.error { color: var(--coral); }

.field-error {
  margin: -6px 0 0;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 700;
  min-height: 0;
}

.field-error:empty { display: none; }

[aria-invalid="true"] { box-shadow: inset 0 0 0 1px var(--coral); }

.form-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-hint a { color: var(--brand-dark); font-weight: 780; }

/* Honeypot antispam: oculto para personas, muchos bots lo rellenan igual. */
.hp-field { display: none; }

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item h3 { margin: 0 0 8px; color: var(--ink); }
.faq-item p { margin: 0; color: var(--muted); }

/* Legal pages (terms/privacy/cookies/refund) — generated from build-legal.mjs.
   Readable long-form prose: narrower measure, generous line-height. */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  color: var(--text);
  line-height: 1.7;
}

.legal h1 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.legal h2 {
  margin: 44px 0 14px;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.2;
}

.legal h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.legal p {
  margin: 0 0 16px;
  color: var(--text);
}

.legal strong { color: var(--ink); }

.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text);
}

.legal ul li { margin-bottom: 8px; }

.legal a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal blockquote {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  background: var(--mint);
  color: var(--text);
}

.legal blockquote p { margin: 0; }

.legal hr {
  margin: 36px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.legal .table-scroll {
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal th,
.legal td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal th {
  color: var(--ink);
  background: var(--mint);
  font-weight: 800;
  white-space: nowrap;
}

.legal tbody tr:last-child td { border-bottom: 0; }

.legal em { color: var(--muted); font-style: italic; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 48px 40px;
  max-width: none;
  padding: 76px max(24px, calc((100% - var(--max)) / 2)) 44px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.98rem;
}

.footer-brand .brand { margin-bottom: 12px; }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-weight: 720;
}

.footer-col strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a:hover { color: var(--brand-dark); }

.footer-legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Compact footers (interior pages with simple <nav>) */
.site-footer.footer-simple {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer.footer-simple nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 720;
}

@media (max-width: 920px) {
  .menu-button { display: grid; }
  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav .lang-switcher {
    margin-top: 8px;
    align-self: flex-start;
  }
  .site-nav .lang-menu {
    right: auto;
    left: 0;
  }
  .hero-home,
  .hero-wallet,
  .split-section,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .feature-grid.four,
  .overview-grid,
  .process-cards,
  .feature-matrix,
  .industry-list,
  .metrics,
  .content-grid,
  .blog-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-home { min-height: auto; padding-top: 52px; }
  .hero-wallet { min-height: auto; padding-top: 52px; }
  .cta-panel,
  .pricing-teaser,
  .site-footer.footer-simple {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .hero,
  .section,
  .split-section,
  .band,
  .cta-panel,
  .page-hero {
    padding: 58px 18px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }
  .hero-actions,
  .button {
    width: 100%;
  }
  .wallet-badges,
  .hero-proof,
  .price-grid {
    grid-template-columns: 1fr;
  }
}
