/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #fff8ef;
  --paper:     #ffffff;
  --ink:       #2b2340;
  --ink-soft:  #4a4260;
  --ink-mute:  #7d7593;

  --accent:    #ff8fa3;   /* coral pink — primary CTA */
  --accent-2:  #6c63ff;   /* soft indigo — secondary */
  --sun:       #ffc95c;   /* sunshine yellow — stars / badges */
  --mint:      #3bd68a;   /* mint green — check / guarantee */
  --sky:       #6fc3ff;   /* sky blue */

  --glass:     rgba(255, 255, 255, 0.55);
  --glass-2:   rgba(255, 255, 255, 0.32);
  --glass-border: rgba(255, 255, 255, 0.65);
  --line:      rgba(43, 35, 64, 0.1);

  --shadow-soft: 0 20px 45px rgba(108, 99, 255, 0.14);
  --shadow-card: 0 14px 34px rgba(43, 35, 64, 0.1);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: "Baloo 2", "Nunito", sans-serif;
  --font-body:    "Nunito", "Baloo 2", sans-serif;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background-color: var(--bg);
  background-image: radial-gradient(rgba(43, 35, 64, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
main > section:nth-of-type(even) { background-color: var(--paper); }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.1;
  font-weight: 700;
}
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 10px; font-weight: 700;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--accent-2);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: .75rem; }
.section-sub { color: var(--ink-mute); font-size: 1.05rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   3b. Icons (inline SVG sprite, no emoji anywhere)
   ============================================================= */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}
.icon .icon-fill,
.icon.icon-fill { fill: currentColor; stroke: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  transition: transform .35s var(--ease-bounce), box-shadow .35s var(--ease-out), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff6f91);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 143, 163, 0.45);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 34px rgba(255, 143, 163, 0.55); }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1.1rem; }
.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--glass-2); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding-block: .9rem;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 999px;
  padding: .6rem .6rem .6rem 1.2rem;
  box-shadow: var(--shadow-soft);
}
.nav-brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.nav-brand-icon { color: var(--accent-2); }
.nav-links { display: none; align-items: center; gap: 1.6rem; }
.nav-link { position: relative; font-weight: 700; font-size: .95rem; padding-block: .3rem; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent-2); transition: right .3s var(--ease-out);
}
.nav-link:hover::after { right: 0; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--paper); border: 1px solid var(--glass-border);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); transition: transform .25s var(--ease-out); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: .25rem;
  margin-top: .6rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: .6rem;
  box-shadow: var(--shadow-soft);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: .8rem 1rem; border-radius: 12px; font-weight: 700; }
.nav-mobile a:hover { background: var(--glass-2); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3rem);
  overflow: visible;
  min-height: calc(100svh - var(--nav-h, 90px));
}
.hero > .container { width: 100%; }
.hero-mesh {
  position: absolute; inset: -10% -10% auto -10%; height: 780px; z-index: -1;
  background:
    radial-gradient(at 15% 20%, rgba(255, 214, 165, .65) 0%, transparent 55%),
    radial-gradient(at 85% 15%, rgba(189, 178, 255, .55) 0%, transparent 55%),
    radial-gradient(at 50% 80%, rgba(111, 195, 255, .5) 0%, transparent 55%),
    radial-gradient(at 80% 75%, rgba(255, 173, 173, .5) 0%, transparent 50%);
  filter: blur(70px) saturate(140%);
  animation: meshDrift 26s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.15) rotate(6deg); }
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
.hero-copy { text-align: center; }
.hero-intro { display: inline-flex; margin-bottom: 1rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.1rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700; color: var(--ink-soft);
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: .35rem .8rem; border-radius: 999px; backdrop-filter: blur(8px);
}
.hero-title { font-size: clamp(2.3rem, 5.4vw, 3.6rem); max-width: 15ch; margin-inline: auto; }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 1.15rem; max-width: 46ch; margin: 1.1rem auto 1.8rem; color: var(--ink-mute); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-bottom: 1.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; font-size: .88rem; color: var(--ink-mute); font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }

