/* ============================================================
   mini-challenge.css
   Unified CSS for all Free Step Challenge pages (create, detail, done).
   Scoped to prevent leaking into the rest of the site.
   Uses !important on color/text rules to override custom.css globals.
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
#fsc-hero, #fsc-preview, #fsc-upsell,
#challenges-mini-promo,
.fsc-detail-header, .fsc-detail-body {
  --blue:        #398bbf;
  --blue-dark:   #276a97;
  --blue-faint:  #e8f4fb;
  --blue-mid:    #5fa9cf;
  --teal:        #2db89e;
  --teal-faint:  #e6f7f4;
  --ink:         #1e3a4a;
  --ink-mid:     #4a6a7c;
  --ink-light:   #8aa5b5;
  --sand:        #f4f9fc;
  --white:       #ffffff;
  --radius:      16px;
  --radius-lg:   28px;
  --max-w:       1140px;
}

/* ── SHARED COMPONENTS ─────────────────────────────────────── */

/* Badge / label pill — light version (for dark backgrounds like fsc-detail-header) */
.fsc-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
}

/* White card with top accent bar */
.fsc-card {
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 4px 24px rgba(30,58,74,.08);
  overflow: hidden;
  position: relative;
  background: #fff !important;
  color: var(--ink) !important;
}
.fsc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #398bbf 0%, #5fa9cf 100%);
}
/* Override custom.css color rules inside fsc-card */
.fsc-card h1, .fsc-card h2, .fsc-card h3, .fsc-card h4, .fsc-card h5, .fsc-card h6 {
  color: var(--ink) !important;
}
.fsc-card p, .fsc-card label {
  color: var(--ink-mid) !important;
}

/* Primary button */
.btn-fsc {
  background: #398bbf !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-fsc:hover {
  background: #276a97 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(57,139,191,.3);
  color: #fff !important;
  text-decoration: none;
}

/* Outline button */
.btn-fsc-outline {
  background: transparent !important;
  color: #398bbf !important;
  border: 2px solid #398bbf;
  border-radius: 10px;
  padding: .55rem 1.1rem;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn-fsc-outline:hover {
  background: #398bbf !important;
  color: #fff !important;
}


/* "du" badge next to own name in leaderboard */
.badge-me {
  background: #e8f4fb;
  color: #276a97 !important;
  font-size: .72rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 100px;
  margin-left: .4rem;
  vertical-align: middle;
}

/* ── DETAIL PAGE ──────────────────────────────────────────── */

/* Outer page background */
.fsc-detail-body {
  background: #f4f9fc;
  min-height: 100vh;
}

/* Dark gradient header */
.fsc-detail-header {
  background: linear-gradient(135deg, #1e3a4a 0%, #163144 100%);
  padding: 3rem 0 2.5rem;
}
.fsc-detail-header h1,
.fsc-detail-header h2,
.fsc-detail-header h3,
.fsc-detail-header h4,
.fsc-detail-header h5,
.fsc-detail-header h6 {
  color: #fff !important;
}
.fsc-detail-header p,
.fsc-detail-header span {
  color: rgba(255,255,255,.65) !important;
}
/* Strong inside header should still be visible */
.fsc-detail-header strong {
  color: #fff !important;
}

/* Main content area color reset */
.fsc-detail-content {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  color: #1e3a4a;
}
.fsc-detail-content h1,
.fsc-detail-content h2,
.fsc-detail-content h3,
.fsc-detail-content h4,
.fsc-detail-content h5,
.fsc-detail-content h6 {
  color: #1e3a4a !important;
}
.fsc-detail-content p {
  color: #4a6a7c !important;
}
.fsc-detail-content label {
  color: #4a6a7c !important;
}

/* Leaderboard card header (dark gradient bar) */
.lb-card-header {
  background: linear-gradient(135deg, #1e3a4a 0%, #163144 100%);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
}
.lb-card-header .lb-title {
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

/* Live indicator badge */
.lb-live-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.9) !important;
}
.lb-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2db89e;
  animation: fsc-pulse 2s ease-in-out infinite;
}
@keyframes fsc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

/* Leaderboard rows */
.leaderboard-row { transition: background .15s; }
.leaderboard-row:hover { background: #f0f8fd; }
.leaderboard-row.is-me { background: #e8f4fb; }

/* Step input */
.fsc-input {
  border: 2px solid #cde3f0;
  border-radius: 10px;
  padding: .6rem 1rem;
  font-size: .95rem;
  color: #1e3a4a;
  transition: border-color .2s, box-shadow .2s;
  flex: 1;
}
.fsc-input:focus {
  border-color: #398bbf;
  box-shadow: 0 0 0 3px rgba(57,139,191,.15);
  outline: none;
}

/* Share box */
.share-box {
  background: #e8f4fb;
  border-radius: 14px;
  border: 1px solid #b3d6ea;
}
.share-input {
  border: 2px solid #b3d6ea;
  border-radius: 10px;
  padding: .6rem 1rem;
  font-size: .88rem;
  background: #fff;
  color: #1e3a4a;
  flex: 1;
}
.share-box h5 {
  color: #1e3a4a !important;
}
.share-box p {
  color: #4a6a7c !important;
}

/* Step animation */
.steps-pulse { animation: steps-pop .8s ease-in-out; }
@keyframes steps-pop {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.08); }
}

/* My total steps highlight */
.my-total-val {
  color: #398bbf !important;
  font-weight: 700;
}

/* ── CREATE PAGE — HERO SECTION ─────────────────────────────── */
#fsc-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #163144 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 7rem) clamp(1rem, 4vw, 2.5rem);
  color: #fff;
}

