/* ============================================
   JudgeTrust – style.css
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap');
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --jt-accent:       #1ab87e;
  --jt-accent-light: #9ae5c5;
  --jt-star:         #f59e0b;
  --jt-radius-sm:    6px;
  --jt-radius-md:    10px;
  --jt-radius-lg:    14px;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #f5f5f7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--jt-accent); text-decoration: none; }
a:hover { opacity: 0.8; }

/* ── CONTAINER ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ── HEADER ───────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 0.5px solid rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--jt-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M8 1l1.9 3.8 4.1.6-3 2.9.7 4.2L8 10.5l-3.7 2 .7-4.2-3-2.9 4.1-.6z'/%3E%3C/svg%3E") center/16px no-repeat;
  border-radius: 6px;
}

.site-header nav {
  display: flex;
  gap: 4px;
}

.site-header nav a {
  font-size: 14px;
  color: #555;
  padding: 6px 12px;
  border-radius: var(--jt-radius-sm);
  transition: background 0.15s, color 0.15s;
}

.site-header nav a:hover {
  background: #f5f5f7;
  color: #1a1a2e;
  opacity: 1;
}

/* ── MAIN ─────────────────────────────────── */
main.container {
  flex: 1;
  padding-bottom: 3rem;
}

/* ── HERO (index) ─────────────────────────── */
.hero {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,.08);
  border-radius: var(--jt-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin-inline: auto;
}

/* ── SECTION HEADING ──────────────────────── */
section > h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ── GRID ─────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

/* ── CARD (tienda) ────────────────────────── */
.card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,.08);
  border-radius: var(--jt-radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  color: #555;
  flex: 1;
}

/* ── BUTTON ───────────────────────────────── */
.button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--jt-accent);
  background: var(--jt-accent-light);
  border: none;
  border-radius: var(--jt-radius-sm);
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s;
}

.button:hover { opacity: 0.75; }

.button--primary {
  background: var(--jt-accent);
  color: #fff;
}

/* ── STORE HERO ───────────────────────────── */
.store-hero {
  display: grid;
  grid-template-columns: 1fr 0fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .store-hero { grid-template-columns: 1fr; }
}

.store-hero__info h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.store-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 0.5rem;
}

.store-stats {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}

.stat-box {
  background: #f5f5f7;
  border-radius: var(--jt-radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 80px;
}

.stat-box strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
}

.stat-box span {
  font-size: 12px;
  color: #777;
}

/* ── FORM CARD ────────────────────────────── */
.store-hero__form .form-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,.1);
  border-radius: var(--jt-radius-lg);
  padding: 1.5rem;
}

.form-card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-top: 14px;
  margin-bottom: 4px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  font-size: 14px;
  padding: 8px 10px;
  border: 0.5px solid rgba(0,0,0,.15);
  border-radius: var(--jt-radius-sm);
  background: #fafafa;
  color: #1a1a2e;
  font-family: inherit;
  transition: border-color 0.15s;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--jt-accent);
}

.form-card textarea { resize: vertical; line-height: 1.5; }

.form-card button[type=submit] {
  margin-top: 1.25rem;
  width: 100%;
  padding: 10px;
  background: var(--jt-accent);
  color: #fff;
  border: none;
  border-radius: var(--jt-radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}

.form-card button[type=submit]:hover { opacity: 0.85; }

/* ── ALERTS ───────────────────────────────── */
.alert {
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--jt-radius-sm);
  margin-bottom: 1rem;
}

.alert.success {
  background: #d1fae5;
  color: #065f46;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
}

/* ── REVIEWS SECTION ──────────────────────── */
.reviews-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.review-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,.08);
  border-radius: var(--jt-radius-lg);
  padding: 1.25rem;
  margin-bottom: 12px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-top strong {
  font-size: 15px;
  font-weight: 600;
}

.review-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.review-card small {
  display: block;
  margin-top: 0.6rem;
  font-size: 12px;
  color: #999;
}

