/* ==========================================================================
   Q-DASH MASTER AGENCY VISUAL ENGINE (V13 - MINI-PLATFORM ARCHITECTURE)
   Shared Design Tokens, Indicative Assessment Tools, Scenario Simulators & Accessible Motion
   ========================================================================== */

:root {
  --plr-navy: #0B1F33;
  --plr-navy-dark: #06121E;
  --plr-navy-card: #0E243A;
  --plr-navy-surface: #132B45;
  --plr-orange: #E05C2A;
  --plr-orange-hover: #FF6B35;
  --plr-orange-glow: rgba(224, 92, 42, 0.35);
  --plr-orange-soft: rgba(224, 92, 42, 0.08);
  --plr-green: #10B981;
  --plr-green-glow: rgba(16, 185, 129, 0.3);
  --plr-blue: #2563EB;
  --plr-purple: #8B5CF6;
  --plr-bg-white: #FFFFFF;
  --plr-bg-warm: #FAF8F5;
  --plr-bg-sand: #F3EDE4;
  --plr-border: #E2E8F0;
  --plr-border-warm: #E6DFD5;
  --plr-text-main: #0B1F33;
  --plr-text-body: #334155;
  --plr-text-muted: #64748B;
  --plr-radius-sm: 12px;
  --plr-radius-md: 18px;
  --plr-radius-lg: 24px;
  --plr-radius-xl: 32px;
  --plr-shadow-subtle: 0 4px 20px rgba(11, 31, 51, 0.04);
  --plr-shadow-card: 0 10px 30px -5px rgba(11, 31, 51, 0.06), 0 2px 8px rgba(11, 31, 51, 0.02);
  --plr-shadow-hover: 0 20px 45px -8px rgba(11, 31, 51, 0.12), 0 4px 16px -2px rgba(224, 92, 42, 0.15);
}

/* Inherit typography from master site design system */
body, button, input, select, textarea {
  font-family: inherit;
}

.plr-wrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.plr-section {
  padding: 80px 0;
  position: relative;
}

/* Sticky Navigation */
.plr-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  padding: 12px 0;
  width: 100%;
  box-shadow: 0 4px 25px rgba(11, 31, 51, 0.04);
}

.plr-nav-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.plr-nav-scroll::-webkit-scrollbar {
  display: none;
}

.plr-nav-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  padding: 9px 18px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.22s ease;
  border: 1px solid transparent;
}

.plr-nav-btn:hover {
  color: var(--plr-navy);
  background: #EEF2F6;
}

.plr-nav-btn.active {
  background: var(--plr-navy);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(11, 31, 51, 0.2);
}

/* ==================== HERO GRID & SLIDER ==================== */
.plr-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 540px;
}

.plr-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plr-orange-soft);
  color: var(--plr-orange);
  border: 1px solid rgba(224, 92, 42, 0.28);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 20px;
}

.plr-hero-title {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.25;
  font-weight: 900;
  color: var(--plr-navy);
  margin: 0 0 20px 0;
  letter-spacing: -0.025em;
}

.plr-hero-title .accent {
  color: var(--plr-orange);
  position: relative;
  display: inline-block;
}

.plr-hero-desc {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--plr-text-body);
  margin: 0 0 32px 0;
  max-width: 640px;
}

.plr-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.plr-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13.5px;
  font-weight: 750;
  color: var(--plr-navy);
}

.plr-hero-trust .chk {
  color: var(--plr-green);
  font-weight: 900;
  margin-inline-end: 4px;
}