#fsc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(57,139,191,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(45,184,158,.10) 0%, transparent 60%);
  pointer-events: none;
}

#fsc-hero .hero-grid {
  max-width: var(--max-w);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

#fsc-hero .hero-label {
  display: inline-block;
  background: var(--blue-faint);
  color: var(--blue-dark) !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

#fsc-hero h1 {
  color: #fff !important;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

#fsc-hero h1 em {
  font-style: italic;
  color: var(--blue-mid) !important;
}

#fsc-hero .hero-sub {
  color: rgba(255,255,255,.72) !important;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 46ch;
}

/* Benefits list */
#fsc-hero .benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

#fsc-hero .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  color: rgba(255,255,255,.85) !important;
  font-size: .98rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#fsc-hero .benefit-list li:last-child {
  border-bottom: none;
}

#fsc-hero .benefit-list .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

#fsc-hero .benefit-list .check-icon svg {
  color: #fff;
}

/* Form card */
#fsc-hero .form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
}

#fsc-hero .form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
}

#fsc-hero .form-card .card-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue) !important;
  margin-bottom: .5rem;
}

#fsc-hero .form-card h2 {
  color: var(--ink) !important;
  font-size: 1.5rem;
  margin-bottom: .4rem;
  font-weight: 700;
}

#fsc-hero .form-card .card-sub {
  color: var(--ink-mid) !important;
  font-size: .9rem;
  margin-bottom: 1.75rem;
}

#fsc-hero .form-card label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mid) !important;
  margin-bottom: .35rem;
}

#fsc-hero .form-card .form-group {
  margin-bottom: 1.25rem;
}

#fsc-hero .form-card .form-control {
  border-color: #dde3f0;
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

#fsc-hero .form-card .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(57,139,191,.15);
  outline: none;
}

#fsc-hero .form-card .btn-submit {
  background: var(--blue);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: .85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: .25rem;
}

#fsc-hero .form-card .btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57,139,191,.35);
}

#fsc-hero .form-card .privacy-note {
  text-align: center;
  font-size: .78rem;
  color: var(--ink-light) !important;
  margin-top: 1rem;
  margin-bottom: 0;
}

#fsc-hero .form-card .invalid-feedback {
  font-size: .82rem;
  color: #df4759 !important;
  margin-top: .25rem;
}

#fsc-hero .hero-note {
  font-size: .82rem;
  color: rgba(255,220,80,.85) !important;
  line-height: 1.6;
  margin: 0;
  padding-top: .25rem;
}

#fsc-hero .hero-note-icon {
  display: inline;
  vertical-align: middle;
  margin-right: .3rem;
  position: relative;
  top: -1px;
}

#fsc-hero .hero-note-link {
  color: #ffd84d !important;
  text-decoration: underline;
  font-weight: 600;
}
#fsc-hero .hero-note-link:hover {
  color: #fff !important;
}

/* ── PREVIEW SECTION ────────────────────────────────────────── */
#fsc-preview {
  background: var(--sand);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

