/* ==========================================================================
   WORLD-CLASS INTERACTIVE UX SYSTEM CSS
   SwiftDex Digital Marketing Agency — Top 1% Global Conversion Architecture
   ========================================================================== */

/* --- GENERAL SHARED WIDGET STYLES --- */
.interactive-widget-section {
  position: relative;
  padding: 85px 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(108, 99, 255, 0.09) 0%, transparent 65%),
              linear-gradient(180deg, #050814 0%, #080D1E 100%);
}

.iw-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(16, 22, 42, 0.94), rgba(8, 13, 28, 0.96));
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 28px;
  padding: 50px 56px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(20px);
  z-index: 5;
}

.iw-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00F0FF, #6C63FF, transparent);
  border-radius: 2px;
}

.iw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.iw-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00E6A4;
  box-shadow: 0 0 10px #00E6A4;
  animation: iwPulse 1.8s infinite;
}

@keyframes iwPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.75); opacity: 0.5; }
}

.iw-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 14px;
}

.iw-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 38px;
}

/* ==========================================================================
   1. INSTANT LIVE URL AUDIT SCANNER WIDGET
   ========================================================================== */
.scanner-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scanner-input-bar {
  display: flex;
  align-items: center;
  background: rgba(6, 11, 24, 0.88);
  border: 1.5px solid rgba(108, 99, 255, 0.45);
  border-radius: 16px;
  padding: 6px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scanner-input-bar:focus-within {
  border-color: #00F0FF;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
}

.scanner-url-prefix {
  padding: 0 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #8E92B0;
  user-select: none;
}

.scanner-url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 14px 6px;
}

.scanner-url-input::placeholder {
  color: #5A6082;
  font-weight: 500;
}

.scanner-submit-btn {
  padding: 16px 34px;
  background: linear-gradient(135deg, #00C2D4, #4F46E5);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 194, 212, 0.4);
}

.scanner-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.6);
  background: linear-gradient(135deg, #00F0FF, #6C63FF);
}

.scanner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.scanner-pill-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #9898C0;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scanner-pill {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: #D0D4E8;
  transition: all 0.25s ease;
  user-select: none;
}

.scanner-pill.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: #00F0FF;
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.scanner-progress-container {
  display: none;
  margin-top: 32px;
  padding: 28px;
  background: rgba(6, 11, 24, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 20px;
  animation: iwFadeIn 0.4s ease;
}

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

.scanner-status-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #00F0FF;
}

.scanner-pct-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #FFFFFF;
}

.scanner-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.scanner-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6C63FF, #00F0FF, #00E6A4);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.scanner-results-card {
  display: none;
  margin-top: 32px;
  animation: iwFadeIn 0.5s ease;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.scorecard-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.scorecard-val {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.score-green { color: #00E6A4; }
.score-warn { color: #FFB800; }
.score-cyan { color: #00F0FF; }

.scorecard-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #9898C0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.scorecard-banner {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 240, 255, 0.12));
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.scorecard-banner-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.scorecard-banner-text p {
  font-size: 0.9rem;
  color: #C2C6E0;
}

.scorecard-action-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #00E6A4, #00C2D4);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #060B18;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 230, 164, 0.35);
}

.scorecard-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 230, 164, 0.6);
}


/* ==========================================================================
   2. INTERACTIVE ROI & GROWTH CALCULATOR
   ========================================================================== */
.roi-controls-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.currency-toggle-wrap {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 4px;
}

.currency-btn {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #9898C0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.currency-btn.active {
  background: linear-gradient(135deg, #6C63FF, #00D4FF);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(108, 99, 255, 0.4);
}

.roi-calculator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.roi-inputs-pane {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.roi-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roi-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roi-field-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #D6DAF0;
}

.roi-field-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #00F0FF;
}

.roi-select {
  background: rgba(6, 11, 24, 0.85);
  border: 1.5px solid rgba(108, 99, 255, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.roi-select:focus {
  border-color: #00F0FF;
}

.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00F0FF;
  border: 3px solid #060B18;
  box-shadow: 0 0 16px #00F0FF;
  cursor: pointer;
  transition: transform 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-strategy-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.roi-strategy-pill {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  transition: all 0.25s ease;
}

.roi-strategy-pill.active {
  background: rgba(0, 240, 255, 0.12);
  border-color: #00F0FF;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.2);
}

.roi-strategy-pill .s-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.roi-strategy-pill .s-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00E6A4;
}

.roi-output-pane {
  background: linear-gradient(160deg, #091026 0%, #060A1A 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.06);
}

.roi-output-pane::after {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.roi-output-header {
  font-size: 0.82rem;
  font-weight: 700;
  color: #8E92B0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.roi-main-result {
  margin-bottom: 24px;
}

.roi-main-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  background: linear-gradient(135deg, #00F0FF, #00E6A4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.roi-main-sub {
  font-size: 0.85rem;
  color: #A0A6C8;
  margin-top: 4px;
}

.roi-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.roi-sub-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.roi-sub-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
}

.roi-sub-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8E92B0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.roi-claim-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #6C63FF, #00D4FF);
  border: none;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.45);
}

.roi-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.65);
}


/* ==========================================================================
   3. INTERACTIVE BEFORE / AFTER DASHBOARD SLIDER
   ========================================================================== */
.ba-snap-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 24px;
}

