/**
 * Fame Lifters Digital Growth & AI Assessment — UI Styles
 * Scoped strictly to .fl-assessment-* to ensure zero bleed into Aivora template.
 * Brand Colors: #0E0F26 (Dark Obsidian), #F2762E & #F26430 (Warm Orange)
 */

/* ==========================================================================
   Overlay & Modal Shell
   ========================================================================== */

.fl-assessment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 11, 26, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fl-assessment-overlay.fl-active {
  opacity: 1;
  visibility: visible;
}

.fl-assessment-dialog {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  background: #0E0F26;
  background: radial-gradient(circle at 80% 0%, rgba(242, 118, 46, 0.09) 0%, transparent 60%),
              radial-gradient(circle at 10% 100%, rgba(242, 100, 48, 0.06) 0%, transparent 50%),
              #0E0F26;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7),
              0 0 45px rgba(242, 118, 46, 0.08);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  font-family: inherit;
}

.fl-assessment-overlay.fl-active .fl-assessment-dialog {
  transform: scale(1) translateY(0);
}

/* ==========================================================================
   Modal Header & Progress Bar
   ========================================================================== */

.fl-assessment-header {
  padding: 24px 28px 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 15, 38, 0.95);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.fl-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fl-brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fl-brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #F2762E;
  box-shadow: 0 0 10px #F2762E;
}

.fl-brand-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.fl-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.fl-close-btn:hover,
.fl-close-btn:focus-visible {
  background: rgba(242, 118, 46, 0.2);
  border-color: #F2762E;
  color: #FFFFFF;
  outline: none;
}

.fl-progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fl-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.fl-section-label {
  color: #F2762E;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.fl-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.fl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F2762E 0%, #F26430 100%);
  border-radius: 99px;
  width: 0%;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(242, 118, 46, 0.5);
}

/* ==========================================================================
   Modal Body / Question Views
   ========================================================================== */

.fl-assessment-body {
  padding: 32px 36px;
  overflow-y: auto;
  overflow-x: hidden;
  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.fl-assessment-body::-webkit-scrollbar {
  width: 6px;
}

.fl-assessment-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.fl-assessment-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
}

.fl-assessment-body::-webkit-scrollbar-thumb:hover {
  background: #F2762E;
}

/* ==========================================================================
   Opening Screen View
   ========================================================================== */

.fl-opening-view {
  text-align: center;
  padding: 20px 10px 10px 10px;
  margin: auto;
  max-width: 600px;
}

.fl-opening-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(242, 118, 46, 0.12);
  border: 1px solid rgba(242, 118, 46, 0.3);
  border-radius: 99px;
  color: #F2762E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.fl-opening-headline {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 18px 0;
  letter-spacing: -0.5px;
}

.fl-opening-copy {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px 0;
}

.fl-opening-note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.fl-opening-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   Question Content
   ========================================================================== */

.fl-question-view {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fl-question-meta {
  font-size: 13px;
  font-weight: 600;
  color: #F2762E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fl-question-title {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.fl-question-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px 0;
}

/* ==========================================================================
   Input Controls
   ========================================================================== */

.fl-input-group {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-text-input,
.fl-textarea-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
  color: #FFFFFF;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.fl-text-input:focus,
.fl-textarea-input:focus {
  outline: none;
  border-color: #F2762E;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(242, 118, 46, 0.18);
}

.fl-text-input::placeholder,
.fl-textarea-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.fl-textarea-input {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}

.fl-input-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

/* ==========================================================================
   Options Grid (Single & Multi Select Cards)
   ========================================================================== */

.fl-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 600px) {
  .fl-options-grid.fl-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.fl-option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: left;
}

.fl-option-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 118, 46, 0.4);
  transform: translateY(-1px);
}

.fl-option-card:focus-visible {
  outline: 2px solid #F2762E;
  outline-offset: 2px;
}

.fl-option-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.fl-option-card.fl-multi .fl-option-indicator {
  border-radius: 6px;
}

.fl-option-indicator-check {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s ease;
}

.fl-option-card.fl-multi .fl-option-indicator-check {
  border-radius: 2px;
}

