/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-primary:       #2563EB;
  --c-primary-hover: #1D4ED8;
  --c-primary-light: #DBEAFE;
  --c-primary-50:    #EFF6FF;
  --c-sky:           #38BDF8;
  --c-bg:            #F8FAFC;
  --c-surface:       #FFFFFF;
  --c-text:          #0F172A;
  --c-muted:         #64748B;
  --c-border:        #E2E8F0;
  --c-success:       #10B981;
  --c-danger:        #EF4444;

  --c-dark:          #0F172A;
  --c-dark-surface:  #1E293B;
  --c-dark-border:   #334155;
  --c-dark-text:     #F1F5F9;
  --c-dark-muted:    #94A3B8;

  --c-mock-bg:       #1E293B;
  --c-mock-bar:      #0F172A;

  --font:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  --sh-sm:   0 1px 2px rgba(0,0,0,0.05);
  --sh-md:   0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --sh-lg:   0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --sh-xl:   0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
  --sh-2xl:  0 25px 50px -12px rgba(0,0,0,0.18);
  --sh-hero: 0 50px 100px -20px rgba(0,0,0,0.2), 0 30px 60px -10px rgba(37,99,235,0.18);

  --container:     1160px;
  --container-pad: clamp(1rem, 5vw, 2rem);
  --section-py:    clamp(4rem, 8vw, 6.5rem);
  --nav-h:         70px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-base: 220ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-py) 0; }
.section--alt  { background: var(--c-bg); }
.section--dark { background: var(--c-dark); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s-16);
}
.section__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: var(--s-4);
}
.section__subtitle {
  font-size: var(--text-lg);
  color: var(--c-muted);
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--r-md);
  padding: 0.7rem 1.4rem;
  transition: background var(--t-base), color var(--t-base),
              box-shadow var(--t-base), transform var(--t-fast),
              border-color var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.btn:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 2px; }
.btn:active { transform: translateY(0) !important; }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border: 2px solid var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
  box-shadow: 0 8px 24px rgba(37,99,235,0.32);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-border);
}
.btn--outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-50);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-border);
}
.btn--ghost:hover {
  background: var(--c-bg);
  border-color: #CBD5E1;
}

.btn--sm  { padding: 0.45rem 0.9rem; font-size: var(--text-xs); border-radius: var(--r-sm); }
.btn--lg  { padding: 0.875rem 1.75rem; font-size: var(--text-base); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-slow), box-shadow var(--t-slow),
              backdrop-filter var(--t-slow);
}
.navbar.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 16px rgba(0,0,0,0.05);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.navbar__logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar__logo img { height: 30px; width: auto; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.navbar__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-muted);
  transition: color var(--t-fast);
  letter-spacing: -0.01em;
}
.navbar__link:hover { color: var(--c-text); }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  border-radius: var(--r-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.navbar__hamburger:hover { background: var(--c-bg); }
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BROWSER MOCKUP
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 75% 65% at 70% 50%, rgba(37,99,235,0.07) 0%, transparent 70%),
    var(--c-surface);
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-16);
  align-items: center;
}
.hero__content { max-width: 520px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-light);
  border-radius: var(--r-full);
  padding: 5px 13px;
  margin-bottom: var(--s-6);
}
.hero__headline {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: var(--s-3);
}
.hero__tagline {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 600;
  font-style: italic;
  color: var(--c-primary);
  margin-bottom: var(--s-6);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero__tagline-accent {
  color: var(--c-success);
  font-style: normal;
  font-weight: 700;
}
.hero__sub {
  font-size: var(--text-lg);
  color: var(--c-muted);
  line-height: 1.78;
  margin-bottom: var(--s-10);
  max-width: 480px;
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
  max-width: 480px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-muted);
  line-height: 1.5;
}
.hero__bullets li svg { flex-shrink: 0; }
.hero__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-10);
}
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-muted);
}
.hero__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--c-primary-50);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  border: 1px solid var(--c-primary-light);
}
.hero__visual { position: relative; }

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-8);
  align-items: start;
}
.problem-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
}
.problem-card--bad  { border-color: #FEE2E2; background: #FFF5F5; }
.problem-card--good { border-color: #D1FAE5; background: #F0FDF4; }
.problem-card__header {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.problem-card__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem-card__icon-wrap--bad  { background: #FEE2E2; color: var(--c-danger); }
.problem-card__icon-wrap--good { background: #D1FAE5; color: var(--c-success); }
.problem-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-text);
}
.problem-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.problem-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.6;
}
.problem-card__list li svg { flex-shrink: 0; margin-top: 2px; }
.problem-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--s-12);
  gap: var(--s-3);
}
.problem-divider__line {
  width: 1px;
  height: 80px;
  background: var(--c-border);
}
.problem-divider__vs {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-muted);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 4px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  padding: var(--s-16) 0;
}
.feature + .feature { border-top: 1px solid var(--c-border); }