/* ==================== INTERACTIVE SLIDER CONTAINER ==================== */
.plr-slider-container {
  background: linear-gradient(145deg, #0B1F33 0%, #06121E 100%);
  border: 2px solid rgba(224, 92, 42, 0.35);
  border-radius: var(--plr-radius-xl);
  padding: 28px;
  color: #FFFFFF;
  box-shadow: 0 24px 60px rgba(6, 18, 30, 0.45);
  position: relative;
  overflow: hidden;
}

.plr-slider-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.plr-slider-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.plr-sl-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CBD5E1;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.plr-sl-tab-btn:hover, .plr-sl-tab-btn.active {
  background: var(--plr-orange);
  border-color: var(--plr-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(224, 92, 42, 0.35);
}

.plr-slider-slides-wrap {
  position: relative;
  min-height: 280px;
}

.plr-slide-item {
  display: none;
  animation: plrFadeIn 0.35s ease forwards;
}

.plr-slide-item.active {
  display: block;
}

@keyframes plrFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.plr-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plr-slider-dots {
  display: flex;
  gap: 6px;
}

.plr-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.plr-slider-dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--plr-orange);
}

.plr-slider-arrows {
  display: flex;
  gap: 8px;
}

.plr-slider-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plr-slider-arrow:hover {
  background: var(--plr-orange);
  border-color: var(--plr-orange);
}

/* ==================== BUTTONS ==================== */
.plr-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  padding: 16px 34px;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.plr-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.48);
}

.plr-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--plr-navy) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid var(--plr-border);
  box-shadow: 0 4px 14px rgba(11, 31, 51, 0.04);
  transition: all 0.2s ease;
}

.plr-btn-secondary:hover {
  background: var(--plr-bg-warm);
  border-color: var(--plr-navy);
  transform: translateY(-2px);
}

.plr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--plr-orange) 0%, var(--plr-orange-hover) 100%);
  color: #FFFFFF !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  padding: 16px 34px;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(224, 92, 42, 0.35);
  transition: all 0.25s ease;
}

.plr-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(224, 92, 42, 0.48);
}

.plr-sec-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 52px;
}

.plr-sec-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  color: var(--plr-navy);
  margin: 12px 0 16px 0;
  line-height: 1.3;
}

.plr-sec-subtitle {
  font-size: 16.5px;
  color: var(--plr-text-muted);
  line-height: 1.85;
  margin: 0;
}

/* ==================== 12-PROBLEM SCIENTIFIC MATRIX ==================== */
.plr-prob-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.plr-prob-box {
  background: #FFFFFF;
  border: 1.5px solid var(--plr-border);
  border-radius: var(--plr-radius-lg);
  padding: 28px;
  box-shadow: var(--plr-shadow-card);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.plr-prob-box:hover {
  border-color: var(--plr-orange);
  transform: translateY(-4px);
}

.plr-prob-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.plr-prob-box-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #FFF1F2;
  color: #E11D48;
}

.plr-prob-box-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--plr-navy);
  margin: 0;
  line-height: 1.35;
}

.plr-prob-issue {
  background: #FFF5F5;
  border-inline-start: 4px solid #EF4444;
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  font-size: 13px;
  color: #7F1D1D;
  line-height: 1.65;
  margin-bottom: 12px;
}

.plr-prob-solution {
  background: #F0FDF4;
  border-inline-start: 4px solid #10B981;
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  font-size: 13px;
  color: #14532D;
  line-height: 1.65;
  flex: 1;
}

/* ==================== 8-INDUSTRY MASTER GRID ==================== */
.plr-industry-master-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.plr-ind-card {
  background: #FFFFFF;
  border: 1.5px solid var(--plr-border);
  border-radius: var(--plr-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--plr-shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.plr-ind-card:hover {
  transform: translateY(-6px);
  border-color: var(--plr-orange);
  box-shadow: var(--plr-shadow-hover);
}

.plr-ind-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.plr-ind-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--plr-bg-warm);
  border: 1.5px solid var(--plr-border-warm);
}

.plr-ind-pill {
  font-size: 11.5px;
  font-weight: 850;
  padding: 5px 12px;
  border-radius: 100px;
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.plr-ind-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--plr-navy);
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.plr-ind-desc {
  font-size: 14px;
  color: var(--plr-text-body);
  line-height: 1.75;
  margin: 0 0 20px 0;
}