/* ── STAR HELPER ──────────────────────────── */
.stars {
  color: var(--jt-star);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ── LOGIN ────────────────────────────────── */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  padding: 1rem;
}

.form-card.small {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,.1);
  border-radius: var(--jt-radius-lg);
  padding: 2rem;
}

.form-card.small h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-card.small h1::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--jt-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M8 1l1.9 3.8 4.1.6-3 2.9.7 4.2L8 10.5l-3.7 2 .7-4.2-3-2.9 4.1-.6z'/%3E%3C/svg%3E") center/16px no-repeat;
  border-radius: 6px;
  flex-shrink: 0;
}

.form-card.small .button {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 10px;
  background: var(--jt-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--jt-radius-sm);
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}

.form-card.small .button:hover { opacity: 0.85; }

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 0.5px solid rgba(0,0,0,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 13px;
  color: #999;
}
/* ============================================
   HOME LANDING
   ============================================ */


.hw {
  font-family: 'DM Sans', sans-serif;
  background: #eefaf5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
}

main.container.home-main {
  width: 100%;
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: 0;
}

.page {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #0a3327;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* NAV HOME */
.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  position: relative;
  z-index: 10;
}
.home-nav.profile {
  padding: 0px;
  padding-bottom: 2em;
}
.home-nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #0f4a35;
  text-decoration: none;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.home-nav-links a {
  font-size: 14px;
  color: #3a6b59;
  text-decoration: none;
  font-weight: 500;
}

.home-nav-links a:hover {
  color: #0f4a35;
}

.home-nav-btn {
  background: #1ab87e;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.15s;
}

.home-nav-btn:hover {
  background: #14a06d !important;
}

/* HERO */
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  align-items: center;
  gap: 0;
  padding: 0 40px 40px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blobs svg {
  width: 100%;
  height: 100%;
}

.lines-left,
.lines-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.lines-left {
  left: 0;
}

.lines-right {
  right: 0;
  transform: scaleX(-1);
}

.col-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
}

.col-cards.left {
  align-items: flex-end;
  padding-right: 36px;
}

.col-cards.right {
  align-items: flex-start;
  padding-left: 36px;
}

.rcard {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(0,80,50,0.09);
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rcard:nth-child(1) {
  animation: f1 4s ease-in-out infinite alternate;
}

.rcard:nth-child(2) {
  animation: f2 4.5s ease-in-out infinite alternate;
  width: 195px;
}

.rcard:nth-child(3) {
  animation: f3 3.8s ease-in-out infinite alternate;
}

@keyframes f1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes f2 {
  0% { transform: translateY(-4px); }
  100% { transform: translateY(6px); }
}

@keyframes f3 {
  0% { transform: translateY(2px); }
  100% { transform: translateY(-7px); }
}

.rcard-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.rcard-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rcard-name {
  font-size: 12px;
  font-weight: 600;
  color: #0f3d2b;
}

.rcard-date {
  font-size: 10px;
  color: #7aaa93;
}

.rcard-stars {
  color: #f9b233;
  font-size: 13px;
  letter-spacing: -0.5px;
}

.rcard-text {
  font-size: 11.5px;
  color: #4a7a64;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.rcard-img {
  display: flex;
  gap: 6px;
}

.rcard-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #d4f0e4;
}

.rcard-more {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eefaf5;
  border: 1px solid #c6f0df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #1ab87e;
}

.col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 20px 0;
}

.hero-eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d4f5e8;
  border: 1px solid #9ae5c5;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #0f6e56;
}

.eyebrow-dot,
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1ab87e;
}

.hero-h1,
.section-title,
.cta-title {
  font-family: 'DM Serif Display', serif;
  overflow-wrap: break-word;
}

.hero-h1 {
  font-size: 52px;
  line-height: 1.08;
  color: #0a3327;
  max-width: 360px;
}

.hero-h1 .pill {
  display: inline-block;
  background: #1ab87e;
  color: #fff;
  border-radius: 40px;
  padding: 0 16px 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  vertical-align: middle;
}

