/* Sell on Gmingo page + Home page promo cards: smooth scroll, animations, hover effects */

/* Smooth scroll for whole page */
html { scroll-behavior: smooth; }

/* ===== Home page: Promo / Quick links row ===== */
.home-promo-wrapper {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  overflow-x: hidden;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
/* Override app.css: ensure promo section and cards are always visible */
.home-promo-wrapper,
.home-promo-row,
.home-promo-row.visible,
.home-promo-wrapper .home-promo-card {
  opacity: 1 !important;
}
.home-promo-section {
  background: transparent;
  border-radius: 1rem;
  padding: 0.5rem 0;
}
@media (min-width: 640px) {
  .home-promo-section { padding: 0.5rem 0; }
}
@media (min-width: 1024px) {
  .home-promo-section { padding: 0.625rem 0; }
}
/* Promo cards: smooth right-to-left marquee */
.home-promo-marquee-outer {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  min-height: 100px;
}
.home-promo-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  flex-shrink: 0;
  animation: home-promo-marquee-scroll 48s linear infinite;
  -webkit-animation: home-promo-marquee-scroll 48s linear infinite;
  will-change: transform;
}
.home-promo-marquee-outer:hover .home-promo-marquee-track,
.home-promo-marquee-outer:focus-within .home-promo-marquee-track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
@keyframes home-promo-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  a.home-promo-card {
    flex: 0 0 172px !important;
    width: 172px !important;
    min-width: 172px !important;
    min-height: 102px !important;
  }
}
a.home-promo-card {
  position: relative;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left !important;
  gap: 0.3rem;
  padding: 0.82rem 0.85rem 0.78rem !important;
  flex: 0 0 210px !important;
  width: 210px !important;
  min-width: 210px !important;
  min-height: 112px !important;
  background:
    radial-gradient(120% 80% at 100% -10%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(145deg, #f8fbff 0%, #eef4ff 48%, #f6f9ff 100%) !important;
  border-radius: 1.05rem !important;
  -webkit-border-radius: 1rem !important;
  border: 1px solid rgba(59, 130, 246, 0.22) !important;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 8px 20px -16px rgba(30, 64, 175, 0.28),
    0 18px 34px -28px rgba(15, 23, 42, 0.2) !important;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background 0.35s ease !important;
}
a.home-promo-card:hover {
  transform: translateY(-5px) scale(1.015) !important;
  box-shadow:
    0 6px 14px -10px rgba(30, 64, 175, 0.24),
    0 16px 34px -20px rgba(30, 64, 175, 0.34),
    0 26px 48px -30px rgba(15, 23, 42, 0.28) !important;
  border-color: rgba(37, 99, 235, 0.42) !important;
}
.home-promo-copy { width: 100%; }
.home-promo-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.14rem 0.48rem;
  font-size: 0.62rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1e3a8a;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(147, 197, 253, 0.45);
  box-shadow: 0 3px 10px -8px rgba(15, 23, 42, 0.32);
}
.home-promo-icon {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #1e40af;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, color 0.3s ease;
}
.home-promo-icon-svg {
  width: 1.05rem;
  height: 1.05rem;
}
a.home-promo-card:hover .home-promo-icon {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 8px 16px -10px rgba(37, 99, 235, 0.46);
}
.home-promo-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f2f6d;
  margin: 0.08rem 0 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  width: calc(100% - 2.6rem);
  display: block;
}
.home-promo-subtitle {
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
  margin: 0.24rem 0 0;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: left;
  width: calc(100% - 2.6rem);
  display: block;
}
.home-promo-card--deal {
  background:
    radial-gradient(130% 90% at 100% -10%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(145deg, #fff7ed 0%, #ffedd5 48%, #fff8ef 100%) !important;
  border-color: rgba(251, 146, 60, 0.28) !important;
}
.home-promo-card--deal .home-promo-icon {
  color: #c2410c;
  border-color: rgba(251, 146, 60, 0.34);
}
.home-promo-card--delivery {
  background:
    radial-gradient(130% 90% at 100% -10%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(145deg, #ecfeff 0%, #cffafe 48%, #f0fdff 100%) !important;
  border-color: rgba(6, 182, 212, 0.25) !important;
}
.home-promo-card--delivery .home-promo-icon {
  color: #0e7490;
  border-color: rgba(6, 182, 212, 0.34);
}
.home-promo-card--category {
  background:
    radial-gradient(130% 90% at 100% -10%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(145deg, #f0fdf4 0%, #dcfce7 48%, #f4fff7 100%) !important;
  border-color: rgba(34, 197, 94, 0.26) !important;
}
.home-promo-card--category .home-promo-icon {
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.34);
}


/* =========================================================
   SELL PAGE — Premium redesign
   Scoped to body.gmingo-sell so homepage promo styles stay intact.
   Brand palette preserved: primary blue / brand-navy / accent green.
   ========================================================= */

body.gmingo-sell {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.gmingo-sell::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58rem 38rem at 6% -6%, rgba(44, 100, 211, 0.07), transparent 62%),
    radial-gradient(48rem 34rem at 94% 18%, rgba(56, 179, 90, 0.05), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}

/* ---- Section chrome ---- */
body.gmingo-sell .sell-section-head {
  text-align: center;
  margin-bottom: 2.25rem;
}
body.gmingo-sell .sell-section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e40af;
  background: rgba(219, 234, 254, 0.9);
  border: 1px solid rgba(147, 197, 253, 0.55);
  box-shadow: 0 6px 16px -12px rgba(30, 64, 175, 0.45);
}
body.gmingo-sell .sell-section-chip--accent {
  color: #166534;
  background: rgba(220, 252, 231, 0.95);
  border-color: rgba(134, 239, 172, 0.6);
}
body.gmingo-sell .sell-section-sub {
  max-width: 34rem;
  margin: 0 auto 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.6;
}
body.gmingo-sell .sell-section--why {
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(219, 234, 254, 0.55), transparent 70%),
    #f8fafc;
}
body.gmingo-sell .sell-section--steps {
  background:
    radial-gradient(60% 70% at 80% 10%, rgba(220, 252, 231, 0.4), transparent 65%),
    #ffffff;
}
body.gmingo-sell .sell-testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ---- Eyebrow / trust strip ---- */
body.gmingo-sell .sell-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  animation: sellBreathSoft 4.5s ease-in-out infinite;
}
body.gmingo-sell .sell-eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.12);
}
body.gmingo-sell .sell-trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin: 2rem auto 0;
  padding: 0;
  max-width: 42rem;
}
body.gmingo-sell .sell-trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}
body.gmingo-sell .sell-trust-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #38b35a;
  box-shadow: 0 0 0 4px rgba(56, 179, 90, 0.22);
  animation: sellBreathDot 2.8s ease-in-out infinite;
}
body.gmingo-sell .sell-trust-strip li:nth-child(2) .sell-trust-dot { animation-delay: 0.35s; }
body.gmingo-sell .sell-trust-strip li:nth-child(3) .sell-trust-dot { animation-delay: 0.7s; }
body.gmingo-sell .sell-trust-strip li:nth-child(4) .sell-trust-dot { animation-delay: 1.05s; }