.hero-visual { position: relative; display: flex; justify-content: center; padding-block: 1rem 2rem; }
.hero-figure-wrap {
  position: relative;
  z-index: 0;
  width: min(340px, 78vw);
  animation: floatY 6s ease-in-out infinite;
}
.hero-figure-wrap::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(108,99,255,.35), rgba(255,143,163,.28) 45%, rgba(255,201,92,.18) 65%, transparent 75%);
  filter: blur(36px);
  z-index: -1;
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}
.hero-figure {
  display: block;
  width: 100%;
  border-radius: 28px;
  border: 5px solid #fff;
  filter: drop-shadow(0 24px 36px rgba(43,35,64,.28));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.hero-sticker {
  position: absolute;
  z-index: 2;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: .7rem .9rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  display: flex; align-items: center; gap: .5rem;
  animation: floatY 5s ease-in-out infinite;
}
.hero-sticker--1 { top: 6%; left: 2%; animation-delay: .3s; }
.hero-sticker--2 { bottom: 10%; right: 0%; animation-delay: 1s; }
@media (max-width: 539px) { .hero-sticker { display: none; } }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; text-align: left; }
  .hero-copy { text-align: left; }
  .hero-title, .hero-sub { margin-inline: 0; }
  .hero-badges, .hero-ctas, .hero-trust { justify-content: flex-start; }
}

/* =============================================================
   7. Glass cards (generic component)
   ============================================================= */
.glass-card {
  background: rgba(255,255,255,0.7); /* solid fallback */
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card { background: var(--glass); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); }
}
.glass-card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(108,99,255,.2); }

/* =============================================================
   8. Benefits
   ============================================================= */
.benefits-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255,143,163,.35), rgba(108,99,255,.25));
}
.benefit-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.benefit-card p { color: var(--ink-mute); font-size: .97rem; }
@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   7b. Fit checklist ("¿Es para vos?") + method note
   ============================================================= */
.fit-card { max-width: 640px; margin-inline: auto; padding: clamp(1.6rem, 4vw, 2.4rem); }
.fit-list { display: grid; gap: .9rem; }
.fit-list li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 700; color: var(--ink-soft); font-size: 1rem; }
.fit-list li .check {
  flex: none; width: 24px; height: 24px; border-radius: 999px;
  background: var(--mint); color: #fff; display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.method-note {
  text-align: center; max-width: 52ch; margin: 2rem auto 0;
  color: var(--ink-mute); font-size: .95rem;
}

/* =============================================================
   7c. El problema
   ============================================================= */
.problem-card { max-width: 640px; margin-inline: auto; padding: clamp(1.6rem, 4vw, 2.4rem); }
.problem-list { display: grid; gap: .9rem; margin-bottom: 1.4rem; }
.problem-list li { display: flex; align-items: flex-start; gap: .8rem; font-weight: 700; color: var(--ink-soft); font-size: 1rem; }
.problem-dot {
  flex: none; width: 9px; height: 9px; border-radius: 999px;
  background: var(--accent); margin-top: .5rem;
}
.problem-close {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); border-top: 1px solid var(--line); padding-top: 1.2rem;
}

/* =============================================================
   7d. Solution steps (with connecting arrows)
   ============================================================= */
.solution-steps { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem .5rem; }
.solution-steps .step-card { flex: 1 1 160px; max-width: 190px; }
.step-arrow { flex: none; align-self: center; color: var(--ink-mute); opacity: .6; }
@media (max-width: 719px) { .step-arrow { transform: rotate(90deg); } }

/* =============================================================
   8b. Cómo funciona (steps)
   ============================================================= */
.steps-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.step-card { position: relative; text-align: center; padding-top: 2.2rem; }
.step-number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px rgba(108, 99, 255, .35);
}
.step-icon { margin-inline: auto; }
.step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { color: var(--ink-mute); font-size: .95rem; }
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   9. Content preview
   ============================================================= */