.hero-sub {
  font-size: 15.5px;
  color: #3a6b59;
  line-height: 1.65;
  max-width: 300px;
  overflow-wrap: break-word;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1ab87e;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
  justify-content: center;
  max-width: 280px;
}

.hero-cta:hover {
  background: #14a06d;
  transform: translateY(-1px);
}

.hero-nocredit {
  font-size: 12px;
  color: #5a9a80;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1a5c42;
}

.badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.badge-sep {
  color: #b2d9c8;
}

/* STATS */
.stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px 30px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 40px;
  border-right: 1px solid #b2e8cf;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #0a3327;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #5a9a80;
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 90px 60px;
}

.section-alt {
  background: #eefaf5;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 40px;
  line-height: 1.1;
  color: #0a3327;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15.5px;
  color: #3a6b59;
  line-height: 1.65;
  max-width: 520px;
  overflow-wrap: break-word;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #1ab87e, #9ae5c5);
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #d4f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #0f6e56;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: #0a3327;
}

.step-text {
  font-size: 14px;
  color: #3a6b59;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.step-tag {
  display: inline-block;
  background: #eefaf5;
  border: 1px solid #b2e8cf;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #0f6e56;
  width: fit-content;
}

.home-stores-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feat-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #c6f0df;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feat-card:hover {
  box-shadow: 0 8px 30px rgba(0,80,50,0.1);
  transform: translateY(-2px);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #d4f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg {
  width: 24px;
  height: 24px;
}

.feat-title {
  font-size: 16px;
  font-weight: 600;
  color: #0a3327;
}

.feat-text {
  font-size: 13.5px;
  color: #3a6b59;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #c6f0df;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan.featured {
  background: #0a3327;
  border-color: #0a3327;
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(10,51,39,0.25);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1ab87e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #5a9a80;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.plan.featured .plan-name {
  color: #6dd6a8;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: #0a3327;
  line-height: 1;
}

.plan.featured .plan-amount {
  color: #fff;
}

.plan-per {
  font-size: 13px;
  color: #5a9a80;
}

.plan.featured .plan-per {
  color: #6dd6a8;
}

.plan-desc {
  font-size: 13px;
  color: #3a6b59;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.plan.featured .plan-desc {
  color: #9ad4bc;
}

.plan-divider {
  height: 1px;
  background: #d4f0e4;
}

.plan.featured .plan-divider {
  background: #1a5c42;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #3a6b59;
}

.plan.featured .plan-features li {
  color: #c6f0df;
}

.plan-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d4f5e8;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%231ab87e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.plan.featured .plan-features li::before {
  background-color: #1a5c42;
}

.plan-features li.disabled {
  opacity: 0.4;
}

.plan-features li.disabled::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11l6-6M11 11L5 5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s;
  margin-top: auto;
}

.plan-btn-outline {
  border: 1.5px solid #1ab87e;
  color: #0f6e56;
  background: transparent;
}

.plan-btn-outline:hover {
  background: #eefaf5;
}

.plan-btn-solid {
  background: #1ab87e;
  color: #fff;
  border: none;
}

.plan-btn-solid:hover {
  background: #14a06d;
}

/* CTA */
.cta-section {
  background: #0a3327;
  padding: 100px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, #1ab87e33 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  max-width: 560px;
  position: relative;
}

.cta-title .pill {
  display: inline-block;
  background: #1ab87e;
  color: #fff;
  border-radius: 40px;
  padding: 0 16px 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.15;
}

.cta-sub {
  font-size: 16px;
  color: #6dd6a8;
  max-width: 420px;
  line-height: 1.65;
  position: relative;
  overflow-wrap: break-word;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1ab87e;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.cta-btn-main:hover {
  background: #14a06d;
  transform: translateY(-1px);
}

.cta-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1a5c42;
  color: #6dd6a8;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-btn-sec:hover {
  background: #0f4a35;
}

.cta-note {
  font-size: 12px;
  color: #4a8a6a;
  position: relative;
}

.cta-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-logo-label {
  font-size: 11px;
  color: #4a8a6a;
  font-weight: 500;
}