#fsc-preview .section-inner {
  max-width: var(--max-w);
  margin: auto;
}

#fsc-preview .section-label {
  display: inline-block;
  background: var(--blue-faint);
  color: var(--blue-dark) !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

#fsc-preview .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

#fsc-preview h2 {
  color: var(--ink) !important;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: .75rem;
  text-align: center;
}

#fsc-preview .section-sub {
  color: var(--ink-mid) !important;
  font-size: 1.05rem;
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 3.5rem;
}

/* Mock leaderboard */
#fsc-preview .mock-leaderboard {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(53,72,96,.12);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}


/* ── UPSELL SECTION ─────────────────────────────────────────── */
#fsc-upsell {
  background: linear-gradient(135deg, var(--ink) 0%, #102233 100%);
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

#fsc-upsell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(57,139,191,.16) 0%, transparent 70%);
  pointer-events: none;
}

#fsc-upsell .section-inner {
  max-width: var(--max-w);
  margin: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

#fsc-upsell h2 {
  color: #fff !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

#fsc-upsell h2 em {
  font-style: normal;
  color: var(--blue-mid) !important;
}

#fsc-upsell p {
  color: rgba(255,255,255,.7) !important;
}

#fsc-upsell .upsell-label {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

#fsc-upsell .upsell-sub {
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

#fsc-upsell .upsell-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

#fsc-upsell .upsell-features li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85) !important;
  font-size: .98rem;
  line-height: 1.5;
}

#fsc-upsell .upsell-features li:last-child { border-bottom: none; }

#fsc-upsell .upsell-features .feat-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(57,139,191,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

#fsc-upsell .upsell-features .feat-icon svg {
  color: var(--blue-mid) !important;
}

#fsc-upsell .upsell-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue);
  color: #fff !important;
  border-radius: 14px;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

#fsc-upsell .upsell-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(57,139,191,.45);
  text-decoration: none;
  color: #fff !important;
}

#fsc-upsell .upsell-note {
  display: block;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45) !important;
}

/* Visual card (right column) */
#fsc-upsell .upsell-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#fsc-upsell .stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(8px);
}

#fsc-upsell .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-mid) !important;
  line-height: 1;
  margin-bottom: .4rem;
}

#fsc-upsell .stat-label {
  font-size: .92rem;
  color: rgba(255,255,255,.65) !important;
  line-height: 1.5;
}

#fsc-upsell .integration-row {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#fsc-upsell .integration-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5) !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
}

#fsc-upsell .integration-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

#fsc-upsell .int-badge {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85) !important;
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .8rem;
  font-weight: 500;
}

