/* ============================================================
   DreaInno — Site Remediation & 48-Hour Staging Sprint (fix.css)
   AffiScope v1.1 Telemetry Handoff & Technical Diagnostics
   Obsidian Dark Theme, Electric Accents, Radial Metric Gauges
   ============================================================ */

/* ── Base Layout & Hero ── */
.fix-page {
  min-height: 100vh;
  background-color: #000000;
  color: var(--color-text-main);
  position: relative;
  overflow-x: hidden;
}

#mainContent {
  position: relative;
  z-index: 2;
}

.fix-hero {
  padding: 130px 0 40px;
  position: relative;
  z-index: 2;
  background: transparent;
}

@media (min-width: 992px) {
  .fix-hero {
    padding: 150px 0 50px;
  }
}

.fix-hero-badge-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.telemetry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #d4d4d8;
  text-transform: uppercase;
}

.telemetry-chip-live {
  background: rgba(43, 75, 238, 0.1);
  border-color: rgba(43, 75, 238, 0.35);
  color: #93c5fd;
}

.telemetry-chip .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-accent-pink);
  box-shadow: 0 0 8px var(--color-accent-pink);
  animation: pulse-glow 2s infinite ease-in-out;
}

.telemetry-chip-live .pulse-dot {
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.fix-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #ffffff;
}

.domain-highlight {
  color: #60a5fa;
  font-family: var(--font-mono);
  font-weight: 600;
  display: inline-block;
  background: rgba(43, 75, 238, 0.12);
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  word-break: break-all;
}

.fix-hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 820px;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Interactive Domain Re-Scan Bar ── */
.domain-bar-card {
  background: rgba(13, 13, 17, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  max-width: 880px;
  margin-bottom: 30px;
  position: relative;
}

.domain-bar-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #71717a;
  padding-left: 6px;
}

.domain-bar-input-wrap {
  flex: 1;
  min-width: 220px;
}

.domain-bar-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 1rem;
  padding: 8px 4px;
}

.domain-bar-input::placeholder {
  color: #52525b;
}

.domain-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.domain-target-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a1a1aa;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.domain-target-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Diagnostic Cockpit (Score + Financial Impact) ── */
.diagnostic-cockpit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .diagnostic-cockpit-grid {
    grid-template-columns: 1.1fr 1.3fr;
  }
}

.cockpit-card {
  background: rgba(12, 12, 16, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.cockpit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(43, 75, 238, 0.6), rgba(238, 43, 108, 0.4), transparent);
}

.cockpit-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.cockpit-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cockpit-card-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Radial Gauge Container */
.gauge-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.radial-gauge-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  flex-shrink: 0;
}

.radial-gauge-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.gauge-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 10;
}

.gauge-progress-circle {
  fill: none;
  stroke: var(--color-accent-pink);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(238, 43, 108, 0.4));
}

.gauge-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.gauge-max {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 2px;
}

.gauge-meta-list {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gauge-status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.status-critical {
  background: rgba(238, 43, 108, 0.15);
  color: #f87171;
  border: 1px solid rgba(238, 43, 108, 0.3);
}

.status-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-optimal {
  background: rgba(0, 204, 118, 0.15);
  color: #34d399;
  border: 1px solid rgba(0, 204, 118, 0.3);
}

.status-standby {
  background: rgba(255, 255, 255, 0.06);
  color: #a1a1aa;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gauge-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.gauge-spec-label {
  color: #a1a1aa;
}

.gauge-spec-value {
  font-family: var(--font-mono);
  color: #e4e4e7;
  font-weight: 500;
}

/* Revenue Loss Calculator */
.calc-controls {
  margin-bottom: 24px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label {
  font-size: 0.9rem;
  color: #d4d4d8;
  font-weight: 500;
}

.calc-display-val {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: #60a5fa;
  font-weight: 600;
}

.calc-range-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}

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

.calc-presets-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.calc-preset-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.calc-preset-btn:hover,
.calc-preset-btn.active {
  background: rgba(43, 75, 238, 0.18);
  border-color: rgba(43, 75, 238, 0.4);
  color: #93c5fd;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.calc-result-box {
  display: flex;
  flex-direction: column;
}

.calc-result-metric {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #f87171;
  letter-spacing: -0.02em;
}

.calc-result-title {
  font-size: 0.75rem;
  color: #71717a;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ── Section Title & Navigation Anchor ── */
.section-header-block {
  margin-bottom: 36px;
}

.section-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #60a5fa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-main-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 12px;
}

.section-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

/* ── Diagnostic Issue Cards ── */
.issues-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}