/* Reversed: content first (left), visual second (right) */
/* HTML already has the right order — no CSS reorder needed */

.feature__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-light);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: var(--s-4);
}
.feature__title {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: var(--s-4);
}
.feature__desc {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.78;
  margin-bottom: var(--s-6);
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.5;
}
.feature__list li svg { flex-shrink: 0; margin-top: 1px; }

/* Illustration (no screenshot) */
.feature__illus {
  background: linear-gradient(140deg, var(--c-primary-50) 0%, #F1F5F9 100%);
  border: 1.5px solid var(--c-primary-light);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-16) var(--s-10);
  min-height: 320px;
  gap: var(--s-4);
}
.feature__illus-icon {
  width: 96px;
  height: 96px;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-border);
  margin-bottom: var(--s-2);
}
.feature__illus-label {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-text);
}
.feature__illus-sub {
  font-size: var(--text-sm);
  color: var(--c-muted);
}
.feature__illus-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  margin-top: var(--s-2);
}
.feature__illus-pill {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-light);
  border-radius: var(--r-full);
  padding: 4px 12px;
}

/* Dark illustration (MercadoPago) */
.feature__illus--dark {
  background: linear-gradient(140deg, #1E3A6E 0%, var(--c-dark) 100%);
  border-color: var(--c-dark-border);
}
.feature__illus--dark .feature__illus-label { color: var(--c-dark-text); }
.feature__illus--dark .feature__illus-sub   { color: var(--c-dark-muted); }

/* ============================================================
   HERO COMPOSITION (CSS product page + widget simulation)
   ============================================================ */
.hero-composition {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.hero-pdp-mock {
  background: white;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.hero-pdp-mock__header {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: #F8FAFC;
  border-bottom: 1px solid var(--c-border);
}
.hero-pdp-mock__dots {
  display: flex;
  gap: 5px;
}
.hero-pdp-mock__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-pdp-mock__dots span:nth-child(1) { background: #FF5F57; }
.hero-pdp-mock__dots span:nth-child(2) { background: #FEBC2E; }
.hero-pdp-mock__dots span:nth-child(3) { background: #28C840; }
.hero-pdp-mock__url {
  flex: 1;
  font-size: 11px;
  color: var(--c-muted);
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-pdp-mock__body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
}
.hero-pdp-mock__image {
  position: relative;
  background: linear-gradient(155deg, #F0F4FF 0%, #E8F0FE 40%, #DBEAFE 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
}
.hero-product-bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero-product-bottle__cap {
  width: 24px;
  height: 14px;
  background: linear-gradient(180deg, #CBD5E1 0%, #94A3B8 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 1;
}
.hero-product-bottle__body {
  width: 64px;
  height: 100px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 50%, #E2E8F0 100%);
  border-radius: 8px 8px 12px 12px;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.08), -2px 0 8px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.hero-product-bottle__body::before {
  content: '';
  position: absolute;
  left: 4px; top: 0; bottom: 0; width: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
  border-radius: 4px;
}
.hero-product-bottle__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.hero-product-bottle__brand {
  font-size: 7px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--c-primary); text-transform: uppercase;
}
.hero-product-bottle__line {
  font-size: 8px; font-weight: 600; color: var(--c-text);
}
.hero-product-bottle__ml {
  font-size: 6px; color: var(--c-muted);
}
.hero-product-bottle__shadow {
  width: 48px; height: 6px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.1) 0%, transparent 70%);
  margin-top: 4px;
}
.hero-pdp-mock__info {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.hero-pdp-mock__brand {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.hero-pdp-mock__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.hero-pdp-mock__price {
  font-size: var(--text-xs);
  color: var(--c-muted);
  text-decoration: line-through;
  margin-bottom: var(--s-1);
}

/* Widget simulation inside hero PDP mock */
.hero-widget-sim {
  border: 1.5px solid var(--c-primary-light);
  border-radius: var(--r-md);
  overflow: hidden;
  background: white;
}
.hero-widget-sim__option {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid var(--c-border);
  font-size: 10px;
  color: var(--c-muted);
}
.hero-widget-sim__option--active {
  background: var(--c-primary-50);
  flex-wrap: wrap;
}
.hero-widget-sim__radio {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.hero-widget-sim__radio--on {
  border-color: var(--c-primary);
  background: var(--c-primary);
  box-shadow: inset 0 0 0 2px white;
}
.hero-widget-sim__text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.hero-widget-sim__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--c-text);
}
.hero-widget-sim__discount {
  font-size: 9px;
  font-weight: 700;
  color: white;
  background: var(--c-success);
  border-radius: var(--r-full);
  padding: 1px 5px;
}
.hero-widget-sim__sub-price {
  font-size: 10px;
  font-weight: 700;
  color: var(--c-text);
  flex-shrink: 0;
}
.hero-widget-sim__benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid var(--c-primary-light);
  background: var(--c-primary-50);
}
.hero-widget-sim__benefits span {
  font-size: 9px;
  color: var(--c-primary);
  line-height: 1.4;
}
.hero-widget-sim__benefits span::before {
  content: '✓ ';
  font-weight: 700;
}
.hero-widget-sim__freq {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--c-border);
}
.hero-widget-sim__freq-label {
  font-size: 9px;
  color: var(--c-muted);
  font-weight: 500;
}
.hero-widget-sim__freq-pills {
  display: flex;
  gap: 4px;
}
.hero-widget-sim__pill {
  font-size: 9px;
  font-weight: 600;
  color: var(--c-muted);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 1px 6px;
}
.hero-widget-sim__pill--active {
  color: var(--c-primary);
  background: var(--c-primary-50);
  border-color: var(--c-primary-light);
}

/* Notification card */
.hero-notif {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: var(--s-4) var(--s-5);
  border: 1px solid rgba(16,185,129,0.15);
  animation: notifSlideIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.8s both;
  align-self: flex-start;
  max-width: 360px;
}
.hero-notif__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-notif__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-notif__text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
}
.hero-notif__text span {
  font-size: var(--text-xs);
  color: var(--c-muted);
  line-height: 1.4;
}
@keyframes notifSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-notif { animation: none; }
}

/* ============================================================
   WIDGET SHOWCASE (Feature 1 — dark bg premium style)
   ============================================================ */
.widget-showcase {
  background: #0F172A;
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow: var(--sh-xl);
}
.widget-showcase__browser {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.widget-showcase__bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px var(--s-4);
  background: #F1F5F9;
  border-bottom: 1px solid var(--c-border);
}
.widget-showcase__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.widget-showcase__url {
  flex: 1;
  font-size: 11px;
  color: var(--c-muted);
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-showcase__page {
  padding: var(--s-5);
}
.widget-showcase__product {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-4);
  align-items: start;
}
.widget-showcase__product-img {
  aspect-ratio: 1;
  background: linear-gradient(155deg, #FFF1F2 0%, #FFE4E6 50%, #FECDD3 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-product-jar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-product-jar__lid {
  width: 36px; height: 10px;
  background: linear-gradient(180deg, #F9A8D4 0%, #EC4899 100%);
  border-radius: 4px 4px 0 0;
}
.showcase-product-jar__body {
  width: 48px; height: 36px;
  background: linear-gradient(135deg, #FFF 0%, #FFF1F2 100%);
  border-radius: 4px 4px 8px 8px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 3px 8px rgba(0,0,0,0.08);
}
.showcase-product-jar__label {
  font-size: 6px; font-weight: 700; color: #BE185D;
  letter-spacing: 0.05em;
}
.widget-showcase__product-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.widget-showcase__product-price {
  font-size: var(--text-xs);
  color: var(--c-muted);
  text-decoration: line-through;
  margin-bottom: var(--s-3);
}
.widget-showcase__widget-box {
  border: 1.5px solid var(--c-primary-light);
  border-radius: var(--r-md);
  overflow: hidden;
  background: white;
}
.widget-showcase__radio-row {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid var(--c-border);
  font-size: 10px;
  color: var(--c-text);
  background: var(--c-primary-50);
}
.widget-showcase__radio-row--dim {
  background: white;
  color: var(--c-muted);
  border-bottom: none;
}
.widget-showcase__radio-active {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  background: var(--c-primary);
  box-shadow: inset 0 0 0 2px white;
  flex-shrink: 0;
}
.widget-showcase__radio-off {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}
.widget-showcase__badge-disc {
  font-size: 9px;
  font-weight: 700;
  color: white;
  background: var(--c-success);
  border-radius: var(--r-full);
  padding: 1px 5px;
  flex-shrink: 0;
}
.widget-showcase__price-new {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--c-text);
}
.widget-showcase__price-old {
  margin-left: auto;
  font-size: 10px;
  color: var(--c-muted);
  text-decoration: line-through;
}
.widget-showcase__pills-row {
  display: flex;
  gap: 4px;
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.widget-showcase__fpill {
  font-size: 9px;
  font-weight: 600;
  color: var(--c-muted);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 1px 6px;
}
.widget-showcase__fpill--on {
  color: var(--c-primary);
  background: var(--c-primary-50);
  border-color: var(--c-primary-light);
}
.widget-showcase__benefits {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: var(--s-1) var(--s-3);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-primary-50);
}
.widget-showcase__benefits span {
  font-size: 8px; color: var(--c-primary); line-height: 1.5;
}
.widget-showcase__benefits span::before {
  content: '✓ '; font-weight: 700;
}

/* Customize panel (inside dark card) */
.widget-showcase__customize {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.widget-showcase__customize-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.widget-showcase__customize-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}
.showcase-color-pick {
  display: flex; align-items: center; gap: 6px; position: relative;
}
.showcase-color-pick__swatch {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-block; flex-shrink: 0;
}
.showcase-color-pick__palette {
  display: flex; gap: 3px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  padding: 4px 6px;
}
.showcase-color-pick__palette span {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
}
.showcase-color-pick__selected {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 1px;
}
.widget-showcase__toggle {
  width: 28px; height: 16px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.2);
  position: relative;
  flex-shrink: 0;
}
.widget-showcase__toggle--on { background: var(--c-success); }
.widget-showcase__toggle-knob {
  position: absolute;
  right: 2px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: white;
}
.widget-showcase__border-opts { display: flex; gap: var(--s-2); }
.widget-showcase__bopt {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: inline-block;
  border-radius: 0;
}
.widget-showcase__bopt--rounded { border-radius: 4px; }
.widget-showcase__bopt--active {
  border-color: var(--c-primary);
  background: rgba(37,99,235,0.25);
}

/* ============================================================
   DASH SHOWCASE (Feature 2 — CSS dashboard with sidebar + KPIs + charts)
   ============================================================ */
.dash-showcase {
  background: #0F172A;
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  box-shadow: var(--sh-xl);
  min-height: 340px;
}
.dash-showcase__sidebar {
  background: #1E293B;
  padding: var(--s-4) var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  border-right: 1px solid #334155;
}
.dash-showcase__logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #F1F5F9;
}
.dash-showcase__logo-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--c-primary);
  position: relative;
}
.dash-showcase__logo-icon::after {
  content: 'S'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.dash-showcase__nav {
  display: flex; flex-direction: column; gap: 2px;
}
.dash-showcase__nav-item {
  font-size: 9px; font-weight: 500; color: #94A3B8;
  padding: 5px 8px; border-radius: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-showcase__nav-item--active {
  background: var(--c-primary);
  color: #fff; font-weight: 600;
}
.dash-showcase__main {
  background: #F8FAFC;
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.dash-showcase__topbar {
  font-size: 12px; font-weight: 700; color: var(--c-text);
}
.dash-showcase__kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.dash-showcase__kpi {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 8px; padding: 8px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.dash-showcase__kpi-label {
  font-size: 7px; font-weight: 600; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.dash-showcase__kpi-value {
  font-size: 14px; font-weight: 800; color: var(--c-text);
  letter-spacing: -0.02em;
}
.dash-showcase__kpi-value--primary { color: var(--c-primary); }
.dash-showcase__kpi-value--success { color: var(--c-success); }
.dash-showcase__charts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex: 1;
}
.dash-showcase__chart {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 8px; padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.dash-showcase__chart-title {
  font-size: 8px; font-weight: 700; color: var(--c-text);
}
.dash-showcase__chart-bars {
  display: flex; align-items: flex-end; gap: 4px;
  flex: 1; min-height: 60px;
}
.dash-showcase__bar {
  flex: 1; background: var(--c-primary-light);
  border-radius: 3px 3px 0 0; min-height: 4px;
}
.dash-showcase__bar--current { background: var(--c-primary); }
.dash-showcase__cohort-grid {
  display: flex; flex-direction: column; gap: 3px;
}
.dash-showcase__cohort-row {
  display: flex; gap: 3px; align-items: center;
}
.dash-showcase__cohort-week {
  font-size: 7px; font-weight: 600; color: var(--c-muted);
  width: 18px; flex-shrink: 0;
}
.dash-showcase__cohort-cell {
  flex: 1; font-size: 7px; font-weight: 600;
  text-align: center; padding: 3px 2px;
  border-radius: 3px;
}
.dash-showcase__cc--100 { background: #16A34A; color: #fff; }
.dash-showcase__cc--80  { background: #4ADE80; color: #064E3B; }
.dash-showcase__cc--70  { background: #86EFAC; color: #064E3B; }
.dash-showcase__cc--dim { background: #F1F5F9; color: var(--c-muted); }

/* ============================================================
   PORTAL SHOWCASE (Feature 3 — client subscription portal)
   ============================================================ */
.portal-showcase {
  background: #fff;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-border);
}
.portal-showcase__header {
  padding: var(--s-5) var(--s-6);
  border-bottom: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between;
}
.portal-showcase__store-logo {
  font-size: 13px; font-weight: 800; color: var(--c-text);
  letter-spacing: 0.08em;
}
.portal-showcase__email {
  font-size: 10px; color: var(--c-muted);
}
.portal-showcase__filters {
  padding: var(--s-3) var(--s-6);
  display: flex; gap: 6px;
  border-bottom: 1px solid var(--c-border);
}
.portal-showcase__filter {
  font-size: 10px; font-weight: 600; color: var(--c-muted);
  padding: 4px 10px; border-radius: var(--r-full);
  background: var(--c-bg);
}
.portal-showcase__filter--active {
  background: var(--c-text); color: #fff;
}
.portal-showcase__cards {
  padding: var(--s-4) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.portal-showcase__card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--s-4); align-items: start;
}
.portal-showcase__card--dim { opacity: 0.55; }
.portal-showcase__card-product {
  display: flex; gap: var(--s-3); align-items: start;
}
.portal-showcase__card-img {
  width: 44px; height: 44px;
  border-radius: var(--r-md); flex-shrink: 0;
}
.portal-showcase__card-name {
  font-size: 11px; font-weight: 700; color: var(--c-text);
}
.portal-showcase__card-status {
  font-size: 8px; font-weight: 700; color: var(--c-success);
  background: rgba(16,185,129,0.1); border-radius: var(--r-full);
  padding: 1px 6px; display: inline-block; margin: 2px 0;
}
.portal-showcase__card-price {
  font-size: 10px; font-weight: 600; color: var(--c-text);
}
.portal-showcase__card-freq {
  font-size: 9px; color: var(--c-muted);
}
.portal-showcase__card-actions {
  display: flex; flex-direction: column; gap: 3px;
}
.portal-showcase__action {
  font-size: 9px; font-weight: 600; color: var(--c-text);
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: 5px; padding: 4px 10px; text-align: center;
  white-space: nowrap;
}
.portal-showcase__action--danger {
  color: var(--c-danger); border-color: #FEE2E2; background: #FFF5F5;
}
.portal-showcase__card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-mini-bottle {
  display: flex; flex-direction: column; align-items: center;
}
.portal-mini-bottle__cap {
  width: 10px; height: 5px;
  background: linear-gradient(180deg, #93C5FD 0%, #60A5FA 100%);
  border-radius: 2px 2px 0 0;
}
.portal-mini-bottle__body {
  width: 20px; height: 28px;
  background: linear-gradient(135deg, #fff 0%, #EFF6FF 100%);
  border-radius: 3px 3px 5px 5px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.06);
}
.portal-mini-jar {
  display: flex; flex-direction: column; align-items: center;
}
.portal-mini-jar__lid {
  width: 16px; height: 5px;
  background: linear-gradient(180deg, #FCA5A5 0%, #F87171 100%);
  border-radius: 2px 2px 0 0;
}
.portal-mini-jar__body {
  width: 22px; height: 16px;
  background: linear-gradient(135deg, #fff 0%, #FFF1F2 100%);
  border-radius: 2px 2px 4px 4px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.06);
}
.portal-showcase__history-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--s-3) var(--s-6) var(--s-5);
  font-size: 11px;
  font-weight: 600;
  color: var(--c-primary);
  border-top: 1px solid var(--c-border);
  cursor: pointer;
}

/* ============================================================
   ADMIN SHOWCASE (Feature 5 — Shopify admin embedded view)
   ============================================================ */
.admin-showcase {
  background: #F1F1F1;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-border);
}
.admin-showcase__shopify-bar {
  background: #1A1A1A;
  padding: 8px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-showcase__shopify-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #fff;
}
.admin-showcase__shop-name {
  font-size: 9px; color: #999;
}
.admin-showcase__body {
  display: grid; grid-template-columns: 120px 1fr;
  min-height: 280px;
}
.admin-showcase__shopify-sidebar {
  background: #1A1A1A;
  padding: var(--s-3) 0;
  display: flex; flex-direction: column; gap: 1px;
}
.admin-showcase__sh-item {
  font-size: 9px; color: #CCC; padding: 5px 12px;
}
.admin-showcase__sh-item--active {
  background: #333; color: #fff; font-weight: 600;
}
.admin-showcase__sh-sub {
  font-size: 8px; color: var(--c-primary); padding: 4px 12px 4px 20px;
  font-weight: 600;
}
.admin-showcase__content {
  background: #fff;
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.admin-showcase__app-header {
  display: flex; align-items: center; gap: 10px;
}
.admin-showcase__app-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--c-primary);
  position: relative;
}
.admin-showcase__app-logo::after {
  content: 'S'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  font-family: var(--font);
}
.admin-showcase__app-name {
  font-size: 13px; font-weight: 700; color: var(--c-text);
}
.admin-showcase__app-desc {
  font-size: 9px; color: var(--c-muted);
}
.admin-showcase__app-tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 8px;
}
.admin-showcase__tab {
  font-size: 9px; font-weight: 600; color: var(--c-muted);
  padding: 4px 8px;
}
.admin-showcase__tab--active {
  color: var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
}
.admin-showcase__app-content {
  display: flex; gap: 8px;
}
.admin-showcase__mini-kpi {
  flex: 1; background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px; padding: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.admin-showcase__mk-val {
  font-size: 16px; font-weight: 800; color: var(--c-primary);
}
.admin-showcase__mk-lab {
  font-size: 8px; font-weight: 600; color: var(--c-muted); text-transform: uppercase;
}
.admin-showcase__mini-table {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}
.admin-showcase__mt-header {
  display: grid; grid-template-columns: 1.5fr 0.5fr 0.5fr;
  padding: 5px 10px;
  font-size: 7px; font-weight: 700; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.admin-showcase__mt-row {
  display: grid; grid-template-columns: 1.5fr 0.5fr 0.5fr;
  padding: 4px 10px;
  font-size: 8px; color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}
.admin-showcase__mt-row:last-child { border-bottom: none; }

/* ============================================================
   CHECKOUT SHOWCASE (Feature 4 — checkout with form + summary)
   ============================================================ */
.checkout-showcase {
  background: #F8FAFC;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-border);
}
.checkout-showcase__bar {
  background: #fff;
  padding: 10px 16px;
  border-bottom: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between;
}
.checkout-showcase__store {
  font-size: 12px; font-weight: 800; color: var(--c-text);
  letter-spacing: 0.06em;
}
.checkout-showcase__back {
  font-size: 9px; color: var(--c-muted);
}
.checkout-showcase__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.checkout-showcase__form {
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--c-border);
}
.checkout-showcase__section-title {
  font-size: 8px; font-weight: 700; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 4px;
}
.checkout-showcase__field {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 6px; padding: 7px 10px;
  font-size: 10px; color: var(--c-muted);
}
.checkout-showcase__field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.checkout-showcase__summary {
  padding: var(--s-5);
  background: #fff;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.checkout-showcase__summary-title {
  font-size: 11px; font-weight: 700; color: var(--c-text);
}
.checkout-showcase__summary-product {
  display: flex; gap: 10px; align-items: start;
}
.checkout-showcase__summary-img {
  width: 40px; height: 40px; border-radius: 6px; flex-shrink: 0;
}
.checkout-showcase__summary-name {
  font-size: 11px; font-weight: 600; color: var(--c-text);
}
.checkout-showcase__summary-freq {
  font-size: 9px; color: var(--c-primary); font-weight: 500;
}
.checkout-showcase__summary-price {
  font-size: 11px; font-weight: 700; color: var(--c-text);
}
.checkout-showcase__upsell {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: 8px; padding: 10px;
}
.checkout-showcase__upsell-title {
  font-size: 9px; font-weight: 700; color: var(--c-muted);
  margin-bottom: 6px;
}
.checkout-showcase__upsell-item {
  display: flex; gap: 8px; align-items: center;
}
.checkout-showcase__upsell-img {
  width: 28px; height: 28px; border-radius: 5px; flex-shrink: 0;
}
.checkout-showcase__upsell-name { font-size: 9px; font-weight: 600; color: var(--c-text); }
.checkout-showcase__upsell-price { font-size: 8px; color: var(--c-muted); }
.checkout-showcase__upsell-btn {
  margin-left: auto; font-size: 8px; font-weight: 700;
  color: var(--c-primary); border: 1px solid var(--c-primary-light);
  border-radius: 5px; padding: 3px 8px; white-space: nowrap;
}
.checkout-showcase__totals {
  border-top: 1px solid var(--c-border); padding-top: var(--s-3);
  display: flex; flex-direction: column; gap: 4px;
}
.checkout-showcase__total-row {
  display: flex; justify-content: space-between;
  font-size: 9px; color: var(--c-muted);
}
.checkout-showcase__total-row--final {
  font-weight: 700; color: var(--c-text); font-size: 11px;
  border-top: 1px solid var(--c-border); padding-top: 6px; margin-top: 2px;
}

/* ============================================================
   MP FLOW DIAGRAM (Feature 6)
   ============================================================ */
.mp-flow {
  background: linear-gradient(140deg, #1E3A6E 0%, #0F172A 100%);
  border-radius: var(--r-2xl);
  padding: var(--s-12) var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-8);
  min-height: 320px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mp-flow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mp-flow__nodes {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  justify-content: center;
  position: relative;
  z-index: 1;
}
.mp-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.mp-node__icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
}
.mp-node__icon--primary {
  background: var(--c-primary);
  border-color: rgba(37,99,235,0.8);
  box-shadow: 0 0 28px rgba(37,99,235,0.5);
}
.mp-node__icon--mp {
  background: rgba(0,168,102,0.15);
  border-color: rgba(0,168,102,0.35);
  color: #4ADE80;
}
.mp-node__label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mp-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@keyframes dash-flow {
  from { stroke-dashoffset: 18; }
  to   { stroke-dashoffset: 0; }
}
.mp-arrow__line {
  stroke: #38BDF8;
  stroke-width: 2;
  stroke-dasharray: 5 4;
  animation: dash-flow 0.8s linear infinite;
}
.mp-arrow__head {
  stroke: #38BDF8;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mp-security-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--s-2);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--r-xl);
  padding: var(--s-3) var(--s-5);
  font-size: var(--text-xs);
  font-weight: 500;
  color: #10B981;
  line-height: 1.5;
  max-width: 360px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.mp-security-badge svg { flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   CAPABILITIES GRID
   ============================================================ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.cap-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.cap-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.cap-card__icon {
  width: 46px;
  height: 46px;
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: var(--s-5);
}
.cap-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.cap-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.72;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
.pricing-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.pricing-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--c-primary);
  border-width: 2px;
  box-shadow: 0 0 0 4px var(--c-primary-50), var(--sh-md);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 4px var(--c-primary-50), var(--sh-xl);
}
.pricing-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-primary);
  border-radius: var(--r-full);
  padding: 4px 12px;
}
.pricing-card__name {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.025em;
}
.pricing-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
}
.pricing-card__price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
}
.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--c-muted);
  font-weight: 500;
}
.pricing-card__coming {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-muted);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: var(--s-2) var(--s-3);
}
.pricing-card__limit {
  font-size: var(--text-sm);
  color: var(--c-muted);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  line-height: 1.5;
}