.cta-logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0f4a35;
  border: 1px solid #1a5c42;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #6dd6a8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-body {
    grid-template-columns: 1fr 360px 1fr;
    padding: 0 24px 32px;
  }

  .hero-h1 {
    font-size: 44px;
    max-width: 320px;
  }

  .hero-h1 .pill {
    font-size: 40px;
  }

  .section {
    padding: 72px 40px;
  }

  .cta-section {
    padding: 80px 40px;
  }

  .stats-bar {
    padding: 20px 30px 30px;
  }

  .stat-item {
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  .home-nav {
    padding: 18px 24px;
    gap: 16px;
  }

  .home-nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 20px 24px 32px;
  }

  .col-center {
    order: 1;
    max-width: 640px;
    margin: 0 auto;
  }

  .col-cards.left,
  .col-cards.right {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .col-cards.left {
    order: 2;
  }

  .col-cards.right {
    order: 3;
  }

  .hero-h1 {
    max-width: 100%;
    font-size: 42px;
  }

  .hero-h1 .pill {
    font-size: 38px;
  }

  .hero-sub {
    max-width: 560px;
  }

  .stat-item {
    border-right: none;
    min-width: 180px;
  }

  .steps,
  .plans,
  .home-stores-layout {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

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

  .plan.featured {
    transform: none;
  }

  .cta-title {
    font-size: 40px;
  }

  .cta-title .pill {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .home-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .home-nav-links {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .home-nav-links a {
    font-size: 13px;
  }

  .home-nav-btn {
    padding: 8px 14px;
  }

  .lines-left,
  .lines-right {
    display: none;
  }

  .hero-body {
    padding: 16px 20px 28px;
  }

  .rcard,
  .rcard:nth-child(2) {
    width: 100%;
    max-width: 320px;
  }

  .hero-h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-h1 .pill {
    font-size: 30px;
    padding: 0 12px 3px;
  }

  .hero-sub {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-cta {
    max-width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  .badge-sep {
    display: none;
  }

  .stats-bar {
    padding: 20px;
    gap: 16px;
  }

  .stat-item {
    min-width: calc(50% - 8px);
    padding: 0;
  }

  .section {
    padding: 56px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-sub {
    max-width: 100%;
  }

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

  .feat-card,
  .plan {
    padding: 22px 20px;
  }

  .plan-amount {
    font-size: 38px;
  }

  .cta-section {
    padding: 64px 20px;
    gap: 20px;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-title .pill {
    font-size: 30px;
    padding: 0 12px 3px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-main,
  .cta-btn-sec {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-body {
    gap: 24px;
  }

  .hero-h1 {
    font-size: 28px;
  }

  .hero-h1 .pill {
    font-size: 24px;
    border-radius: 24px;
  }

  .hero-sub,
  .cta-sub {
    font-size: 14px;
  }

  .hero-nocredit,
  .cta-note,
  .cta-logo-label,
  .cta-logo-badge {
    font-size: 11px;
  }

  .badge {
    font-size: 11px;
    justify-content: center;
  }

  .stats-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-item {
    width: 100%;
    min-width: 100%;
  }

  .section-title {
    font-size: 26px;
  }

  .step-num {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .step-title,
  .feat-title {
    font-size: 15px;
  }

  .step-text,
  .feat-text,
  .plan-features li,
  .plan-desc {
    font-size: 13px;
  }

  .plan-amount {
    font-size: 34px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-title .pill {
    font-size: 24px;
  }
}
/* ── STORE HERO FULL WIDTH ────────────────── */
main.container {
  max-width: 1100px;
}

.store-hero--full {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(15 42 35 / 92%), rgb(28 185 127)), var(--store-cover, none);
  background-size: cover;
  background-position: center;
}

.store-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

.store-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.14), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.10), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.08), transparent 35%);
  pointer-events: none;
}

.store-hero__info,
.store-hero__form {
  min-width: 0;
}

.store-hero__form {
  width: 100%;
}

.store-hero__form .form-card {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.store-hero--full .store-hero__info h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 0;
}

.store-hero--full .store-description {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  max-width: 680px;
  margin-top: 20px;
}

.store-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.store-brand__logo {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  overflow: hidden;
  flex-shrink: 0;
}

.store-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-brand__logo--placeholder {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
}

.store-brand__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-brand__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.store-hero__actions {
  margin-top: 24px;
}

.store-visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.store-visit-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.store-hero--full .store-stats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-hero--full .stat-box {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.store-hero--full .stat-box strong {
  color: #fff;
}

.store-hero--full .stat-box span {
  color: rgba(255,255,255,0.78);
}

.store-hero--full .form-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

@media (max-width: 900px) {
  .store-hero__inner {
    grid-template-columns: 1fr;
    padding: 56px 20px;
    gap: 28px;
  }

  .store-hero--full .store-hero__info h1 {
    font-size: 34px;
  }

  .store-brand {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .store-brand {
    flex-direction: column;
    gap: 14px;
  }

  .store-brand__logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .store-hero--full .store-hero__info h1 {
    font-size: 30px;
  }

  .store-hero--full .store-description {
    font-size: 15px;
  }
}

/* ============================================
   ADMIN / BACKOFFICE
   ============================================ */

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #f6f7fb;
}

.admin-sidebar {
  background: #111827;
  color: #fff;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.admin-sidebar__brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 6px 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-sidebar__nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.admin-sidebar__nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  opacity: 1;
}

.admin-sidebar__nav a.active {
  background: #4f46e5;
  color: #fff;
}

.admin-content {
  padding: 32px;
  min-width: 0;
}

.admin-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-page-header h1 {
  font-size: 30px;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 8px;
}

.admin-page-header p {
  font-size: 14px;
  color: #6b7280;
  max-width: 760px;
}

.admin-card {
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(17,24,39,0.05);
  overflow: hidden;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.table.admin-table thead th {
  background: #f9fafb;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.table.admin-table tbody td {
  padding: 16px;
  font-size: 14px;
  color: #111827;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.table.admin-table tbody tr:hover {
  background: #fafbff;
}

.table.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ede9fe;
  color: #4338ca;
  font-size: 13px;
  font-weight: 700;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.admin-badge.is-success {
  background: #dcfce7;
  color: #166534;
}

.admin-badge.is-warning {
  background: #fef3c7;
  color: #92400e;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-link {
  font-size: 13px;
  font-weight: 600;
  color: #4338ca;
  text-decoration: none;
}

.admin-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.admin-link.danger {
  color: #dc2626;
}

.admin-empty {
  text-align: center;
  color: #6b7280;
  padding: 28px 12px;
  font-size: 14px;
}

/* Formularios admin */
.admin-content .form-card {
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(17,24,39,0.05);
  padding: 24px;
  max-width: 860px;
}

.admin-content .form-card h2,
.admin-content .form-card h1 {
  margin-bottom: 18px;
}

.admin-content .form-card input,
.admin-content .form-card select,
.admin-content .form-card textarea {
  background: #fff;
  border: 1px solid #d1d5db;
}

.admin-content .form-card input:focus,
.admin-content .form-card select:focus,
.admin-content .form-card textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}

.admin-content .form-card button[type=submit],
.admin-content .button,
.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.admin-content .form-card button[type=submit]:hover,
.admin-content .button:hover,
.admin-button:hover {
  opacity: 1;
  background: #4338ca;
}

/* Alertas admin */
.admin-content .alert {
  margin-bottom: 16px;
  border: 1px solid transparent;
}

.admin-content .alert.success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.admin-content .alert.error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

/* Responsive */
@media (max-width: 960px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    padding: 18px 16px;
    gap: 16px;
  }

  .admin-sidebar__brand {
    padding: 0 4px 12px;
  }

  .admin-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-page-header h1 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .admin-content {
    padding: 16px;
  }

  .admin-card,
  .admin-content .form-card {
    border-radius: 14px;
  }

  .admin-page-header {
    margin-bottom: 18px;
  }
}