/* Selected State */
.fl-option-card.fl-selected {
  background: rgba(242, 118, 46, 0.12);
  border-color: #F2762E;
  box-shadow: 0 4px 18px rgba(242, 118, 46, 0.12);
}

.fl-option-card.fl-selected .fl-option-indicator {
  border-color: #F2762E;
  background: #F2762E;
}

.fl-option-card.fl-selected .fl-option-indicator-check {
  background: #FFFFFF;
}

.fl-option-label {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.fl-option-card.fl-selected .fl-option-label {
  color: #FFFFFF;
  font-weight: 600;
}

/* ==========================================================================
   Validation Error Notice
   ========================================================================== */

.fl-validation-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #FCA5A5;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: flShake 0.3s ease;
}

@keyframes flShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ==========================================================================
   Milestone / Checkpoint Screen (Post Q21)
   ========================================================================== */

.fl-milestone-view {
  text-align: center;
  padding: 30px 10px;
  margin: auto;
  max-width: 580px;
}

.fl-milestone-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(242, 118, 46, 0.15);
  border: 1px solid #F2762E;
  color: #F2762E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 25px rgba(242, 118, 46, 0.3);
}

.fl-milestone-headline {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px 0;
}

.fl-milestone-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px 0;
}

.fl-milestone-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.fl-milestone-box strong {
  color: #FFFFFF;
}

/* ==========================================================================
   Modal Footer Navigation
   ========================================================================== */

.fl-assessment-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 15, 38, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  z-index: 10;
}