.preview-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
.preview-card { padding: 1.4rem; text-align: center; }
.preview-card .mini-illustration { width: 100%; aspect-ratio: 4/3; margin-bottom: .9rem; border-radius: 16px; background: linear-gradient(160deg, #fff, #fdf6ff); display: flex; align-items: center; justify-content: center; }
.preview-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.preview-card p { font-size: .87rem; color: var(--ink-mute); }
@media (min-width: 720px) { .preview-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   10. About / trust
   ============================================================= */
.about {
  display: grid; gap: 2rem; align-items: center;
}
.about-figure { display: flex; justify-content: center; }
.about-figure img { width: min(260px, 70vw); border-radius: 50%; filter: drop-shadow(0 20px 30px rgba(108,99,255,.22)); }
.about-copy blockquote { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); margin-bottom: 1rem; }
.about-copy p { color: var(--ink-mute); }
@media (min-width: 860px) { .about { grid-template-columns: .8fr 1.2fr; } }

/* =============================================================
   11. Offer
   ============================================================= */
.offer-card {
  max-width: 720px; margin-inline: auto; padding: clamp(1.8rem, 5vw, 3rem);
  position: relative; overflow: hidden; text-align: center;
  border: 2px solid rgba(255, 143, 163, .55);
  box-shadow: 0 34px 64px rgba(108, 99, 255, .28), 0 0 0 8px rgba(255, 143, 163, .1);
}
.offer-ribbon {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, var(--sun), #ffb347);
  color: #3a2600; font-weight: 800; font-family: var(--font-display);
  padding: .4rem 1rem; border-radius: 999px; font-size: .85rem; margin-bottom: 1.2rem;
}
.offer-title { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 1rem; }
.offer-prices { display: flex; align-items: baseline; justify-content: center; gap: .8rem; margin-bottom: .3rem; }
.offer-before { font-size: 1.3rem; color: var(--ink-mute); text-decoration: line-through; opacity: .7; }
.offer-now { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 3.6rem); color: var(--accent); font-weight: 800; }
.offer-currency { font-size: 1.1rem; color: var(--ink-mute); font-weight: 700; }
.offer-note { color: var(--ink-mute); font-size: .95rem; }
.offer-anchor { color: var(--ink-mute); font-size: .85rem; font-style: italic; margin-bottom: 1.6rem; }
.offer-list { text-align: left; display: grid; gap: .7rem; margin: 0 auto 1.8rem; max-width: 460px; }
.offer-list li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 700; color: var(--ink-soft); font-size: .97rem; }
.offer-list li .check { flex: none; width: 22px; height: 22px; border-radius: 999px; background: var(--mint); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; margin-top: .1rem; }
.offer-fine {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: 1rem; font-size: .82rem; color: var(--ink-mute); text-align: left;
}
.offer-fine .icon { flex: none; }

/* =============================================================
   12. Guarantee
   ============================================================= */
.guarantee { display: grid; gap: 1.6rem; align-items: center; text-align: center; }
.guarantee-badge { width: 96px; height: 96px; margin-inline: auto; border-radius: 999px; background: linear-gradient(135deg, var(--mint), #21a86b); display: flex; align-items: center; justify-content: center; font-size: 2.6rem; box-shadow: 0 16px 30px rgba(59,214,138,.35); }
.guarantee h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: .6rem; }
.guarantee p { color: var(--ink-mute); max-width: 52ch; margin-inline: auto; }
@media (min-width: 860px) { .guarantee { grid-template-columns: auto 1fr; text-align: left; } .guarantee p { margin-inline: 0; } }

/* =============================================================
   13. FAQ
   ============================================================= */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  border-radius: 20px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-toggle {
  flex: none; width: 30px; height: 30px; border-radius: 999px;
  background: var(--glass-2); display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); transition: transform .3s var(--ease-out);
}
.faq-item[open] summary .faq-toggle { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 1.5rem 1.3rem; color: var(--ink-mute); font-size: .95rem; }

/* =============================================================
   14. Final CTA
   ============================================================= */
.final-cta { text-align: center; }
.final-cta-card { max-width: 760px; margin-inline: auto; padding: clamp(2rem, 5vw, 3.2rem); }
.final-cta-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .8rem; }
.final-cta-card p { color: var(--ink-mute); margin-bottom: 1.6rem; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { padding-block: 2.5rem; border-top: 1px solid var(--line); text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 800; color: var(--ink); margin-bottom: .4rem;
}
.footer-brand .icon { color: var(--accent-2); }
.footer p { color: var(--ink-mute); font-size: .88rem; }
.footer a { font-weight: 700; color: var(--accent-2); }

/* =============================================================
   16. Responsive base tweaks
   ============================================================= */
@media (min-width: 540px) { .offer-list { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   17. Mobile sticky CTA bar
   ============================================================= */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  background: var(--paper);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -10px 26px rgba(43, 35, 64, .14);
}
.mobile-cta-info { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-cta-info strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.mobile-cta-info span { font-size: .7rem; color: var(--ink-mute); font-weight: 700; }
.mobile-cta-bar .btn { padding: .68rem 1.2rem; font-size: .9rem; flex: none; }
@media (max-width: 959px) { body { padding-bottom: 78px; } }
@media (min-width: 960px) { .mobile-cta-bar { display: none; } }