/* "Todos los planes incluyen" bar */
.pricing-all {
  background: var(--c-primary-50);
  border: 1.5px solid var(--c-primary-light);
  border-radius: var(--r-xl);
  display: block;
  padding: var(--s-8);
}
.pricing-all__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-5);
}
.pricing-all__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  width: 100%;
}
.pricing-all__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
}
.pricing-all__item svg { flex-shrink: 0; margin-top: 3px; }
.pricing-all__item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.pricing-all__item span {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-muted);
  line-height: 1.4;
}

/* ============================================================
   DEMO / CAL.COM
   ============================================================ */
.demo__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s-12);
}
.demo__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--c-dark-text);
  letter-spacing: -0.025em;
  margin-bottom: var(--s-4);
}
.demo__subtitle {
  font-size: var(--text-lg);
  color: var(--c-dark-muted);
  line-height: 1.75;
}
.demo__cal {
  background: rgba(255,255,255,0.97);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(37,99,235,0.15), var(--sh-2xl);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.demo__cal::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#cal-embed {
  position: relative;
  z-index: 1;
  min-height: 600px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--c-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question:hover { color: var(--c-primary); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  color: var(--c-muted);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--c-primary);
}
.faq-answer {
  padding: 0 0 var(--s-5) 0;
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-dark);
  padding: var(--s-16) 0;
  border-top: 1px solid var(--c-dark-border);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.footer__logo { height: 30px; width: auto; }
