/* ==========================================================================
   Q-DASH INTERACTIVE FEASIBILITY DECISION BOARD — EXACT REFERENCE STYLING
   Visual Identity: Deep Technological Navy (#070D18 / #0B132B), Vibrant Orange (#FF6A2A),
   Electric Cyan/Blue (#00B4D8 / #38BDF8), Financial Green (#10B981), Financial Red (#EF4444)
   ========================================================================== */

:root {
  --qd-feas-bg: #070D18;
  --qd-feas-card-bg: linear-gradient(180deg, #091322 0%, #060B14 100%);
  --qd-feas-card-subtle: rgba(11, 23, 38, 0.7);
  --qd-feas-orange: #FF6A2A;
  --qd-feas-orange-glow: rgba(255, 106, 42, 0.45);
  --qd-feas-blue: #00B4D8;
  --qd-feas-blue-glow: rgba(0, 180, 216, 0.4);
  --qd-feas-green: #10B981;
  --qd-feas-red: #EF4444;
  --qd-feas-border: rgba(148, 163, 184, 0.16);
  --qd-feas-border-hover: rgba(255, 106, 42, 0.45);
  --qd-feas-tx-title: #FFFFFF;
  --qd-feas-tx-desc: #94A3B8;
  --qd-feas-radius-lg: 18px;
  --qd-feas-radius-md: 12px;
  --qd-feas-radius-sm: 8px;
}

/* ── Full-Width Section Environment ────────────────────────────────── */
#feasibility-growth.qd-feasibility-section {
  width: 100% !important;
  max-width: 100% !important;
  background: radial-gradient(circle at 50% 25%, rgba(0, 180, 216, 0.09) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(255, 106, 42, 0.07) 0%, transparent 50%),
              linear-gradient(180deg, #060B14 0%, #0B132B 50%, #060B14 100%) !important;
  padding: 72px 3% 84px !important;
  position: relative !important;
  overflow: hidden !important;
  color: #FFFFFF !important;
  box-sizing: border-box !important;
  border-top: 1px solid rgba(148, 163, 184, 0.12) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12) !important;
}

/* Background Subtle Financial Analytics Grid */
#feasibility-growth.qd-feasibility-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 106, 42, 0.14) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 36px 36px, 48px 48px, 48px 48px;
  pointer-events: none;
  opacity: 0.75;
}

.qd-feasibility-container {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Section Header (Dark Financial/Analytics) ─────────────────────── */
.qd-feasibility-header {
  text-align: center;
  margin-bottom: 36px;
}

.qd-feasibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 42, 0.12);
  border: 1px solid rgba(255, 106, 42, 0.35);
  color: var(--qd-feas-orange);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(255, 106, 42, 0.15);
}

.qd-feasibility-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 14px;
  line-height: 1.3;
}

.qd-feasibility-title .hl-orange {
  color: var(--qd-feas-orange);
  position: relative;
  display: inline-block;
}

.qd-feasibility-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--qd-feas-tx-desc);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── 7-STAGE FEASIBILITY PROCESS / HORIZONTAL TIMELINE ──────────────── */
.qd-feas-timeline-wrap {
  background: rgba(6, 12, 22, 0.85);
  border: 1.5px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--qd-feas-radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.qd-feas-timeline-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}

/* Connecting Line Across the 7 Stages */
.qd-feas-timeline-line {
  position: absolute;
  top: 14px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(148, 163, 184, 0.2);
  z-index: 1;
}

.qd-feas-timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF6A2A 0%, #00B4D8 100%);
  box-shadow: 0 0 10px #FF6A2A;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.qd-feas-stage-node {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  outline: none;
  font-family: inherit;
}

.qd-feas-stage-pill {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0B132B;
  border: 2px solid rgba(148, 163, 184, 0.3);
  color: #94A3B8;
  font-size: 11px;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.25s ease;
}

.qd-feas-stage-node.is-active .qd-feas-stage-pill {
  background: var(--qd-feas-orange);
  border-color: #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 0 12px var(--qd-feas-orange);
  transform: scale(1.15);
}