/* ---- Hero ---- */
.sell-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sell-hero-with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
}
.sell-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.72) 0%, rgba(37, 99, 235, 0.58) 48%, rgba(15, 23, 42, 0.78) 100%);
  z-index: 1;
}
body.gmingo-sell .sell-hero:not(.sell-hero-with-bg) {
  background-size: 200% 200%;
  animation: sellGradientBreath 16s ease-in-out infinite;
}
body.gmingo-sell .sell-hero-glow {
  position: absolute;
  inset: -20% -10%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(40% 45% at 20% 30%, rgba(147, 197, 253, 0.35), transparent 70%),
    radial-gradient(35% 40% at 80% 70%, rgba(56, 179, 90, 0.18), transparent 70%);
  animation: sellBreathSoft 7s ease-in-out infinite;
}
body.gmingo-sell .sell-hero-orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 2;
  filter: blur(28px);
  opacity: 0.45;
  will-change: transform;
}
body.gmingo-sell .sell-hero-orb--a {
  width: 16rem;
  height: 16rem;
  top: -3rem;
  right: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(191, 219, 254, 0.7), transparent 70%);
  animation: sellOrbA 12s ease-in-out infinite;
}
body.gmingo-sell .sell-hero-orb--b {
  width: 12rem;
  height: 12rem;
  bottom: -2rem;
  left: 12%;
  background: radial-gradient(circle at 60% 40%, rgba(56, 179, 90, 0.4), transparent 70%);
  animation: sellOrbB 15s ease-in-out infinite;
}
body.gmingo-sell .sell-hero-orb--c {
  width: 8rem;
  height: 8rem;
  top: 42%;
  left: 48%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35), transparent 70%);
  animation: sellOrbC 10s ease-in-out infinite;
}
body.gmingo-sell .sell-hero-title {
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}
body.gmingo-sell .sell-hero-lead {
  line-height: 1.65;
}
body.gmingo-sell .sell-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
body.gmingo-sell .sell-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}
body.gmingo-sell .sell-cta-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 28px -16px rgba(15, 23, 42, 0.45);
}

