/* ===================================================
   LeadMinds Free Sessions — Redesigned
   Immersive Animations · Glassmorphism · Micro-interactions
   Brand: #086d66 (primary) · #faba3d (accent) · #155a58 (dark)
   =================================================== */

/* ─── FLOATING PARTICLES ─── */
.fs-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.fs-particle {
  position: absolute;
  border-radius: 50%;
  animation: fsFloatParticle linear infinite;
  opacity: 0;
}
@keyframes fsFloatParticle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ─── GLOWING ORBS ─── */
.fs-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: fsOrbFloat 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes fsOrbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.2); }
}

/* ─── HERO SECTION ─── */
.fs-hero {
  background: linear-gradient(135deg, #0a1628 0%, #086d66 40%, #155a58 70%, #0a1628 100%);
  position: relative;
  min-height: 580px !important;
  height: auto !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(250,186,61,0.15), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(8,109,102,0.3), transparent 50%);
  pointer-events: none;
}

/* ─── TEXT REVEAL ANIMATION ─── */
.fs-text-reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: fsRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fs-text-reveal:nth-child(2) { animation-delay: 0.15s; }
.fs-text-reveal:nth-child(3) { animation-delay: 0.3s; }
.fs-text-reveal:nth-child(4) { animation-delay: 0.45s; }
.fs-text-reveal:nth-child(5) { animation-delay: 0.6s; }
.fs-text-reveal:nth-child(6) { animation-delay: 0.75s; }
@keyframes fsRevealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TYPING CURSOR ─── */
.fs-typing-cursor {
  display: inline;
  border-left: 3px solid #faba3d;
  padding-left: 6px;
  animation: fsBlink 0.8s step-end infinite;
}
@keyframes fsBlink { 50% { border-color: transparent; } }

/* ─── COUNTDOWN TIMER ─── */
.fs-countdown-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.fs-countdown-unit {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 88px;
}
.fs-countdown-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #faba3d;
  line-height: 1;
  display: block;
}
.fs-countdown-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ─── SOCIAL PROOF TICKER ─── */
.fs-ticker-wrap {
  overflow: hidden;
  background: rgba(8,109,102,0.04);
  border-top: 1px solid rgba(8,109,102,0.08);
  border-bottom: 1px solid rgba(8,109,102,0.08);
  padding: 0.85rem 0;
}
[data-theme="dark"] .fs-ticker-wrap {
  background: rgba(8,109,102,0.08);
  border-color: rgba(255,255,255,0.05);
}
.fs-ticker {
  display: flex;
  gap: 3rem;
  animation: fsTickerScroll 28s linear infinite;
  white-space: nowrap;
}
@keyframes fsTickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fs-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #086d66;
  font-size: 0.95rem;
  flex-shrink: 0;
}
[data-theme="dark"] .fs-ticker-item { color: #5eead4; }

/* ─── SEATS URGENCY BADGE ─── */
.fs-seats-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  animation: fsUrgencyPulse 2s ease-in-out infinite;
}
@keyframes fsUrgencyPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.fs-seats-dot {
  width: 8px; height: 8px;
  background: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
  animation: fsDotBlink 1.5s ease-in-out infinite;
}
@keyframes fsDotBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ─── GLASSMORPHISM SESSION CARDS ─── */
.fs-cards-dark-section,
main > .fs-cards-dark-section,
section.fs-cards-dark-section {
  background: linear-gradient(180deg, #0a1628 0%, #112240 50%, #0a1628 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.5rem 2rem !important;
  padding-block: 1.25rem 2rem !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
}

.fs-glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-glass-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(250,186,61,0), rgba(250,186,61,0.5), rgba(8,109,102,0.5), rgba(250,186,61,0));
  border-radius: 25px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.fs-glass-card:hover::before { opacity: 1; }
.fs-glass-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(8,109,102,0.3), 0 0 40px rgba(250,186,61,0.1);
  border-color: rgba(250,186,61,0.4);
}
.fs-glass-card.is-selected {
  border-color: #faba3d !important;
  box-shadow: 0 0 0 3px rgba(250,186,61,0.4), 0 25px 50px rgba(8,109,102,0.3) !important;
}

.fs-card-number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(250,186,61,0.1);
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
  transition: color 0.5s;
  z-index: 0;
}
.fs-glass-card:hover .fs-card-number { color: rgba(250,186,61,0.25); }

.fs-card-inner { position: relative; z-index: 2; }

.fs-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fs-card-category {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fs-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0;
}
.fs-card-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ─── SKILL TAGS ─── */
.fs-skill-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(250,186,61,0.2);
  background: rgba(250,186,61,0.08);
  color: #faba3d;
  transition: all 0.3s;
  cursor: default;
}
.fs-skill-tag:hover {
  background: #faba3d;
  color: #153f3e;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(250,186,61,0.3);
}
.fs-skill-tag--teal {
  border-color: rgba(8,109,102,0.2);
  background: rgba(8,109,102,0.08);
  color: #5eead4;
}
.fs-skill-tag--teal:hover {
  background: #086d66;
  color: white;
  box-shadow: 0 4px 15px rgba(8,109,102,0.3);
}