.footer__tagline {
  font-size: var(--text-sm);
  color: var(--c-dark-muted);
  max-width: 300px;
  line-height: 1.6;
}
.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: var(--c-dark-muted);
  transition: color var(--t-fast);
}
.footer__contact:hover { color: var(--c-dark-text); }
.footer__copy { align-self: flex-end; }
.footer__copy p {
  font-size: var(--text-xs);
  color: var(--c-dark-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.15s; }
.animate-delay-2 { transition-delay: 0.30s; }

/* ============================================================
   SHOWCASE HOVER LIFT
   ============================================================ */
.widget-showcase,
.dash-showcase,
.portal-showcase,
.checkout-showcase,
.admin-showcase,
.mp-flow {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.widget-showcase:hover,
.dash-showcase:hover,
.portal-showcase:hover,
.checkout-showcase:hover,
.admin-showcase:hover,
.mp-flow:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2xl);
}

/* ============================================================
   RESPONSIVE — TABLET  (< 1024px)
   ============================================================ */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { max-width: 100%; }
  .hero__sub { max-width: 100%; }
  .hero__bullets { max-width: 100%; align-items: flex-start; text-align: left; }
  .hero__bullets li { justify-content: flex-start; }
  .hero__actions { justify-content: center; }
  .hero__stats { align-items: center; }
  .hero__visual {
    max-width: 680px;
    margin: 0 auto;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: var(--s-10);
    padding: var(--s-12) 0;
  }
  .feature__visual {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
  /* On tablet, always show visual before content */
  .feature--rev .feature__visual { order: -1; }
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); }
  .cap-grid         { grid-template-columns: repeat(2, 1fr); }
  .pricing-all__grid { grid-template-columns: repeat(2, 1fr); }
  .mp-flow__nodes   { gap: var(--s-3); }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .problem-divider {
    flex-direction: row;
    padding: var(--s-5) 0;
    justify-content: center;
  }
  .problem-divider__line { width: 80px; height: 1px; }
  .section__header { margin-bottom: var(--s-12); }
}