/* CTA buttons — shared premium hover + breathing idle */
.sell-hero .sell-cta,
body.gmingo-sell .sell-cta-bottom {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background-color 0.25s ease;
  animation: sellCtaBreath 3.8s ease-in-out infinite;
}
.sell-hero .sell-cta:hover,
body.gmingo-sell .sell-cta-bottom:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 22px 40px -14px rgba(15, 23, 42, 0.28),
    0 10px 18px -10px rgba(37, 99, 235, 0.35);
  animation-play-state: paused;
}
.sell-hero .sell-cta:active,
body.gmingo-sell .sell-cta-bottom:active {
  transform: translateY(-1px) scale(0.985);
}
body.gmingo-sell .sell-cta-arrow {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
body.gmingo-sell .sell-cta:hover .sell-cta-arrow,
body.gmingo-sell .sell-cta-bottom:hover .sell-cta-arrow {
  transform: translateX(4px);
}

/* ---- Why sell: benefit cards ---- */
.sell-benefit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}
body.gmingo-sell .sell-benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(59, 130, 246, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
body.gmingo-sell .sell-benefit::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 3px;
  border-radius: 9999px 9999px 0 0;
  background: linear-gradient(90deg, #2c64d3, #38b35a);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sell-benefit:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow:
    0 24px 48px -22px rgba(26, 58, 124, 0.28),
    0 8px 18px -12px rgba(26, 58, 124, 0.14);
}
body.gmingo-sell .sell-benefit:hover::before { opacity: 1; }
body.gmingo-sell .sell-benefit:hover::after { transform: scaleX(1); }
.sell-benefit .sell-benefit-icon {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  animation: sellIconBreath 4.6s ease-in-out infinite;
}
.sell-benefit:nth-child(2) .sell-benefit-icon { animation-delay: 0.35s; }
.sell-benefit:nth-child(3) .sell-benefit-icon { animation-delay: 0.7s; }
.sell-benefit:nth-child(4) .sell-benefit-icon { animation-delay: 1.05s; }
.sell-benefit:nth-child(5) .sell-benefit-icon { animation-delay: 1.4s; }
.sell-benefit:nth-child(6) .sell-benefit-icon { animation-delay: 1.75s; }
.sell-benefit:hover .sell-benefit-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 10px 22px -10px rgba(37, 99, 235, 0.45);
  animation-play-state: paused;
}

/* ---- How it works: step cards ---- */
.sell-step {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}
body.gmingo-sell .sell-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a3a7c, #2c64d3, #38b35a);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sell-step:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 100, 211, 0.35);
  box-shadow:
    0 20px 40px -20px rgba(26, 58, 124, 0.28),
    0 8px 16px -10px rgba(26, 58, 124, 0.12);
}
body.gmingo-sell .sell-step:hover::before { opacity: 1; }
.sell-step .sell-step-num {
  position: relative;
  box-shadow: 0 10px 22px -12px rgba(37, 99, 235, 0.55);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  animation: sellNumBreath 4.2s ease-in-out infinite;
}
.sell-step:nth-child(2) .sell-step-num { animation-delay: 0.4s; }
.sell-step:nth-child(3) .sell-step-num { animation-delay: 0.8s; }
.sell-step:nth-child(4) .sell-step-num { animation-delay: 1.2s; }
.sell-step:hover .sell-step-num {
  transform: scale(1.1);
  box-shadow: 0 14px 28px -12px rgba(37, 99, 235, 0.65);
  animation-play-state: paused;
}