/* ─── CARD SELECTION STATES ─── */
.fs-card-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.fs-card-check--on {
  background: #faba3d;
}
.fs-card-check--off {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
}
.fs-card-select-text {
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s;
}

/* ─── SECTION LABELS ─── */
.fs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(8,109,102,0.08), rgba(250,186,61,0.08));
  border: 1px solid rgba(8,109,102,0.15);
  color: #086d66;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
[data-theme="dark"] .fs-section-label {
  background: rgba(250,186,61,0.08);
  border-color: rgba(250,186,61,0.2);
  color: #faba3d;
}

/* ─── PROGRESS STEPPER ─── */
.fs-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  direction: ltr;
}
.fs-step-indicator {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.4s;
  flex-shrink: 0;
}
.fs-step-indicator.active {
  background: linear-gradient(135deg, #086d66, #0d9488);
  color: white;
  box-shadow: 0 0 20px rgba(8,109,102,0.4);
}
.fs-step-indicator.done {
  background: #086d66;
  color: white;
}
.fs-step-indicator.pending {
  background: #f1f5f9;
  color: #94a3b8;
  border: 2px solid #e2e8f0;
}
[data-theme="dark"] .fs-step-indicator.pending {
  background: #1a2936;
  border-color: #2b3d4f;
  color: #64748b;
}
.fs-step-line {
  flex: 1;
  height: 3px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .fs-step-line { background: #2b3d4f; }
.fs-step-line-fill {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #086d66, #faba3d);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-step-line-fill.filled { width: 100%; }

/* ─── FORM WRAPPER ─── */
.fs-form-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(8,109,102,0.08);
}
[data-theme="dark"] .fs-form-wrapper {
  background: #111c26;
  border-color: #1e2e3d;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ─── FORM INPUTS ─── */
.fs-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.fs-form-col-full { grid-column: span 2; }

.fs-field-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #153f3e;
}
[data-theme="dark"] .fs-field-label { color: #e2e8f0; }
.fs-field-label b { color: #e11d48; }

.fs-form-input,
.fs-form-select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  color: #111827;
  font-family: inherit;
  font-size: 0.98rem;
  transition: all 0.3s;
  box-sizing: border-box;
  outline: none;
}
[data-theme="dark"] .fs-form-input,
[data-theme="dark"] .fs-form-select {
  background: #1a2936;
  border-color: #2b3d4f;
  color: #f3f4f6;
}
.fs-form-input:focus,
.fs-form-select:focus {
  border-color: #086d66;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8,109,102,0.1);
}
[data-theme="dark"] .fs-form-input:focus,
[data-theme="dark"] .fs-form-select:focus {
  background: #111c26;
  border-color: #faba3d;
  box-shadow: 0 0 0 4px rgba(250,186,61,0.15);
}
.fs-form-input.input-valid { border-color: #10b981 !important; }

/* ─── RADIO / PILL OPTIONS ─── */
.fs-pills-group { display: flex; flex-wrap: wrap; gap: 10px; }
.fs-pill-option { cursor: pointer; }
.fs-pill-option input { display: none; }
.fs-pill-option span {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
  background: #f9fafb;
  transition: all 0.3s;
}
[data-theme="dark"] .fs-pill-option span {
  border-color: #2b3d4f;
  background: #1a2936;
  color: #9ca3af;
}
.fs-pill-option input:checked + span {
  border-color: #086d66;
  background: #086d66;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(8,109,102,0.2);
}
[data-theme="dark"] .fs-pill-option input:checked + span {
  border-color: #faba3d;
  background: #faba3d;
  color: #111c26;
}

/* ─── CTA BUTTON ─── */
.fs-cta-btn {
  background: linear-gradient(135deg, #faba3d 0%, #d97706 100%);
  color: #153f3e;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fs-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s;
}
.fs-cta-btn:hover::before { left: 100%; }
.fs-cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 35px rgba(250,186,61,0.4);
}
.fs-cta-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.fs-cta-btn--green {
  background: linear-gradient(135deg, #086d66, #0d9488);
  color: white;
}
.fs-cta-btn--green:hover {
  box-shadow: 0 12px 35px rgba(8,109,102,0.4);
}

/* ─── FEEDBACK ALERT ─── */
.fs-alert {
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
}
.fs-alert.error {
  display: block;
  background: #ffe4e6;
  color: #9f1239;
  border: 1px solid #fecdd3;
}
.fs-alert.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ─── DRAWERS (Slide-over Panels) ─── */
.fs-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.fs-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.fs-drawer-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  box-shadow: -12px 0 35px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100000;
}
[data-theme="dark"] .fs-drawer-panel {
  background: #111c26;
  color: #f3f4f6;
}
.fs-drawer-overlay.is-open .fs-drawer-panel {
  transform: translateX(0);
}
.fs-drawer-header {
  padding: 20px 26px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}
[data-theme="dark"] .fs-drawer-header {
  background: #111c26;
  border-color: #1e2e3d;
}
.fs-drawer-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #086d66;
  margin: 0;
}
[data-theme="dark"] .fs-drawer-header h3 { color: #faba3d; }
.fs-drawer-close {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  font-size: 1.4rem;
  transition: all 0.2s;
}
.fs-drawer-close:hover {
  background: #fee2e2;
  color: #b91c1c;
}
.fs-drawer-body {
  padding: 28px 30px;
  overflow-y: auto;
  flex: 1;
}
.fs-drawer-body h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #086d66;
  margin: 24px 0 10px;
}
[data-theme="dark"] .fs-drawer-body h4 { color: #faba3d; }
.fs-drawer-body p {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 14px;
}
[data-theme="dark"] .fs-drawer-body p { color: #94a3b8; }
.fs-drawer-footer {
  padding: 18px 24px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  gap: 14px;
  position: sticky;
  bottom: 0;
  z-index: 10;
}
[data-theme="dark"] .fs-drawer-footer {
  background: #111c26;
  border-color: #1e2e3d;
}

/* ─── SUCCESS PANEL ─── */
.fs-success-panel {
  display: none;
  max-width: 740px;
  margin: 0 auto;
}
.fs-success-panel.is-visible {
  display: block;
  animation: fsFadeInUp 0.5s ease forwards;
}
@keyframes fsFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fs-success-badge-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 20px;
}

/* ─── CONFETTI ─── */
.fs-confetti-piece {
  position: fixed;
  top: -10px;
  animation: fsConfettiFall 3s ease-out forwards;
  z-index: 9999;
  pointer-events: none;
}
@keyframes fsConfettiFall {
  0%   { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* ─── SCROLL REVEAL ─── */
.fs-scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CONTENT CARDS (Light sections) ─── */
.fs-content-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-content-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #086d66, #faba3d);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fs-content-card:hover::after { transform: scaleX(1); transform-origin: left; }
.fs-content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(8,109,102,0.12);
  border-color: #086d66;
}
[data-theme="dark"] .fs-content-card {
  background: #111c26;
  border-color: #1e2e3d;
}
[data-theme="dark"] .fs-content-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border-color: #faba3d;
}

/* ─── ICON WITH PULSE RING ─── */
.fs-icon-pulse {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #086d66, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  flex-shrink: 0;
}
.fs-icon-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 2px solid rgba(8,109,102,0.25);
  animation: fsPulseRing 2s ease-out infinite;
}
@keyframes fsPulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ─── CERTIFICATION STAGE CARDS ─── */
.fs-stage-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  border: 1.5px solid #e2e8f0;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.fs-stage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8,109,102,0.12);
  border-color: #086d66;
}
[data-theme="dark"] .fs-stage-card {
  background: #111c26;
  border-color: #1e2e3d;
}
.fs-stage-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(8,109,102,0.08);
  line-height: 1;
}

/* ─── CROSS-REGISTRATION BOX ─── */
.fs-cross-reg-box {
  background: #fffbeb;
  border: 2px dashed #faba3d;
  border-radius: 16px;
  padding: 1.8rem;
  text-align: right;
}
[data-theme="dark"] .fs-cross-reg-box {
  background: rgba(250,186,61,0.05);
  border-color: rgba(250,186,61,0.3);
}

/* ─── PAGE-SPECIFIC SECTION OVERRIDES ─── */
.free-sessions-page main > .section,
.free-sessions-page main > section {
  padding-block: 2.5rem !important;
}
.free-sessions-page main > .fs-cards-dark-section {
  width: min(1280px, calc(100% - 2rem));
  margin: 1.5rem auto 2.5rem !important;
  padding: 1.5rem 1.5rem 2rem !important;
  border-radius: 28px;
  box-sizing: border-box;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.18);
}
.free-sessions-page .fs-cards-dark-section > .fs-glow-orb {
  position: absolute !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .fs-hero { min-height: 520px; }
  .fs-countdown-unit { min-width: 72px; padding: 0.75rem 1rem; }
  .fs-countdown-number { font-size: 1.8rem; }
  .fs-glass-card { padding: 1.5rem; }
  .fs-card-number { font-size: 3rem; }
}
@media (max-width: 640px) {
  .fs-form-row { grid-template-columns: 1fr; }
  .fs-form-col-full { grid-column: span 1; }
  .fs-form-wrapper { padding: 1.5rem; }
  .fs-drawer-panel { max-width: 100%; }
  .fs-hero { min-height: auto; padding: 3rem 0; }
  .free-sessions-page main > .fs-cards-dark-section {
    width: calc(100% - 1rem);
    margin: 0.75rem auto 1.5rem !important;
    padding: 1.25rem 0.85rem 1.5rem !important;
    border-radius: 20px;
  }
}