.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.fl-btn-primary {
  background: linear-gradient(135deg, #F2762E 0%, #F26430 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 20px rgba(242, 118, 46, 0.3);
}

.fl-btn-primary:hover,
.fl-btn-primary:focus-visible {
  background: linear-gradient(135deg, #f3823f 0%, #f47242 100%);
  box-shadow: 0 8px 25px rgba(242, 118, 46, 0.45);
  transform: translateY(-1px);
  outline: none;
}

.fl-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fl-btn-secondary:hover,
.fl-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  outline: none;
}

.fl-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   Responsive Adaptations (Mobile < 640px)
   ========================================================================== */

@media (max-width: 640px) {
  .fl-assessment-overlay {
    padding: 0;
  }

  .fl-assessment-dialog {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }

  .fl-assessment-header {
    padding: 16px 20px 14px 20px;
  }

  .fl-assessment-body {
    padding: 24px 20px;
  }

  .fl-assessment-footer {
    padding: 16px 20px;
  }

  .fl-opening-headline {
    font-size: 26px;
  }

  .fl-question-title {
    font-size: 20px;
  }

  .fl-btn {
    padding: 14px 22px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Input & Form Controls
   ========================================================================== */

.fl-input-group {
  width: 100%;
}

.fl-assessment-overlay .fl-input-text,
.fl-assessment-overlay .fl-input-textarea,
.fl-assessment-overlay input[type="text"],
.fl-assessment-overlay input[type="email"],
.fl-assessment-overlay input[type="tel"],
.fl-assessment-overlay input[type="url"],
.fl-assessment-overlay textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 15px !important;
  color: #FFFFFF !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fl-assessment-overlay .fl-input-text:focus,
.fl-assessment-overlay .fl-input-textarea:focus,
.fl-assessment-overlay input[type="text"]:focus,
.fl-assessment-overlay input[type="email"]:focus,
.fl-assessment-overlay input[type="tel"]:focus,
.fl-assessment-overlay input[type="url"]:focus,
.fl-assessment-overlay textarea:focus {
  outline: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #F2762E !important;
  box-shadow: 0 0 0 3px rgba(242, 118, 46, 0.25), 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.fl-assessment-overlay .fl-input-text::placeholder,
.fl-assessment-overlay .fl-input-textarea::placeholder,
.fl-assessment-overlay input::placeholder,
.fl-assessment-overlay textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.fl-input-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  text-align: right;
}

/* ==========================================================================
   Contact Stage
   ========================================================================== */

.fl-contact-view {
  display: flex;
  flex-direction: column;
  animation: flFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fl-contact-headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px 0;
  color: #FFFFFF;
}

.fl-contact-copy {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px 0;
}

.fl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fl-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fl-field-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-required {
  color: #F2762E;
  font-weight: 700;
}

.fl-optional {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  font-size: 12px;
}

.fl-field-error {
  font-size: 12px;
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border-left: 2px solid #ef4444;
  padding: 6px 10px;
  border-radius: 4px;
  box-sizing: border-box;
}

.fl-contact-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.fl-contact-privacy-note .fl-privacy-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.fl-contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Loading View
   ========================================================================== */

.fl-loading-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  min-height: 320px;
  animation: flFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fl-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #F2762E;
  border-radius: 50%;
  animation: flSpin 0.9s linear infinite;
  margin-bottom: 22px;
}

@keyframes flSpin {
  to { transform: rotate(360deg); }
}

.fl-loading-headline {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.fl-loading-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Results Experience
   ========================================================================== */

.fl-results-view {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: flFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fl-results-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.fl-results-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F2762E;
  margin-bottom: 8px;
}

.fl-results-headline {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px 0;
  color: #FFFFFF;
}

.fl-results-intro {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.fl-results-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fl-section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fl-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fl-section-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* Indicators Grid */
.fl-indicators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fl-indicator-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.fl-indicator-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.fl-indicator-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.fl-indicator-score-badge {
  font-size: 14px;
  font-weight: 700;
  color: #F2762E;
  background: rgba(242, 118, 46, 0.12);
  border: 1px solid rgba(242, 118, 46, 0.25);
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.fl-indicator-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.fl-indicator-fill {
  height: 100%;
  background: linear-gradient(90deg, #F2762E 0%, #F26430 100%);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fl-indicator-level {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.fl-indicator-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 0;
}

/* Opportunity Groups */
.fl-opportunities-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-opportunity-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fl-opportunity-rank {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F2762E;
  background: rgba(242, 118, 46, 0.12);
  border: 1px solid rgba(242, 118, 46, 0.25);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fl-opportunity-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.fl-opportunity-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.fl-opportunity-services {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.45;
}

/* Recommended Services */
.fl-services-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fl-service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 118, 46, 0.3);
}

.fl-service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.fl-service-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.fl-service-reason {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.45;
}

.fl-service-link {
  font-size: 13px;
  font-weight: 600;
  color: #F2762E;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(242, 118, 46, 0.08);
  transition: all 0.2s ease;
}

.fl-service-link:hover {
  background: rgba(242, 118, 46, 0.16);
  color: #f38a49;
}

/* Website Snapshot */
.fl-audit-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fl-audit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fl-audit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fl-audit-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.fl-audit-label {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

.fl-audit-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fl-status-pass {
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.fl-status-warning {
  background: rgba(234, 179, 8, 0.14);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.fl-status-fail {
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.fl-status-unknown {
  background: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.fl-audit-detail {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.fl-audit-disclaimer-box {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
  margin-top: 4px;
}

.fl-no-website-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fl-no-website-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.fl-no-website-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.fl-no-website-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* WhatsApp Box & Actions */
.fl-whatsapp-box {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(242, 118, 46, 0.08) 100%);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-top: 6px;
}

.fl-whatsapp-headline {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.fl-whatsapp-copy {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0;
}

.fl-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.fl-btn-whatsapp:hover,
.fl-btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, #2ae06d 0%, #159b8b 100%);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
  color: #FFFFFF;
  outline: none;
}

.fl-whatsapp-icon {
  font-size: 18px;
  line-height: 1;
}

.fl-results-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fl-btn-text {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s ease;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fl-btn-text:hover,
.fl-btn-text:focus-visible {
  color: rgba(255, 255, 255, 0.9);
  outline: none;
}

@media (max-width: 640px) {
  .fl-indicators-grid,
  .fl-audit-grid {
    grid-template-columns: 1fr;
  }

  .fl-service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .fl-service-link {
    width: 100%;
    justify-content: center;
  }

  .fl-results-headline {
    font-size: 22px;
  }

  .fl-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .fl-results-actions {
    flex-direction: column;
    gap: 10px;
  }
}

