:root {
  --color-primary: #6bbe78;
  --color-secondary: #fff5e1;
  --color-text: #333333;
  --color-text-muted: #666666;
  --font-family-base: 'Inter', sans-serif;
  /* Legacy palette kept for marketplace/account screens */
  --hato-yellow: #f5c15c;
  --hato-green: #6c9b5b;
  --hato-brown: #3f2b1c;
  --hato-cream: #fff9f0;
  --hato-dark: #1f1309;
}

html,
body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background-color: #ffffff;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.landing-body section {
  padding: 4rem 1rem;
}

.landing-body {
  font-family: var(--font-family-base);
  background: #fff;
  color: var(--color-text);
  transform: none;
  transform-origin: initial;
  width: 100%;
}

.marketplace-body {
  transform: none;
  transform-origin: initial;
  width: 100%;
}

.account-page-body {
  font-family: var(--font-family-base);
  background: #fff;
  color: var(--color-text);
  transform: none;
  transform-origin: initial;
  width: 100%;
  zoom: 0.9;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 240, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.landing-nav-placeholder {
  flex: 1;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.landing-nav a {
  color: var(--hato-brown);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.landing-nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-body .btn,
.landing-body .button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: none;
}

.landing-body .btn-primary,
.landing-body .button.is-primary,
.landing-body .landing-primary {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
}

.landing-body .btn-primary:hover,
.landing-body .button.is-primary:hover,
.landing-body .landing-primary:hover {
  background-color: #5aa965;
  color: #fff;
}

.landing-body .btn-secondary,
.landing-body .landing-outline,
.landing-body .button.is-light {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.landing-body .btn-secondary:hover,
.landing-body .landing-outline:hover,
.landing-body .button.is-light:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.landing-hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top left, #f3d9ab, #fff4df 55%, #fffaf1);
}

.hero-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-pill {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(63, 43, 28, 0.1);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(31, 19, 9, 0.85);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-checks div {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 600;
  color: rgba(31, 19, 9, 0.85);
}

.hero-checks span {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(108, 155, 91, 0.2);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--hato-green);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-link {
  font-weight: 600;
  color: var(--hato-brown);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-outline {
  border: 1px solid rgba(63, 43, 28, 0.35);
  background: transparent;
  color: var(--hato-brown);
}

.hero-outline:hover {
  border-color: var(--hato-brown);
  color: var(--hato-dark);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-metrics article {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
  box-shadow: 0 12px 35px rgba(56, 31, 13, 0.08);
}

.hero-metrics article p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(31, 19, 9, 0.6);
}

.hero-metrics article strong {
  display: block;
  font-size: 1.65rem;
  margin: 0.35rem 0;
  color: var(--hato-brown);
}

.hero-metrics article span {
  font-size: 0.95rem;
  color: rgba(31, 19, 9, 0.7);
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta strong {
  font-size: 1.9rem;
  line-height: 1;
}

.hero-panel {
  background: #fff;
  border-radius: 1.9rem;
  padding: 1.75rem;
  box-shadow: 0 30px 70px rgba(8, 12, 24, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: rgba(31, 19, 9, 0.75);
}

.hero-panel-body {
  display: grid;
  gap: 0.85rem;
}

.hero-panel-body article {
  border: 1px solid rgba(63, 43, 28, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fffdf8;
}

.hero-panel-body article small {
  display: block;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-panel-body article strong {
  display: block;
  font-size: 1.6rem;
  color: var(--hato-brown);
}

.hero-panel-body article span {
  font-size: 0.9rem;
  color: rgba(31, 19, 9, 0.7);
  text-align: right;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: rgba(31, 19, 9, 0.7);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-visual-grid article {
  border: 1px solid rgba(63, 43, 28, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--hato-cream);
}

.hero-visual-grid article small,
.hero-visual-grid article p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.6);
}

.hero-visual-grid article strong {
  font-size: 1.55rem;
  display: block;
  color: var(--hato-brown);
}

.hero-visual-grid article span {
  font-size: 0.9rem;
  color: rgba(31, 19, 9, 0.65);
}

.hero-insight {
  background: rgba(63, 43, 28, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--hato-brown);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.hero-insight span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-alerts {
  border: 1px solid rgba(63, 43, 28, 0.08);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
}

.hero-alerts p {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-alerts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.hero-alerts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.hero-alerts span {
  width: 4rem;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.8);
}

/* --- Landing 2024 refresh --- */
.landing-body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  zoom: 0.9;
}

.marketplace-body {
  zoom: 0.9;
}

.landing-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.landing-header-inner {
  gap: 2rem;
  padding: 1rem 0;
}

.landing-nav {
  flex: 1;
}

.landing-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.landing-nav-list a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.landing-nav-list a:hover,
.landing-nav-list a:focus-visible {
  background: rgba(107, 190, 120, 0.12);
  color: #1f3b2c;
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-link {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  font-size: 0.9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.landing-link:hover,
.landing-link:focus-visible {
  background: transparent;
  color: var(--color-primary);
}

.landing-login-btn {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  font-weight: 600;
  color: #333;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
}

.landing-actions .landing-link,
.landing-actions .landing-login-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-size: 0.9rem;
}

.hero-modern {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  background-image: linear-gradient(120deg, rgba(15, 26, 19, 0.85), rgba(31, 46, 26, 0.7)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.hero-modern-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-spotlight {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--landing-header-height) + 0.25rem) 1rem 1rem;
  min-height: 42vh;
  background: linear-gradient(120deg, rgba(7, 20, 13, 0.45), rgba(33, 55, 41, 0.35)), url('../img/heroImage.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.12));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-weight: 600;
}

.hero-highlights li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-highlights i {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-meta strong {
  display: block;
  font-size: 2rem;
  color: #fff;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero-video-frame {
  position: relative;
  padding-top: 50%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-meta-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Métricas (section #metricas) */
.insights {
  background: var(--color-secondary);
}

.insights .section-heading {
  max-width: 720px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.insight-grid .card {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.insight-grid .card h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.insight-grid .card p {
  margin: 0.2rem 0 0;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .insight-grid {
    grid-template-columns: 1fr;
  }
}

/* Público (section #publico) */
.audience-section {
  background: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.audience-wrapper {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.95fr);
  gap: 2.25rem;
  align-items: start;
  width: 100%;
}

.audience-left h2 {
  margin-bottom: 0.75rem;
}

.audience-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.audience-modules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience-modules li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.3rem 0;
}

.audience-modules strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.audience-modules p {
  margin: 0;
  color: var(--color-text-muted);
}

.check-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--hato-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.audience-right {
  padding: 8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.audience-label {
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hato-brown);
  margin: 0;
}

.audience-role {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.audience-role strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-text);
}

.audience-role p {
  margin: 0;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .audience-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Beneficios */
.features {
  background: #fff;
}

.features .section-heading {
  max-width: 680px;
  margin-bottom: 1.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.feature-grid article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eaf6ed, #d9efdf);
  color: var(--hato-green);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-grid h3 {
  margin: 0 0 0.25rem;
  color: var(--hato-brown);
}

.feature-grid p {
  margin: 0;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.hero-modern-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 6rem 0 4rem;
  text-align: left;
}

.hero-modern-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: #fff;
}

.hero-modern-copy p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
}

.hero-eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  font-weight: 600;
}

.hero-benefits i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-modern-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.panel-head span {
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.panel-metrics article {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 1rem;
}

.panel-metrics p {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.panel-metrics strong {
  display: block;
  font-size: 1.7rem;
  margin: 0.3rem 0;
}

.panel-metrics small {
  color: rgba(255, 255, 255, 0.75);
}

.panel-quote {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.panel-quote span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  color: var(--color-text);
}

.landing-metrics {
  background: #fff;
  padding: 3rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.metric-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  background: #fff;
  color: var(--color-text);
}

.metric-card p {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.metric-card h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.metric-card span {
  color: var(--color-text-muted);
}

.profiles {
  background: #f9f9f9;
}

.section-alt {
  background-color: var(--color-secondary);
}

.section-heading.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.profile-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.profile-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(107, 190, 120, 0.15);
  color: #2b5b36;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.profile-card li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--color-text-muted);
}

.profile-card li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #6bbe78;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.benefits-grid article {
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fcfcfc;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(107, 190, 120, 0.15);
  color: #2b5b36;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.landing-testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-card img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: #444;
}

.landing-final-cta .button {
  border-radius: 999px;
  padding-inline: 1.75rem;
  font-weight: 600;
}

.landing-footer {
  background: #333;
  color: #eee;
  padding: 3rem 0 1.5rem;
}

.landing-footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.landing-footer .footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.landing-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.landing-footer .footer-heading {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.landing-footer .footer-links a {
  color: #eee;
  text-decoration: none;
  opacity: 0.85;
}

.landing-footer .footer-links a:hover {
  opacity: 1;
}

.landing-footer .footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.landing-footer .footer-social-icons a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.landing-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.landing-footer .footer-legal-links {
  display: flex;
  gap: 1rem;
}

.landing-footer .footer-legal-links a {
  color: #eee;
  opacity: 0.8;
  text-decoration: none;
}

.landing-footer .footer-legal-links a:hover {
  opacity: 1;
}

.landing-proof {
  padding: 2.5rem 0;
}

.landing-trust {
  background: #fff;
  padding: 2rem 0 1.5rem;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(31, 19, 9, 0.75);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--hato-brown);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.proof-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
  min-height: 150px;
}

.proof-label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.proof-copy {
  margin: 0;
  color: rgba(31, 19, 9, 0.75);
}

.proof-logos {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.landing-overview {
  background: #fff;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(63, 43, 28, 0.08);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.overview-grid article {
  border: 1px solid rgba(63, 43, 28, 0.1);
  border-radius: 1.1rem;
  padding: 1.4rem;
  background: #fffef8;
  box-shadow: 0 12px 30px rgba(37, 17, 4, 0.08);
}

.overview-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.overview-grid p {
  margin: 0;
  color: rgba(31, 19, 9, 0.75);
}

.section-heading {
  text-align: left;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--color-text-muted);
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: rgba(31, 19, 9, 0.6);
  margin-bottom: 0.5rem;
}

.landing-targets {
  background: #fff;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.target-card {
  border: 1px solid rgba(63, 43, 28, 0.1);
  border-radius: 1.2rem;
  padding: 1.5rem;
  background: #fffaf3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.target-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(31, 19, 9, 0.8);
  display: grid;
  gap: 0.35rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.benefit-intro {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.benefit-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.benefit-metrics strong {
  font-size: 2.4rem;
  display: block;
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-list article {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
}

.landing-journey {
  background: #fff;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.journey-step {
  border-radius: 1rem;
  padding: 1.5rem;
  background: var(--hato-cream);
  border: 1px solid rgba(63, 43, 28, 0.08);
}

.journey-step span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hato-green);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.landing-tour ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.tour-video iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.landing-plans {
  background: #fff;
}

.plans-grid {
  margin-top: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author-block img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin: 0;
}

.author-role {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.7);
}

.landing-support {
  background: var(--hato-cream);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.support-card {
  border-radius: 1.5rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(63, 43, 28, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.support-stat {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-note {
  color: rgba(31, 19, 9, 0.7);
}

.landing-faq {
  background: #fff;
}

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

.faq-grid article {
  background: var(--hato-cream);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
}

.landing-final-cta {
  background: linear-gradient(135deg, var(--hato-brown), #5b3a27);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(63, 43, 28, 0.1);
  z-index: 40;
  width: auto;
  max-width: 480px;
}

.sticky-cta > div:first-child {
  flex: 0 1 auto;
  min-width: 0;
  margin-left: 0.3rem;
}

.sticky-cta strong {
  display: block;
  font-size: 1rem;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: rgba(31, 19, 9, 0.7);
}

.sticky-cta .button {
  margin-left: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  text-align: center;
  flex-shrink: 0;
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .sticky-cta {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}

.proof-grid,
.target-grid,
.benefit-grid,
.journey-grid,
.tour-grid,
.testimonial-grid,
.support-grid,
.faq-grid {
  width: 100%;
}

@media (max-width: 1024px) {
  .landing-nav-list {
    justify-content: flex-start;
  }

  .landing-body h1 {
    font-size: 2.2rem;
  }

  .landing-body h2 {
    font-size: 1.7rem;
  }

  .hero-modern-inner,
  .hero-layout,
  .support-grid,
  .benefits-grid,
  .profiles-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .landing-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .landing-nav-list {
    justify-content: flex-start;
  }

  .hero-modern {
    min-height: auto;
  }

  .landing-body h1 {
    font-size: 2rem;
  }

  .landing-body h2 {
    font-size: 1.5rem;
  }

  .landing-body .btn,
  .landing-body .button {
    padding: 0.5rem 1rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

h1,
h2,
h3,
h4 {
  color: var(--hato-dark);
}

.hero.hato-hero {
  background: radial-gradient(circle at top left, var(--hato-yellow), #f7dca0);
  color: var(--hato-dark);
}

.hero .subtitle {
  color: var(--hato-brown);
}

.hato-tag {
  background-color: rgba(108, 155, 91, 0.2);
  color: var(--hato-green);
  border-radius: 999px;
}

.button.is-primary {
  background-color: var(--hato-brown);
  border-color: var(--hato-brown);
  color: #fff;
}

.button.is-primary.is-outlined {
  background-color: transparent;
  color: var(--hato-brown);
}

.button.is-secondary {
  background-color: var(--hato-green);
  border-color: var(--hato-green);
  color: #fff;
}

.dashboard-preview {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.dashboard-preview .preview-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.dashboard-preview .preview-cards div {
  background: var(--hato-cream);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.section {
  background-color: var(--hato-cream);
}

.feature-card {
  border: 1px solid rgba(63, 43, 28, 0.1);
  box-shadow: none;
  min-height: 160px;
}

.hato-section {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing {
  background: #fff;
}

.pricing .section-heading {
  max-width: 760px;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid rgba(63, 43, 28, 0.1);
  border-radius: 1.2rem;
  padding: 1.8rem;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.pricing-card.featured,
.pricing-card.is-featured {
  border: 2px solid var(--hato-green);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
  background: linear-gradient(180deg, #f8fff5, #fff);
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(107, 190, 120, 0.14);
  color: var(--hato-brown);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.plan-name {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--hato-green);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.plan-price span {
  font-size: 1rem;
  color: var(--hato-brown);
}

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--hato-brown);
}

.pricing-amount span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--color-text-muted);
}

.pricing-card ul li::before {
  content: '•';
  color: var(--hato-green);
  margin-right: 0.5rem;
  font-weight: 900;
  margin-top: 0.05rem;
}

.pricing-card ul li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.pricing-card h3 {
  margin: 0;
  color: var(--hato-brown);
}

.pricing-card .btn,
.pricing-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonios */
.testimonials {
  background: #fff;
}

.testimonials .section-heading {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.testimonials .testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonials .card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.1rem;
  padding: 1.4rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonials .testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonials .testimonial-author strong {
  display: block;
  color: var(--hato-brown);
}

.testimonials .testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.testimonials .card p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .testimonials .testimonial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .testimonials .testimonial-list {
    grid-template-columns: 1fr;
  }
}

/* Newsletter */
.newsletter {
  background: linear-gradient(180deg, #fdf7ec, #f4fce8);
  padding: 3.5rem 1rem;
}

.newsletter-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(107, 190, 120, 0.18);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.newsletter-copy h3 {
  margin: 0 0 0.4rem;
  color: var(--hato-brown);
}

.newsletter-copy p {
  margin: 0;
  color: var(--color-text-muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

.newsletter-form input[type='email'] {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(107, 190, 120, 0.35);
  border-radius: 0.85rem;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(107, 190, 120, 0.12);
}

.newsletter-form .button {
  height: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  white-space: nowrap;
}

.newsletter-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

.step-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(63, 43, 28, 0.1);
  text-align: center;
}

.step-item span {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hato-green);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer {
  background-color: #fff;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--hato-brown);
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(63, 43, 28, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.checkout-body {
  background: var(--hato-cream);
}

.checkout-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 35px 45px rgba(0, 0, 0, 0.08);
}

.selected-plan {
  background: rgba(245, 193, 92, 0.15);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.selected-plan .plan-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--hato-brown);
}

.marketplace-body {
  background: var(--hato-cream);
}

.marketplace-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.04);
  padding: 1.75rem 0 1rem;
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
}

.marketplace-header-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.marketplace-hero {
  background: var(--hato-yellow);
  padding: 3rem 0;
}

.marketplace-hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.marketplace-hero-content h1 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.marketplace-hero-content p {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions.inline {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.65);
}

.hero-actions .hero-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 0.35rem;
}

.marketplace-hero-visual.hero-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  height: 500px;
  justify-self: center;
}

.marketplace-hero-visual.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .marketplace-hero-visual.hero-img {
    height: 320px;
    max-width: 100%;
  }
}

.marketplace-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: max-content;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--hato-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hato-dark);
}

.brand-subtitle {
  font-size: 1.2rem;
  color: var(--hato-brown);
}

.marketplace-search-form {
  flex: 1;
  min-width: 250px;
}

.marketplace-search-field {
  display: flex;
  align-items: center;
  background: #f6fbf8;
  border-radius: 999px;
  border: 1px solid rgba(14, 79, 56, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.marketplace-search-field .input {
  border: none;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  padding: 0.85rem 0.5rem;
}

.marketplace-search-field .input:focus {
  box-shadow: none;
}

.search-icon-button,
.clear-search-button {
  border: none;
  background: transparent;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-icon-button {
  color: #000;
}

.search-icon-button svg,
.clear-search-button svg {
  width: 20px;
  height: 20px;
}

.clear-search-button {
  color: rgba(31, 19, 9, 0.5);
  transition: opacity 0.2s ease;
}

.clear-search-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.marketplace-login-btn {
  border-radius: 999px;
  border: 1px solid rgba(31, 19, 9, 0.2);
  background: #fff;
  color: var(--hato-brown);
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  text-align: left;
  max-width: 320px;
  min-width: 230px;
  line-height: 1.3;
  font-size: 0.95rem;
  white-space: normal;
}

.marketplace-messages-btn {
  border-radius: 999px;
  border: 1px solid rgba(31, 19, 9, 0.12);
  background: #fff;
  color: var(--hato-brown);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.marketplace-messages-btn:hover {
  border-color: rgba(108, 155, 91, 0.5);
  color: var(--hato-green);
}

.marketplace-messages-btn .messages-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(108, 155, 91, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.marketplace-sell-btn {
  background: var(--hato-green);
  border-color: var(--hato-green);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem 0.9rem 3rem;
  position: relative;
  min-width: 160px;
}

.marketplace-sell-btn .sell-icon,
.floating-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.marketplace-sell-btn .sell-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.marketplace-sell-btn .sell-text {
  flex: 0 1 auto;
  text-align: center;
}

.marketplace-category-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  overflow-x: auto;
}

.marketplace-category-nav::-webkit-scrollbar {
  display: none;
}

.category-spacer {
  flex: 1 1 auto;
}

.category-pill {
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hato-brown);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.category-pill.is-active {
  background: rgba(108, 155, 91, 0.15);
  color: var(--hato-green);
}

.category-pill-favorites {
  margin-left: auto;
}

.category-select-mobile {
  display: none;
  margin-top: 1rem;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media screen and (max-width: 1024px) {
  .marketplace-header-top {
    align-items: stretch;
  }

  .marketplace-login-btn,
  .marketplace-messages-btn,
  .marketplace-sell-btn {
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .marketplace-header-top {
    flex-direction: column;
  }

  .marketplace-search-form,
  .marketplace-brand {
    width: 100%;
  }

  .category-spacer {
    display: none;
  }

  .marketplace-category-nav {
    display: none;
  }

  .category-select-mobile {
    display: block;
  }

  .marketplace-hero-inner {
    flex-direction: column;
  }

  .marketplace-hero-visual.hero-img {
    max-width: 100%;
    height: 320px;
  }
}

.listing-modal-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Login modal */
.modal.is-active {
  z-index: 200;
}

.modal-background {
  background: rgba(0, 0, 0, 0.6);
}

.login-modal-card {
  width: min(560px, 92vw);
  border-radius: 1.25rem;
  border: 1px solid rgba(31, 19, 9, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  background: #fff;
}

.publish-modal {
  z-index: 70;
}

#listing-modal {
  z-index: 75;
}

.publish-modal .modal-background {
  background: rgba(0, 0, 0, 0.6);
}

.publish-modal-card {
  width: min(960px, 95vw);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.publish-modal-card .modal-card-body {
  padding: 0;
}

.publish-modal-close-button {
  border: none;
  background: rgba(255, 255, 255, 0.8);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--hato-brown);
}

.publish-form {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.publish-photo-drop {
  background: #fff;
  border: 1px solid rgba(63, 43, 28, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.publish-photo-drop.is-documents {
  margin-top: 1rem;
}

.publish-drop-zone {
  border: 2px dashed rgba(63, 43, 28, 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.publish-drop-zone:hover {
  border-color: var(--hato-green);
  background: rgba(108, 155, 91, 0.05);
}

.publish-drop-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(108, 155, 91, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--hato-green);
}

.publish-drop-title {
  font-weight: 700;
  margin: 0;
}

.publish-drop-subtitle {
  margin: 0;
  color: rgba(31, 19, 9, 0.7);
  font-size: 0.95rem;
}

.publish-photo-input {
  display: none;
}

.publish-photo-preview {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.publish-category-field {
  width: 100%;
}

.publish-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.publish-category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 1.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(63, 43, 28, 0.15);
  background: #fff;
  color: var(--hato-brown);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.publish-category-pill:hover {
  border-color: rgba(108, 155, 91, 0.5);
}

.publish-category-pill.is-active {
  background: rgba(108, 155, 91, 0.12);
  border-color: var(--hato-green);
  color: var(--hato-green);
  transform: translateY(-1px);
}

.publish-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.publish-category-label {
  display: block;
  font-size: 0.9rem;
}

.publish-preview-thumb {
  border-radius: 1rem;
  overflow: hidden;
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(63, 43, 28, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.publish-preview-placeholder {
  text-align: center;
  color: rgba(31, 19, 9, 0.6);
  margin: 0;
}

.publish-doc-item {
  border-radius: 0.75rem;
  border: 1px solid rgba(63, 43, 28, 0.15);
  padding: 0.75rem 1rem;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(31, 19, 9, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.price-control {
  display: flex;
  align-items: stretch;
}

.price-input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.price-currency {
  border: 1px solid rgba(63, 43, 28, 0.2);
  border-left: none;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: #fff;
  min-width: 140px;
}

.price-currency select {
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--hato-brown);
  padding-right: 0;
  appearance: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.price-currency select:focus {
  outline: none;
}

.marketplace-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(63, 43, 28, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.marketplace-empty-state img {
  max-width: 240px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.marketplace-empty-state h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--hato-dark);
}

.marketplace-empty-state p {
  margin: 0;
  color: rgba(31, 19, 9, 0.75);
}

@media (max-width: 600px) {
  .publish-category-grid {
    grid-template-columns: 1fr;
  }
}

.publish-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(31, 19, 9, 0.75);
}

.publish-subtitle {
  max-width: 520px;
  font-size: 1rem;
  color: rgba(31, 19, 9, 0.75);
}

.listing-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.listing-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.publish-form .buttons {
  justify-content: flex-start;
  gap: 1rem;
}

@media screen and (max-width: 768px) {
  .marketplace-header-top {
    flex-direction: column;
  }

  .marketplace-search-form,
  .marketplace-brand {
    width: 100%;
  }

  .category-spacer {
    display: none;
  }
}

.listing-modal-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Login modal */
.login-modal-card {
  width: min(560px, 92vw);
  border-radius: 1.25rem;
  border: 1px solid rgba(31, 19, 9, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  background: #fff;
}

.publish-form .button.is-primary {
  min-width: 160px;
  font-weight: 600;
}

.publish-form .button.is-light {
  border-radius: 999px;
}

@media screen and (max-width: 640px) {
  .publish-form {
    padding: 2rem 1.5rem;
  }
}

.listing-contact-hint {
  background: rgba(108, 155, 91, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(31, 19, 9, 0.8);
  margin-top: 1rem;
}

.login-modal-head {
  background: #f7f6f5;
  padding: 2rem 2.5rem 1.5rem;
}

.login-modal-title {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--hato-dark);
}

.login-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #e5e5e5;
  color: #6d6d6d;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.login-close:hover {
  background: #d4d4d4;
  color: var(--hato-brown);
}

.login-modal-body {
  padding: 1.75rem 2.5rem 2.25rem;
  background: #fff;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-field {
  margin-bottom: 0;
}

.login-label {
  font-weight: 600;
  color: var(--hato-brown);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.login-input {
  border-radius: 0.65rem;
  border: 1px solid rgba(31, 19, 9, 0.15);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: #fff;
  box-shadow: none;
}

.login-input::placeholder {
  color: rgba(31, 19, 9, 0.35);
}

.login-input:focus {
  border-color: var(--hato-green);
  box-shadow: 0 0 0 0.08rem rgba(108, 155, 91, 0.35);
}

.login-help {
  font-size: 0.9rem;
  color: rgba(31, 19, 9, 0.65);
  margin-top: 0.35rem;
}

.login-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.login-primary {
  background: #3b2518;
  border-color: #3b2518;
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.9rem 2.25rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 170px;
}

.login-secondary {
  background: #f3efea;
  border-color: transparent;
  color: var(--hato-brown);
  border-radius: 0.75rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 170px;
}

.login-secondary:hover {
  color: #2b1c12;
  background: #ebe7e2;
}

.login-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--hato-brown);
}

.profile-modal-card {
  width: min(560px, 94vw);
  border-radius: 1.25rem;
  overflow: hidden;
}

.profile-modal-card .modal-card-body {
  padding: 1.75rem;
}

@media (max-width: 600px) {
  .login-modal-head,
  .login-modal-body {
    padding: 1.5rem;
  }

  .login-modal-title {
    font-size: 1.4rem;
  }

  .login-close {
    top: 0.6rem;
    right: 0.6rem;
  }

  .login-actions {
    flex-direction: column;
  }

  .login-primary,
  .login-secondary {
    width: 100%;
  }
}

.landing-top-bar {
  width: 100%;
  padding: 1.5rem 0 0;
}

.landing-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-login-btn {
  border-radius: 999px;
  border: 1px solid rgba(31, 19, 9, 0.2);
  background: #fff;
  color: var(--hato-brown);
  font-weight: 600;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.account-hero {
  background: var(--hato-cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem 0;
}

.account-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.account-hero-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-hero-nav a {
  font-weight: 600;
  color: var(--hato-brown);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.account-hero-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.account-section {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(31, 19, 9, 0.6);
  margin-bottom: 0.5rem;
}

.account-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.account-user-label {
  font-weight: 600;
  color: var(--hato-brown);
}

.account-subtitle {
  margin-bottom: 1.25rem !important;
}

.account-status-card {
  background: var(--hato-cream);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(63, 43, 28, 0.15);
  min-width: 260px;
}

.account-status-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(31, 19, 9, 0.6);
}

.account-plan-name {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.account-plan-note {
  color: rgba(31, 19, 9, 0.7);
  margin-bottom: 1rem;
}

.account-plan-head {
  align-items: flex-start;
  gap: 1rem;
}

.account-plan-section {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 19, 9, 0.08);
}

.account-billing-choice {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0;
}

.account-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: rgba(31, 19, 9, 0.85);
  line-height: 1.25;
}

.account-radio input[type='radio'] {
  flex-shrink: 0;
  margin: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--hato-green);
  position: static;
}

.account-billing-form {
  border: 1px dashed rgba(63, 43, 28, 0.35);
  background: rgba(240, 234, 226, 0.45);
  border-radius: 1.2rem;
  padding: 1.5rem;
  margin-top: 1.25rem;
}

.account-billing-form.is-hidden {
  display: none;
}

.account-billing-help {
  margin-top: 0.75rem;
}

.account-billing-actions {
  margin-top: 1rem;
}

.account-plan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.account-plan-option {
  border: 1px solid rgba(31, 19, 9, 0.12);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.account-plan-option.is-highlighted {
  border-color: var(--hato-green);
  box-shadow: 0 10px 30px rgba(9, 25, 13, 0.08);
}

.account-plan-option.is-current-plan {
  border-color: var(--hato-green);
  box-shadow: 0 0 0 2px rgba(22, 111, 64, 0.25);
}

.account-plan-label {
  font-weight: 700;
  color: var(--hato-brown);
  margin: 0;
}

.account-plan-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.account-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: rgba(31, 19, 9, 0.75);
  flex-grow: 1;
}

.account-plan-features li::before {
  content: '•';
  color: var(--hato-green);
  margin-right: 0.35rem;
}

.account-plan-features li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.account-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.account-logout {
  color: var(--hato-brown);
  font-weight: 600;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  border-bottom: 1px solid rgba(31, 19, 9, 0.1);
  padding-bottom: 0.5rem;
}

.account-tab {
  border: none;
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(31, 19, 9, 0.7);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.account-tab.is-active {
  background: rgba(108, 155, 91, 0.15);
  color: var(--hato-green);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.account-panels {
  margin-top: 2rem;
}

.account-panel {
  display: none;
}

.account-panel.is-active {
  display: block;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.account-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(31, 19, 9, 0.08);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.04);
}

.account-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.account-card-head h3 {
  margin: 0;
}

.account-pill {
  border-radius: 999px;
  background: rgba(63, 43, 28, 0.08);
  color: var(--hato-brown);
  padding: 0.25rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.account-pill.is-muted {
  background: rgba(63, 43, 28, 0.08);
  color: rgba(31, 19, 9, 0.7);
}

.account-pill.is-green {
  background: rgba(108, 155, 91, 0.15);
  color: var(--hato-green);
}

.account-list {
  margin-top: 1rem;
}

.account-list div {
  margin-bottom: 0.65rem;
}

.account-list dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(31, 19, 9, 0.6);
}

.account-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--hato-dark);
}

.account-inline-button {
  margin-top: 1rem;
}

.account-bullets {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--hato-brown);
  line-height: 1.6;
}

.account-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(31, 19, 9, 0.7);
}

.account-listings-wrapper {
  border: 1px solid rgba(31, 19, 9, 0.08);
  border-radius: 1.5rem;
  padding: 1rem 1.25rem 1.5rem;
  background: #fdfbf7;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-listings-status {
  font-weight: 600;
  color: var(--hato-brown);
  margin: 0;
}

.account-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.account-market-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(31, 19, 9, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.account-market-cover {
  width: 100%;
  padding-top: 60%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.account-photo-edit-button {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: none;
  border-radius: 999px;
  background: rgba(31, 19, 9, 0.85);
  color: #fff;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.account-photo-edit-button:hover {
  background: rgba(31, 19, 9, 0.95);
}

.account-market-cover.is-empty::after {
  content: 'Sin foto';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(120deg, rgba(31, 19, 9, 0.6), rgba(31, 19, 9, 0.4));
  font-weight: 600;
}

.account-market-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-market-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.account-market-date {
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.6);
}

.account-market-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hato-brown);
}

.account-market-location {
  margin: 0;
  color: rgba(31, 19, 9, 0.7);
  font-size: 0.95rem;
}

.account-market-price {
  font-size: 1.15rem;
  color: var(--hato-dark);
}

.account-market-description {
  font-size: 0.95rem;
  color: rgba(31, 19, 9, 0.75);
  margin: 0.25rem 0 0;
}

.account-market-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.account-market-actions .button {
  flex: 1;
  min-width: 140px;
}

.account-listing-form {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(31, 19, 9, 0.08);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.account-listing-form.is-visible {
  display: flex;
}

.account-listing-form .field {
  width: 100%;
}

.account-listing-form textarea {
  min-height: 90px;
}

.account-listing-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.account-listing-status {
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.65);
}

.photos-modal-card {
  width: min(700px, 94vw);
  border-radius: 1.25rem;
  overflow: hidden;
}

.photos-modal-card .modal-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.account-photo-thumb {
  padding-top: 75%;
  border-radius: 0.85rem;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.account-photo-remove {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.account-photo-remove:hover {
  background: rgba(0, 0, 0, 0.8);
}

.account-steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.account-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.account-steps span {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(108, 155, 91, 0.15);
  color: var(--hato-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.account-steps strong {
  display: block;
  margin-bottom: 0.25rem;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.account-actions-dual {
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.account-actions-dual .button {
  flex: 1;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.account-table th,
.account-table td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid rgba(63, 43, 28, 0.08);
}

.account-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(31, 19, 9, 0.6);
}

@media (max-width: 768px) {
  .landing-top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-hero-nav {
    flex-wrap: wrap;
  }

  .account-header {
    flex-direction: column;
  }
}

.marketplace-feed {
  background: #fff;
}

.marketplace-card {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  padding: 0;
  background: #fff;
}

.marketplace-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.favorite-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(63, 43, 28, 0.35);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.favorite-button svg {
  width: 20px;
  height: 20px;
}

.favorite-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.7;
}

.favorite-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.favorite-button.is-favorite {
  color: #d93025;
}

.favorite-button.is-favorite svg path {
  fill: currentColor;
}

.marketplace-card .card-image {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 0;
  display: block;
}

.listing-thumb {
  position: relative;
  margin: 0;
  width: 100%;
  height: 260px;
  padding-top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  border-radius: 0;
  color: var(--hato-brown);
}

.listing-thumb span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.publish-section {
  background: var(--hato-cream);
}

.publish-info ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--hato-brown);
}

.listing-modal-card {
  width: min(960px, 95vw);
  max-height: calc(100vh - 2rem);
  background: transparent;
  box-shadow: none;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.listing-modal-card .modal-card-head {
  border: none;
  padding: 0;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  box-shadow: none;
  width: auto;
  z-index: 5;
  justify-content: flex-end;
}

.listing-modal-card .modal-card-title {
  display: none;
}

.listing-modal-card .modal-card-head .delete {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  color: #fff;
}

.listing-modal-card .modal-card-body {
  background: transparent;
  padding: 0 0 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.listing-modal-hero {
  width: 100%;
  min-height: 320px;
  height: clamp(320px, 60vh, 520px);
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
  background: #000;
  overflow: hidden;
}

.listing-hero-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

.listing-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 19, 9, 0.7);
  font-weight: 600;
  font-size: 1.2rem;
}

.listing-hero-chip {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.listing-hero-views {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.listing-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.listing-hero-counter {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.listing-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.listing-hero-nav:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-50%) scale(1.05);
}

.listing-hero-nav:active {
  transform: translateY(-50%) scale(0.97);
}

.listing-hero-nav-prev {
  left: 0.75rem;
}

.listing-hero-nav-next {
  right: 0.75rem;
}

.favorite-button-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  color: rgba(63, 43, 28, 0.45);
}

.favorite-button-modal:hover {
  transform: translateY(-1px);
}

.listing-modal-sheet {
  background: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  margin-top: 0;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  max-height: none;
  overflow: visible;
}

.listing-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.listing-sheet-heading {
  flex: 1 1 60%;
}

.listing-sheet-title {
  margin-bottom: 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--hato-brown);
}

.listing-sheet-price {
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0;
  color: var(--hato-brown);
  text-align: right;
  flex: 0 0 auto;
  min-width: 150px;
}

.listing-sheet-location {
  color: rgba(31, 19, 9, 0.7);
  margin-bottom: 0.25rem;
}

.listing-sheet-body {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.listing-sheet-main {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.listing-sheet-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.listing-sheet-section .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.listing-sheet-section .gallery a {
  width: 72px;
  height: 72px;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(63, 43, 28, 0.15);
}

.listing-sheet-section .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-sheet-contact {
  width: 100%;
}

.listing-sheet-contact .listing-contact-card {
  width: 100%;
}

.listing-contact-card {
  background: #f6fbf8;
  border-radius: 1.2rem;
  border: 1px solid rgba(14, 79, 56, 0.12);
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.listing-contact-card.is-access {
  background: #e8f6ef;
  border-color: rgba(14, 79, 56, 0.3);
}

.listing-contact-label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.listing-contact-info p {
  margin: 0.15rem 0;
}

.listing-message-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
}

.listing-message-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.listing-message-title {
  font-weight: 700;
  margin: 0;
}

.listing-message-description {
  margin: 0;
  color: rgba(31, 19, 9, 0.65);
  font-size: 0.9rem;
}

.listing-message-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.listing-message-bar {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.listing-message-bar .input {
  flex: 1;
  border-radius: 999px;
  min-height: 3rem;
}

.listing-message-bar .button {
  border-radius: 999px;
  white-space: nowrap;
  min-height: 3rem;
  padding: 0 1.1rem;
}

.listing-message-status {
  margin: 0;
}

.listing-message-placeholder {
  color: rgba(31, 19, 9, 0.6);
  font-size: 0.9rem;
}

.listing-sheet-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--hato-brown);
}

@media (max-width: 768px) {
  .listing-modal-sheet {
    padding: 1.25rem;
    max-height: none;
  }

  .listing-sheet-body {
    flex-direction: column;
  }
}

.floating-action {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 20px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  background: var(--hato-green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-action.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 768px) {
  .floating-action {
    width: calc(100% - 2rem);
    left: 50%;
    transform: translate(-50%, 20px);
  }

  .floating-action.is-visible {
    transform: translate(-50%, 0);
  }
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0.3rem;
  min-height: 3rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 24px rgba(37, 211, 102, 0.3);
  overflow: hidden;
  z-index: 50;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.messages-modal {
  z-index: 80;
}

.messages-modal-card {
  width: min(1080px, 97vw);
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 720px;
  max-height: 720px;
  display: flex;
  flex-direction: column;
}

.messages-modal-head {
  border-bottom: 1px solid rgba(31, 19, 9, 0.08);
}

.messages-modal-body {
  padding: 1.5rem;
  flex: 1;
  overflow: hidden;
}

.messages-layout {
  display: flex;
  gap: 1.25rem;
  height: 100%;
  overflow: hidden;
}

.messages-thread-list {
  flex: 0 0 260px;
  border-right: 1px solid rgba(31, 19, 9, 0.08);
  padding-right: 1rem;
  overflow-y: auto;
  padding-top: 0.25rem;
}

.messages-thread-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}

.messages-empty,
.messages-placeholder {
  color: rgba(31, 19, 9, 0.6);
  font-size: 0.95rem;
  padding: 1rem 0;
}

.messages-thread-item {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0.4rem;
  border-radius: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
  margin-bottom: 0.35rem;
}

.messages-thread-item:hover,
.messages-thread-item.is-active {
  background: rgba(108, 155, 91, 0.1);
}

.messages-thread-cover {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background-size: cover;
  background-position: center;
  background-color: rgba(31, 19, 9, 0.08);
  flex-shrink: 0;
}

.messages-thread-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.messages-thread-title {
  font-weight: 700;
  margin: 0;
  font-size: 0.95rem;
}

.messages-thread-meta {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(31, 19, 9, 0.6);
}

.messages-thread-snippet {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.85);
}

.messages-thread-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(31, 19, 9, 0.08);
  padding-bottom: 0.75rem;
}

.messages-thread-listing {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.messages-thread-listing img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.messages-thread-listing-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.messages-thread-listing-info strong {
  font-size: 1rem;
}

.messages-thread-messages {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
}

.messages-thread-message {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(31, 19, 9, 0.1);
  max-width: 70%;
  font-size: 0.95rem;
  line-height: 1.5;
}

.messages-thread-message strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: rgba(31, 19, 9, 0.65);
}

.messages-thread-message span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(31, 19, 9, 0.55);
}

.messages-thread-message.is-own {
  margin-left: auto;
  background: rgba(108, 155, 91, 0.12);
  border-color: rgba(108, 155, 91, 0.4);
}

.messages-send-form {
  border-top: 1px solid rgba(31, 19, 9, 0.08);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.messages-send-input {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.messages-send-input textarea {
  flex: 1;
  min-width: 0;
  resize: none;
  border-radius: 1rem;
  padding: 0.9rem 1.15rem;
  line-height: 1.4;
  min-height: 64px !important;
  max-height: 64px !important;
  height: 64px !important;
}

.messages-send-input .button {
  border-radius: 1rem;
  flex: 0 0 72px;
  white-space: nowrap;
  padding: 0;
  min-height: 64px !important;
  height: 64px !important;
}

.messages-status {
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.65);
}

.send-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 3rem;
}

.send-icon-button .send-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .messages-layout {
    flex-direction: column;
  }

  .messages-thread-list {
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid rgba(31, 19, 9, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}

.floating-whatsapp .whatsapp-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.floating-whatsapp .whatsapp-icon img {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.floating-whatsapp .whatsapp-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  transform: translateX(12px);
  font-size: 0.9rem;
  line-height: 1.3;
  transition: max-width 0.35s ease, opacity 0.25s ease, margin 0.25s ease, transform 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.floating-whatsapp:hover .whatsapp-text,
.floating-whatsapp:focus-visible .whatsapp-text {
  max-width: 280px;
  opacity: 1;
  margin-left: 0.55rem;
  margin-right: 0.75rem;
  transform: translateX(0);
}

@media screen and (max-width: 640px) {
  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
}
.listing-hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.listing-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hato-brown);
}

.listing-hero-nav.hero-prev {
  left: 0.75rem;
}

.listing-hero-nav.hero-next {
  right: 0.75rem;
}

.listing-hero-counter {
  position: absolute;
  bottom: 1rem;
  right: 50%;
  transform: translateX(50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.account-panel-description {
  color: rgba(31, 19, 9, 0.75);
  margin-bottom: 0.5rem;
}
.account-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .account-listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .account-listings-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.account-photo-drop {
  margin-top: 0.5rem;
}

.account-doc-drop {
  margin-top: 0.5rem;
}

.account-docs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.account-doc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(63, 43, 28, 0.08);
  color: var(--hato-brown);
  font-size: 0.9rem;
}

.account-doc-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.account-doc-remove {
  border: none;
  background: transparent;
  color: rgba(63, 43, 28, 0.6);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.account-plan-option button.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}
.legal-card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.legal-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(63, 43, 28, 0.12);
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 11, 3, 0.06);
}

.legal-text-section {
  padding: 4rem 0 5rem;
  background: #fff;
}

.legal-text-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--hato-brown);
}

.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: rgba(31, 19, 9, 0.7);
  margin-bottom: 0.5rem;
}

.legal-text-container h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(31, 19, 9, 0.85);
}

.legal-meta {
  font-size: 0.95rem;
  color: rgba(31, 19, 9, 0.65);
}

.legal-section {
  margin-top: 1.25rem;
}

.legal-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--hato-brown);
}

.legal-section p {
  line-height: 1.7;
  color: rgba(31, 19, 9, 0.9);
}

.legal-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.4rem;
  list-style: disc;
  color: rgba(31, 19, 9, 0.9);
  line-height: 1.6;
}

.legal-meta strong {
  color: var(--hato-brown);
}