/* ---- Testimonials ---- */
.sell-testimonials-marquee {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.sell-testimonials-marquee.sell-marquee-paused .sell-testimonials-track {
  animation-play-state: paused;
}
.sell-testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  animation: sell-marquee-scroll 45s linear infinite;
  will-change: transform;
}
@keyframes sell-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sell-testimonial-slide {
  flex: 0 0 auto;
  width: min(340px, 85vw);
  max-width: 100%;
  padding: 0 0.25rem;
  box-sizing: border-box;
}
.sell-testimonial-card {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 1.15rem;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.05),
    0 12px 28px -18px rgba(26, 58, 124, 0.18);
  padding: 1.5rem 1.25rem;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}
.sell-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(26, 58, 124, 0.22);
  border-color: rgba(59, 130, 246, 0.35);
}
.sell-testimonial-photo-wrap {
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
body.gmingo-sell .sell-testimonial-photo-wrap {
  animation: sellIconBreath 5s ease-in-out infinite;
}
.sell-testimonial-img {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 0 0 3px rgba(59, 130, 246, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.sell-testimonial-card:hover .sell-testimonial-img {
  transform: scale(1.06);
  box-shadow: 0 14px 24px -8px rgba(26, 58, 124, 0.28), 0 0 0 3px rgba(59, 130, 246, 0.22);
}
.sell-testimonial-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}
.sell-testimonial-stars {
  display: flex;
  gap: 0.125rem;
  justify-content: center;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.sell-testimonial-quote {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #475569;
  font-style: italic;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sell-testimonial-footer { margin-top: auto; }
.sell-testimonial-name {
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.125rem;
  font-size: 0.9375rem;
}
.sell-testimonial-store {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}
.sell-testimonial-card-static {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
body.gmingo-sell .sell-testimonial-card-static:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -18px rgba(26, 58, 124, 0.2);
}

/* ---- Bottom CTA band ---- */
body.gmingo-sell .sell-cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1a3a7c 0%, #2c64d3 48%, #1e40af 100%);
  background-size: 180% 180%;
  animation: sellGradientBreath 14s ease-in-out infinite;
}
body.gmingo-sell .sell-cta-glow {
  position: absolute;
  inset: -30% -10%;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 20% 40%, rgba(147, 197, 253, 0.35), transparent 70%),
    radial-gradient(35% 45% at 85% 60%, rgba(56, 179, 90, 0.22), transparent 70%);
  animation: sellBreathSoft 6s ease-in-out infinite;
}

/* ---- Breathing keyframes ---- */
@keyframes sellBreathSoft {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes sellBreathDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(56, 179, 90, 0.18); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 7px rgba(56, 179, 90, 0.1); }
}
@keyframes sellCtaBreath {
  0%, 100% { box-shadow: 0 10px 24px -12px rgba(15, 23, 42, 0.22); }
  50% { box-shadow: 0 16px 34px -12px rgba(37, 99, 235, 0.35); }
}
@keyframes sellIconBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes sellNumBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes sellGradientBreath {
  0%, 100% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
}
@keyframes sellOrbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 14px) scale(1.08); }
}
@keyframes sellOrbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(16px, -12px) scale(1.06); }
}
@keyframes sellOrbC {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate(-10px, -18px) scale(1.12); opacity: 0.55; }
}

/* ---- Accessibility ---- */
body.gmingo-sell a:focus-visible,
body.gmingo-sell button:focus-visible {
  outline: 2px solid rgba(44, 100, 211, 0.65);
  outline-offset: 3px;
  border-radius: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  body.gmingo-sell .sell-eyebrow,
  body.gmingo-sell .sell-trust-dot,
  body.gmingo-sell .sell-hero-glow,
  body.gmingo-sell .sell-hero-orb,
  body.gmingo-sell .sell-cta-glow,
  body.gmingo-sell .sell-benefit-icon,
  body.gmingo-sell .sell-step-num,
  body.gmingo-sell .sell-testimonial-photo-wrap,
  .sell-hero .sell-cta,
  body.gmingo-sell .sell-cta-bottom,
  body.gmingo-sell .sell-hero:not(.sell-hero-with-bg),
  body.gmingo-sell .sell-cta-section {
    animation: none !important;
  }
  body.gmingo-sell .sell-benefit:hover,
  body.gmingo-sell .sell-step:hover,
  body.gmingo-sell .sell-testimonial-card:hover {
    transform: none;
  }
}