.ba-snap-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #C2C6E0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ba-snap-btn:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: #00F0FF;
  color: #FFFFFF;
}

.ba-snap-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(108, 99, 255, 0.25));
  border-color: #00F0FF;
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
}

.ba-comparison-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75);
  background: #060B18;
  height: 480px;
  user-select: none;
  touch-action: pan-y;
}

.ba-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  overflow: hidden;
  border-radius: 22px;
}

.ba-panel-before {
  width: 100%;
  z-index: 1;
  background: linear-gradient(145deg, rgba(22, 16, 32, 0.98), rgba(10, 8, 18, 0.99));
}

.ba-panel-after {
  width: 50%;
  z-index: 2;
  background: linear-gradient(145deg, rgba(6, 24, 46, 0.98), rgba(8, 14, 32, 0.99));
  border-right: 2.5px solid #00F0FF;
}

/* Inner container exactly matches wrapper width across all screen sizes */
.ba-panel-inner {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 42px;
  box-sizing: border-box;
}

.ba-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.ba-badge-before {
  background: rgba(255, 80, 80, 0.16);
  border: 1px solid rgba(255, 80, 80, 0.5);
  color: #FF6B6B;
}

.ba-badge-after {
  background: rgba(0, 230, 164, 0.18);
  border: 1px solid #00E6A4;
  color: #00E6A4;
  box-shadow: 0 0 20px rgba(0, 230, 164, 0.25);
}

.ba-period-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #A0A6C8;
}

/* Full-width comparison metrics grid inside each panel */
.ba-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: auto;
  margin-bottom: auto;
}

.ba-metric-box {
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.ba-panel-after .ba-metric-box {
  background: rgba(0, 240, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.35);
}

.ba-metric-title {
  font-size: 0.78rem;
  color: #8E92B0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ba-metric-value {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
}

.ba-panel-before .ba-metric-value { color: #FF6B6B; }
.ba-panel-after .ba-metric-value { color: #00E6A4; }

.ba-metric-sub {
  font-size: 0.84rem;
  color: #C2C6E0;
  margin-top: 8px;
  font-weight: 600;
}

.ba-panel-after .ba-metric-sub { color: #E2E6FA; }

.ba-footer-note {
  font-size: 0.82rem;
  color: #7A80A4;
  font-weight: 600;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #00F0FF;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00F0FF, #6C63FF);
  color: #060B18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.9);
  border: 3px solid #060B18;
}

/* Mobile & Tablet Ultra-Responsive Stacked Grid Layout */
@media (max-width: 860px) {
  .ba-comparison-wrap {
    height: auto;
    min-height: 640px;
  }
  .ba-panel-inner {
    padding: 26px 20px;
  }
  .ba-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin: 20px 0;
  }
  .ba-metric-box {
    padding: 16px 18px;
  }
  .ba-metric-value {
    font-size: 1.85rem;
  }
}

@media (max-width: 480px) {
  .ba-comparison-wrap {
    min-height: 680px;
  }
  .ba-panel-inner {
    padding: 20px 14px;
  }
  .ba-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .ba-metric-value {
    font-size: 1.65rem;
  }
}


/* ==========================================================================
   4. INTERACTIVE TABBED SERVICE COMMAND CENTER
   ========================================================================== */
.cmd-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.cmd-tab-btn {
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #A8AEC8;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cmd-tab-btn:hover {
  border-color: rgba(0, 240, 255, 0.5);
  color: #FFFFFF;
}

.cmd-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(108, 99, 255, 0.18));
  border-color: #00F0FF;
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}

.cmd-tab-pane {
  display: none;
  animation: iwFadeIn 0.45s ease;
}

.cmd-tab-pane.active {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.cmd-pane-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.cmd-pane-content p {
  font-size: 1.05rem;
  color: #B2B8D4;
  line-height: 1.75;
  margin-bottom: 24px;
}

.cmd-deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.cmd-deliverables li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #E2E6FA;
}

.cmd-deliverables li .check-icon {
  color: #00E6A4;
  font-weight: 900;
}

.cmd-kpi-card {
  background: linear-gradient(145deg, rgba(20, 26, 48, 0.9), rgba(10, 15, 32, 0.95));
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}


/* ==========================================================================
   5. SMART REGIONAL FLAG & CURRENCY SWITCHER NAVBAR COMPONENT
   ========================================================================== */
.nav-market-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.market-select-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.25s ease;
}

.market-select-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: #00F0FF;
}


/* ==========================================================================
   6. 3-STEP "FIND YOUR STRATEGY BLUEPRINT" QUIZ MODAL
   ========================================================================== */
.quiz-step {
  display: none;
  animation: iwFadeIn 0.35s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.quiz-opt-card {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  transition: all 0.25s ease;
}

.quiz-opt-card:hover, .quiz-opt-card.selected {
  background: rgba(0, 240, 255, 0.14);
  border-color: #00F0FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
}

.quiz-opt-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.quiz-opt-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .roi-calculator-grid, .cmd-tab-pane.active {
    grid-template-columns: 1fr;
  }
  .iw-card {
    padding: 36px 24px;
  }
  .scorecard-grid {
    grid-template-columns: 1fr;
  }
  .scanner-input-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 10px;
  }
  .cmd-deliverables {
    grid-template-columns: 1fr;
  }
  .quiz-options-grid {
    grid-template-columns: 1fr;
  }
}