.qd-feas-stage-node.is-passed .qd-feas-stage-pill {
  background: #00B4D8;
  border-color: #38BDF8;
  color: #FFFFFF;
  box-shadow: 0 0 8px #00B4D8;
}

.qd-feas-stage-box {
  background: rgba(11, 23, 38, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 10px;
  padding: 10px 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.qd-feas-stage-node:hover .qd-feas-stage-box,
.qd-feas-stage-node.is-active .qd-feas-stage-box {
  background: rgba(16, 32, 54, 0.95);
  border-color: var(--qd-feas-orange);
  box-shadow: 0 4px 16px rgba(255, 106, 42, 0.25);
  transform: translateY(-2px);
}

.qd-feas-stage-icon {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 2px;
}

.qd-feas-stage-node.is-active .qd-feas-stage-icon {
  color: var(--qd-feas-orange);
}

.qd-feas-stage-name {
  font-size: 11.5px;
  font-weight: 850;
  color: #FFFFFF;
  line-height: 1.2;
}

.qd-feas-stage-desc {
  font-size: 9.5px;
  color: #94A3B8;
  line-height: 1.25;
}

/* ── 3-PANEL MASTER DASHBOARD GRID ───────────────────────────────────
   Screen Left:  Decision Panel (320px)
   Screen Mid:   Dominant Financial Model (1fr)
   Screen Right: Market & Competition (330px)
   ──────────────────────────────────────────────────────────────────── */
.qd-feas-dashboard-grid {
  display: grid;
  grid-template-columns: 320px 1fr 330px;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 36px;
}

/* ── 1. SCREEN LEFT: INVESTMENT DECISION INDICATORS ─────────────────── */
.qd-feas-decision-panel {
  background: var(--qd-feas-card-bg);
  border: 1.5px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--qd-feas-radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.qd-feas-panel-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 900;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.qd-feas-panel-hd i {
  color: #00B4D8;
}

/* Top Feasibility Highlight Card (Green Ring + Status) */
.qd-feas-status-card {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--qd-feas-radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.qd-feas-progress-ring {
  width: 58px;
  height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qd-feas-progress-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.qd-feas-progress-bg {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 4.5;
  fill: none;
}

.qd-feas-progress-val {
  stroke: var(--qd-feas-green);
  stroke-width: 4.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 157;
  stroke-dashoffset: 22; /* 86% */
  transition: stroke-dashoffset 1.4s ease;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

.qd-feas-progress-txt {
  position: absolute;
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
}

.qd-feas-status-info {
  display: flex;
  flex-direction: column;
}

.qd-feas-status-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--qd-feas-green);
  display: flex;
  align-items: center;
  gap: 5px;
}

.qd-feas-status-sub {
  font-size: 10px;
  color: #CBD5E1;
  line-height: 1.35;
  margin-top: 2px;
}

/* Horizontal Risk Slider Scale */
.qd-feas-risk-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 10px 12px;
}

.qd-feas-risk-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.qd-feas-risk-lbl {
  font-size: 11px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.qd-feas-risk-badge {
  font-size: 10.5px;
  font-weight: 850;
  color: #FFFFFF;
  background: rgba(255, 106, 42, 0.25);
  border: 1px solid #FF6A2A;
  padding: 2px 10px;
  border-radius: 12px;
}

.qd-feas-risk-track {
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #00B4D8 0%, #FF6A2A 50%, #EF4444 100%);
  position: relative;
  margin-bottom: 6px;
}

.qd-feas-risk-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF6A2A;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 10px #FF6A2A;
}

.qd-feas-risk-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: #64748B;
}

/* 2x2 Decision Metrics Grid */
.qd-feas-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.qd-feas-metric-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.qd-feas-metric-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: #94A3B8;
  margin-bottom: 4px;
}

.qd-feas-metric-val {
  font-size: 15px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.qd-feas-metric-sub {
  font-size: 9.5px;
  color: #64748B;
}

.qd-feas-decision-cta {
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: #38BDF8 !important;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
  border-radius: var(--qd-feas-radius-sm);
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.qd-feas-decision-cta:hover {
  background: rgba(0, 180, 216, 0.25);
  border-color: #38BDF8;
  color: #FFFFFF !important;
}

/* ── 2. SCREEN MID: FINANCIAL MODEL & ANIMATED BREAK-EVEN CHART ─────── */
.qd-feas-financial-panel {
  background: var(--qd-feas-card-bg);
  border: 1.5px solid rgba(255, 106, 42, 0.35);
  border-radius: var(--qd-feas-radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 106, 42, 0.1);
  position: relative;
}

/* Top 4 Financial KPI Pills */
.qd-feas-fin-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.qd-feas-fin-pill {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--qd-feas-radius-sm);
  padding: 8px 12px;
  text-align: center;
}

.qd-feas-fin-pill-lbl {
  font-size: 10px;
  color: #94A3B8;
  margin-bottom: 2px;
}

.qd-feas-fin-pill-val {
  font-size: 14.5px;
  font-weight: 900;
  color: #FFFFFF;
}

.qd-feas-fin-pill-val.green { color: var(--qd-feas-green); }
.qd-feas-fin-pill-val.red { color: var(--qd-feas-red); }
.qd-feas-fin-pill-val.blue { color: #38BDF8; }
.qd-feas-fin-pill-val.purple { color: #C084FC; }

/* ── Animated Break-Even Chart Container ───────────────────────────── */
.qd-feas-chart-wrap {
  background: rgba(6, 12, 22, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--qd-feas-radius-md);
  padding: 16px 18px 12px;
  position: relative;
}

.qd-feas-chart-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.qd-feas-chart-title {
  font-size: 13.5px;
  font-weight: 900;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qd-feas-chart-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
}

.qd-feas-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #CBD5E1;
}

.qd-feas-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.qd-feas-legend-dot.green { background: #10B981; box-shadow: 0 0 6px #10B981; }
.qd-feas-legend-dot.red { background: #EF4444; box-shadow: 0 0 6px #EF4444; }
.qd-feas-legend-dot.blue { background: #00B4D8; box-shadow: 0 0 6px #00B4D8; }

.qd-feas-chart-svg {
  width: 100%;
  height: 200px;
  overflow: visible;
}

/* Floating Break-Even Point Tooltip */
.qd-feas-breakeven-tooltip {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 23, 38, 0.95);
  border: 1.5px solid #00B4D8;
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 14px rgba(0, 180, 216, 0.4);
  pointer-events: none;
  z-index: 10;
  animation: qdBreakevenFloat 3s ease-in-out infinite;
}

.qd-feas-breakeven-tt-title {
  font-size: 10px;
  font-weight: 850;
  color: #38BDF8;
  margin-bottom: 1px;
}

.qd-feas-breakeven-tt-month {
  font-size: 9px;
  color: #CBD5E1;
}

.qd-feas-breakeven-tt-val {
  font-size: 12px;
  font-weight: 900;
  color: #FFFFFF;
}

/* Bottom Row of 4 Compact Financial KPIs */
.qd-feas-kpis-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.qd-feas-kpi-block {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.qd-feas-kpi-lbl {
  font-size: 10px;
  color: #94A3B8;
  margin-bottom: 2px;
}

.qd-feas-kpi-val {
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.qd-feas-kpi-sparkline {
  width: 100%;
  height: 22px;
}

/* ── 3. SCREEN RIGHT: MARKET & COMPETITION ANALYSIS ─────────────────── */
.qd-feas-market-panel {
  background: var(--qd-feas-card-bg);
  border: 1.5px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--qd-feas-radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Top Market Row (Market Size + 38% Share Ring) */
.qd-feas-market-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.qd-feas-market-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qd-feas-market-ring-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 10px;
}

.qd-feas-share-ring {
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qd-feas-share-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.qd-feas-share-val {
  stroke: #00B4D8;
  stroke-width: 4.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 125;
  stroke-dashoffset: 77; /* 38% */
  filter: drop-shadow(0 0 4px #00B4D8);
}

.qd-feas-share-txt {
  position: absolute;
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
}

/* Market Growth Bar with Trend Line */
.qd-feas-growth-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qd-feas-growth-val {
  font-size: 16px;
  font-weight: 900;
  color: var(--qd-feas-green);
}

.qd-feas-growth-sparkline {
  width: 110px;
  height: 26px;
}

/* Competition Donut Chart & Breakdown */
.qd-feas-comp-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 12px;
}

.qd-feas-comp-hd {
  font-size: 11px;
  font-weight: 850;
  color: #CBD5E1;
  margin-bottom: 8px;
}

.qd-feas-comp-body {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qd-feas-comp-donut {
  width: 58px;
  height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qd-feas-comp-donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.qd-feas-comp-txt {
  position: absolute;
  font-size: 8px;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.1;
  font-weight: 800;
}

.qd-feas-comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qd-feas-comp-list li {
  font-size: 10.5px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Competitive Advantages Checklist */
.qd-feas-adv-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--qd-feas-radius-sm);
  padding: 12px;
}

.qd-feas-adv-title {
  font-size: 11px;
  font-weight: 850;
  color: var(--qd-feas-orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qd-feas-adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qd-feas-adv-list li {
  font-size: 10.5px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qd-feas-adv-list li i {
  color: var(--qd-feas-green);
  font-size: 9px;
}

/* ── BOTTOM ACTIONS (Primary & WhatsApp CTAs) ──────────────────────── */
.qd-feas-actions-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.qd-feas-cta-primary {
  background: linear-gradient(135deg, #FF6A2A 0%, #E05C2A 100%);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 850;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 24px rgba(255, 106, 42, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.qd-feas-cta-primary-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qd-feas-cta-primary-sub {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

.qd-feas-cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 106, 42, 0.55);
}

body.ar .qd-feas-cta-primary i {
  transform: scaleX(-1);
}

.qd-feas-cta-whatsapp {
  background: rgba(11, 23, 38, 0.85);
  border: 1.5px solid #25D366;
  color: #FFFFFF !important;
  font-size: 14.5px;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.qd-feas-cta-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ── BOTTOM INTEGRATED TRUST & FEATURES STRIP ──────────────────────── */
.qd-feas-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(6, 12, 22, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.qd-feas-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
}

.qd-feas-trust-item:last-child {
  border-inline-end: none;
}

.qd-feas-trust-icon {
  font-size: 20px;
  color: var(--qd-feas-orange);
  flex-shrink: 0;
}

.qd-feas-trust-title {
  font-size: 13px;
  font-weight: 850;
  color: #FFFFFF;
  line-height: 1.2;
}

.qd-feas-trust-desc {
  font-size: 10.5px;
  color: #94A3B8;
  line-height: 1.3;
}

/* ── Animations Keyframes ──────────────────────────────────────────── */
@keyframes qdBreakevenFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

/* ── Responsive Adaptations ────────────────────────────────────────── */
@media (max-width: 1280px) {
  .qd-feas-dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .qd-feas-financial-panel {
    grid-column: 1 / -1;
    order: -1;
  }
  .qd-feas-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .qd-feas-trust-item:nth-child(2) {
    border-inline-end: none;
  }
}

@media (max-width: 900px) {
  .qd-feas-timeline-track {
    grid-template-columns: repeat(4, 1fr);
  }
  .qd-feas-timeline-line {
    display: none;
  }
  .qd-feas-fin-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .qd-feas-kpis-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #feasibility-growth.qd-feasibility-section {
    padding: 48px 4% 56px !important;
  }
  .qd-feas-timeline-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .qd-feas-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .qd-feas-trust-strip {
    grid-template-columns: 1fr;
  }
  .qd-feas-trust-item {
    border-inline-end: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .qd-feas-trust-item:last-child {
    border-bottom: none;
  }
  .qd-feas-actions-wrap {
    flex-direction: column;
    width: 100%;
  }
  .qd-feas-cta-primary,
  .qd-feas-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qd-feas-timeline-line-fill,
  .qd-feas-progress-val,
  .qd-feas-share-val,
  .qd-feas-breakeven-tooltip {
    transition: none !important;
    animation: none !important;
  }
}