.issue-card {
  background: rgba(13, 13, 18, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.issue-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.issue-card-top {
  padding: 24px 28px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
}

.issue-title-group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.issue-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-danger {
  background: rgba(238, 43, 108, 0.12);
  border: 1px solid rgba(238, 43, 108, 0.3);
  color: #f43f5e;
}

.icon-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.icon-info {
  background: rgba(43, 75, 238, 0.12);
  border: 1px solid rgba(43, 75, 238, 0.3);
  color: #60a5fa;
}

.issue-heading-wrap h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.2;
}

.issue-meta-summary {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #a1a1aa;
}

.issue-severity-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.severity-high {
  background: rgba(238, 43, 108, 0.16);
  border: 1px solid rgba(238, 43, 108, 0.4);
  color: #fb7185;
}

.severity-medium {
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fcd34d;
}

.issue-card-content {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .issue-card-content {
    grid-template-columns: 1.1fr 1.3fr;
  }
}

.issue-diagnosis-side,
.issue-solution-side {
  display: flex;
  flex-direction: column;
}

.issue-block-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-detection {
  color: #f87171;
}

.label-solution {
  color: #34d399;
}

.issue-description-text {
  font-size: 0.95rem;
  color: #d4d4d8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.issue-code-snippet {
  background: #060608;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #a1a1aa;
  overflow-x: auto;
  line-height: 1.5;
  margin-bottom: 12px;
}

.issue-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.issue-solution-list li {
  font-size: 0.9rem;
  color: #e4e4e7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.solution-bullet {
  color: var(--color-accent-green);
  font-size: 1rem;
  line-height: 1.2;
}

/* ── 48-Hour Staging Sprint Protocol ── */
.sprint-protocol-section {
  background: rgba(9, 9, 12, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .sprint-protocol-section {
    padding: 56px 48px;
  }
}

.timeline-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .timeline-flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-step-card {
  background: rgba(17, 17, 22, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.timeline-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 75, 238, 0.4);
}

.timeline-step-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.timeline-step-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.timeline-step-body {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0;
}

.timeline-step-badge {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #71717a;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Sprint Booking / Dispatch Portal ── */
.booking-section-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 992px) {
  .booking-section-wrap {
    grid-template-columns: 1.1fr 1fr;
  }
}

.booking-form-card {
  background: rgba(14, 14, 19, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.65);
  position: relative;
}

.booking-form-header {
  margin-bottom: 24px;
}

.booking-form-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.booking-form-subtitle {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-label-custom {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #d4d4d8;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input-custom,
.form-select-custom,
.form-textarea-custom {
  width: 100%;
  background: #060609;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-custom:focus,
.form-select-custom:focus,
.form-textarea-custom:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-textarea-custom {
  resize: vertical;
  min-height: 100px;
}

.form-input-custom[readonly] {
  background: #111116;
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.3);
  font-family: var(--font-mono);
}

.sla-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px 14px;
  background: rgba(0, 204, 118, 0.08);
  border: 1px solid rgba(0, 204, 118, 0.2);
  border-radius: var(--radius-md);
}

.sla-badge-icon {
  color: var(--color-accent-green);
  font-size: 1.1rem;
}

.sla-badge-text {
  font-size: 0.85rem;
  color: #a7f3d0;
  line-height: 1.4;
}

.btn-dispatch {
  width: 100%;
  background: linear-gradient(135deg, #2b4bee, #1d4ed8);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 15px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(43, 75, 238, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-dispatch:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 6px 28px rgba(43, 75, 238, 0.6);
  transform: translateY(-2px);
}

.btn-dispatch:active {
  transform: translateY(0);
}

/* Guarantees & Studio Credentials Side */
.credentials-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-box {
  background: rgba(13, 13, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}

.guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60a5fa;
}

.guarantee-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.guarantee-body p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.direct-connect-card {
  background: rgba(43, 75, 238, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(43, 75, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: auto;
  position: relative;
}

.direct-connect-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
}

.direct-connect-card p {
  font-size: 0.85rem;
  color: #a1a1aa;
  margin-bottom: 16px;
  line-height: 1.5;
}

.direct-connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.direct-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.direct-link-btn:hover {
  background: #181822;
  border-color: rgba(96, 165, 250, 0.5);
  color: #93c5fd;
}

/* ── FAQ Section ── */
.fix-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .fix-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-card {
  background: rgba(12, 12, 16, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.faq-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
}

.faq-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Toast / Feedback Notification */
.fix-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #18181f;
  border: 1px solid rgba(0, 204, 118, 0.4);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 0.9rem;
}

.fix-toast.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* ── Interactive Card Spotlight (Consistent with index.html) ── */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(550px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(56, 189, 248, 0.12),
      transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.spotlight-card:hover::before {
  opacity: 1;
}