/* ── DETAIL LEADERBOARD ROWS ────────────────────────────────── */
.lb-detail-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f4f8;
  gap: 1rem;
  transition: background .15s;
}
.lb-detail-row:last-child { border-bottom: none; }
.lb-detail-row:hover { background: #f0f8fd; }
.lb-detail-row.is-me { background: #e8f4fb; }

.lb-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
}
.rank-1 { background: #ffd700; color: #333 !important; }
.rank-2 { background: #c0c0c0; color: #333 !important; }
.rank-3 { background: #cd7f32; color: #fff !important; }
.rank-n { background: #e8f4fb; color: #398bbf !important; }

.lb-detail-row .lb-name {
  font-weight: 600;
  color: #1e3a4a !important;
  font-size: .95rem;
}
.lb-detail-row .lb-team {
  font-size: .82rem;
  color: #4a6a7c !important;
  margin-top: 2px;
}
.lb-detail-row .lb-bar-wrap {
  height: 4px;
  background: #d4e8f2;
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}
.lb-detail-row .lb-bar {
  height: 100%;
  background: linear-gradient(90deg, #398bbf 0%, #5fa9cf 100%);
  border-radius: 2px;
  transition: width .6s ease;
}
.lb-detail-row .lb-steps-container { text-align: right; }
.lb-detail-row .lb-steps {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e3a4a !important;
  white-space: nowrap;
}
.lb-detail-row .lb-steps-label {
  font-size: .75rem;
  color: #8aa5b5 !important;
  margin-top: 1px;
}

/* ── RANK SPACER (inside team members — no rank shown) ─────── */
.lb-rank-spacer {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ── TEAM GROUP ROWS ────────────────────────────────────────── */
.lb-team-header {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  padding: .85rem 1.5rem;
  border-bottom: 1px solid #e0ecf4;
  gap: 1rem;
  background: #f4f9fc;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.lb-team-header:hover { background: #eaf4fb; }
.lb-team-header .lb-team-name {
  font-weight: 700;
  color: #1e3a4a !important;
  font-size: .93rem;
}
.lb-team-header .lb-team-meta {
  font-size: .8rem;
  color: #4a6a7c !important;
  margin-top: 1px;
}
.lb-team-header .lb-team-steps { text-align: right; }
.lb-team-header .lb-team-total {
  font-weight: 700;
  font-size: 1rem;
  color: #1e3a4a !important;
  white-space: nowrap;
}
.lb-team-header .lb-team-steps-label {
  font-size: .75rem;
  color: #8aa5b5 !important;
  margin-top: 1px;
}
.lb-team-header .lb-chevron {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: .5rem;
  vertical-align: middle;
  color: #8aa5b5;
  transition: transform .2s;
  flex-shrink: 0;
}
.lb-team-header.is-open .lb-chevron {
  transform: rotate(180deg);
}
.lb-team-members {
  display: none;
}
.lb-team-members.is-open {
  display: block;
}
.lb-team-members .lb-detail-row {
  padding-left: 2.75rem;
  background: #fcfeff;
}
.lb-team-members .lb-detail-row:hover { background: #f0f8fd; }
.lb-team-members .lb-detail-row.is-me { background: #e8f4fb; }

/* ── LEADERBOARD FOOTER ─────────────────────────────────────── */
.lb-detail-footer {
  background: #d0e8f5;
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: #1e5272 !important;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #9dc8e0;
}
.lb-detail-footer strong { color: #1e5272 !important; }

/* ── CHALLENGES PAGE MINI PROMO SECTION ─────────────────────── */
#challenges-mini-promo {
  background: linear-gradient(135deg, #1e3a4a 0%, #163144 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* colour overrides — beat custom.css globals */
#challenges-mini-promo h2,
#challenges-mini-promo h3,
#challenges-mini-promo h4 { color: #fff !important; }
#challenges-mini-promo p  { color: rgba(255,255,255,.7) !important; }
#challenges-mini-promo li { color: rgba(255,255,255,.85) !important; }
#challenges-mini-promo a  { color: #fff !important; }

.cmp-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(57,139,191,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cmp-inner { position: relative; z-index: 1; }

.cmp-pill {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #fff !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.cmp-heading {
  color: #fff !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.cmp-accent { color: #5fa9cf !important; }

.cmp-sub {
  color: rgba(255,255,255,.7) !important;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 48ch;
}

.cmp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.cmp-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85) !important;
  font-size: .95rem;
  margin-bottom: .6rem;
}
.cmp-list li:last-child { margin-bottom: 0; }

.cmp-check {
  width: 20px;
  height: 20px;
  background: #398bbf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff !important;
}

.cmp-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #398bbf;
  color: #fff !important;
  border-radius: 12px;
  padding: .9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
}
.cmp-cta:hover {
  background: #276a97;
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none !important;
}

/* preview box wrapper — positions the glow behind the card */
.cmp-preview-wrap {
  position: relative;
}

.cmp-preview-glow {
  position: absolute;
  inset: -40px -30px;
  background: radial-gradient(ellipse 80% 70% at 50% 55%, rgba(255,255,255,.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cmp-preview-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.cmp-preview-header {
  background: linear-gradient(135deg, #1e3a4a 0%, #163144 100%);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cmp-preview-title {
  color: #fff !important;
  font-weight: 700;
  font-size: .95rem;
}
.cmp-preview-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  padding: .2rem .7rem;
  font-size: .75rem;
  color: rgba(255,255,255,.9) !important;
}

/* non-clickable team header inside preview */
.cmp-preview-team { cursor: default; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  #fsc-hero .hero-grid,
  #fsc-upsell .section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  #fsc-hero h1 { font-size: 2.2rem; }
  #fsc-hero .hero-sub { max-width: 100%; }
}

@media (max-width: 600px) {
  #fsc-preview .lb-row    { padding: .9rem 1.25rem; }
  #fsc-preview .lb-header { padding: 1.25rem 1.25rem; }
  #fsc-preview .lb-footer { padding: .9rem 1.25rem; }
}