.plr-ind-footer {
  margin-top: auto;
  border-top: 1px solid var(--plr-border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plr-ind-footer strong {
  font-size: 12.5px;
  color: var(--plr-orange);
  font-weight: 850;
}

/* ==================== SCENARIO SIMULATOR (ADVERTISING) ==================== */
.plr-scenario-container {
  background: #FFFFFF;
  border: 1.5px solid var(--plr-border);
  border-radius: var(--plr-radius-xl);
  padding: 36px;
  box-shadow: var(--plr-shadow-card);
}

.plr-scenario-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.plr-scenario-tab {
  background: var(--plr-bg-warm);
  border: 1.5px solid var(--plr-border-warm);
  color: var(--plr-navy);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plr-scenario-tab:hover, .plr-scenario-tab.active {
  background: var(--plr-navy);
  color: #FFFFFF;
  border-color: var(--plr-navy);
  box-shadow: 0 6px 18px rgba(11, 31, 51, 0.2);
}

.plr-scenario-display {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--plr-bg-warm);
  border-radius: var(--plr-radius-lg);
  padding: 32px;
  border: 1px solid var(--plr-border-warm);
}

/* ==================== INDICATIVE ASSESSMENT QUIZ (DIAGNOSIS) ==================== */
.plr-diag-quiz-box {
  background: #FFFFFF;
  border: 1.5px solid var(--plr-border);
  border-radius: var(--plr-radius-xl);
  padding: 36px;
  box-shadow: var(--plr-shadow-card);
}

.plr-quiz-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.plr-quiz-chip {
  background: var(--plr-bg-warm);
  border: 1.5px solid var(--plr-border-warm);
  border-radius: var(--plr-radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: start;
}

.plr-quiz-chip:hover {
  border-color: var(--plr-orange);
}

.plr-quiz-chip.selected {
  background: #FFF7ED;
  border-color: var(--plr-orange);
  box-shadow: 0 4px 14px rgba(224, 92, 42, 0.15);
}

.plr-quiz-chip-chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plr-quiz-chip.selected .plr-quiz-chip-chk {
  background: var(--plr-orange);
  border-color: var(--plr-orange);
  color: #FFFFFF;
}

/* ==================== LUXURY CTA MODULE ==================== */
.plr-luxury-cta-box {
  background: radial-gradient(circle at 90% 10%, rgba(224, 92, 42, 0.28) 0%, transparent 40%),
              linear-gradient(135deg, #0B1F33 0%, #06121E 100%);
  border: 2px solid rgba(224, 92, 42, 0.45);
  border-radius: var(--plr-radius-xl);
  padding: 64px 48px;
  color: #FFFFFF;
  box-shadow: 0 30px 80px rgba(6, 18, 30, 0.55);
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.plr-luxury-cta-box::after {
  content: "Q";
  position: absolute;
  left: 20px;
  bottom: -40px;
  font-size: 280px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
}

.plr-cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.plr-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 92, 42, 0.2);
  border: 1px solid rgba(224, 92, 42, 0.5);
  color: #FF8C5A;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 850;
  margin-bottom: 18px;
}

.plr-cta-title {
  font-size: clamp(26px, 3vw, 38px);
  color: #FFFFFF;
  margin: 0 0 16px 0;
  font-weight: 900;
  line-height: 1.3;
}

.plr-cta-desc {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.85;
  margin: 0 0 32px 0;
}

.plr-cta-action-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  border-radius: var(--plr-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* ==================== RESPONSIVE & ACCESSIBILITY ==================== */
@media (max-width: 1024px) {
  .plr-hero-grid, .plr-cta-grid, .plr-industry-master-grid, .plr-prob-matrix-grid, .plr-scenario-display {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .plr-section {
    padding: 48px 0;
  }
  .plr-luxury-cta-box {
    padding: 40px 18px;
  }
  .plr-ind-card, .plr-prob-box {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