/* ============================================================
   RESPONSIVE — MOBILE  (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-py: 3.5rem; }

  /* Mobile nav */
  .navbar__hamburger { display: inline-flex; }
  .navbar__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-3) var(--s-6) var(--s-6);
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .navbar__links.is-open { display: flex; }
  .navbar__link {
    padding: var(--s-4) 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
  }
  .navbar__links .btn {
    margin-top: var(--s-4);
    justify-content: center;
    width: 100%;
  }

  /* Hero */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Caps */
  .cap-grid { grid-template-columns: 1fr; }

  /* Pricing includes */
  .pricing-all__grid { grid-template-columns: 1fr; }

  /* Hero overflow fix */
  .hero { overflow-x: hidden; }
  .hero__inner { overflow: hidden; }
  .hero-composition { max-width: 100%; overflow: hidden; }

  /* Hero bullets */
  .hero__bullets {
    max-width: 100%;
    text-align: left;
    padding: 0 var(--s-2);
  }
  .hero__bullets li {
    align-items: flex-start;
    gap: var(--s-2);
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  /* Hero composition: compact on mobile */
  .hero-pdp-mock__body { grid-template-columns: 1fr; }
  .hero-pdp-mock__image { min-height: 120px; }
  .hero-notif { max-width: 100%; }

  /* Dash showcase: collapse sidebar */
  .dash-showcase { grid-template-columns: 1fr; }
  .dash-showcase__sidebar { display: none; }
  .dash-showcase__kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-showcase__charts { grid-template-columns: 1fr; }

  /* Portal showcase: actions wrap */
  .portal-showcase__card { grid-template-columns: 1fr; }
  .portal-showcase__card-actions { flex-direction: row; flex-wrap: wrap; }

  /* Admin showcase: collapse sidebar */
  .admin-showcase__body { grid-template-columns: 1fr; }
  .admin-showcase__shopify-sidebar { display: none; }

  /* Checkout showcase: stack form + summary */
  .checkout-showcase__body { grid-template-columns: 1fr; }
  .checkout-showcase__form { border-right: none; border-bottom: 1px solid var(--c-border); }

  /* MP flow: stack vertically */
  .mp-flow__nodes { flex-direction: column; }
  .mp-arrow { transform: rotate(90deg); }
  .mp-security-badge { max-width: 100%; }

  /* Footer */
  .footer__inner { flex-direction: column; }
  .footer__copy  { align-self: flex-start; }

  /* Global overflow prevention */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .section, .hero, .footer {
    overflow-x: hidden;
  }

  /* Widget showcase: contain within viewport */
  .widget-showcase {
    padding: var(--s-5);
    max-width: 100%;
    overflow: hidden;
  }
  .widget-showcase__product {
    grid-template-columns: 70px 1fr;
    gap: var(--s-3);
  }
  .widget-showcase__bar {
    padding: 8px var(--s-3);
  }
  .widget-showcase__url {
    font-size: 9px;
  }
  .widget-showcase__customize {
    padding: var(--s-3) var(--s-4);
  }

  /* Disable hover lift on touch devices */
  .widget-showcase:hover,
  .dash-showcase:hover,
  .portal-showcase:hover,
  .checkout-showcase:hover,
  .admin-showcase:hover,
  .mp-flow:hover {
    transform: none;
  }
}
