/* ======================================================
   PROCURE PRO – DARK / PREMIUM MODE
   Scope: body.procuro-pro
   ====================================================== */
body.procuro-pro {
  background:
    radial-gradient(1200px 600px at 20% -10%, #0f1f2d 0%, #0b1620 45%, #080f16 100%);
  color: #e6edf3;
}

/* ---------- TYPOGRAPHY ---------- */

body.procuro-pro h1,
body.procuro-pro h2,
body.procuro-pro h3 {
  color: #ffffff;
  letter-spacing: -0.01em;
}

body.procuro-pro p,
body.procuro-pro .muted {
  color: #b9c6d3;
  line-height: 1.55;
}

/* ---------- HEADER ---------- */

body.procuro-pro .procuro-header-shell {
  background: rgba(8, 15, 22, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.procuro-pro .main-nav a {
  color: #cfd8e3;
}

body.procuro-pro .main-nav a:hover {
  color: #ffffff;
}

body.procuro-pro .main-nav a.active {
  color: #ffffff;
  position: relative;
}

body.procuro-pro .main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1fb6ff, #3ddc97);
  border-radius: 3px;
}

/* ---------- PREMIUM BADGE ---------- */

body.procuro-pro .premium-badge {
  background: linear-gradient(135deg, #1fb6ff, #3ddc97);
  color: #04121c;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: 999px;
  margin-left: 6px;
  letter-spacing: 0.03em;
}

/* ---------- USER TILE ---------- */

body.procuro-pro .user-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e6edf3;
}

body.procuro-pro .user-dropdown {
  background: #0b1620;
  border: 1px solid rgba(255,255,255,0.08);
}

body.procuro-pro .user-dropdown a,
body.procuro-pro .user-dropdown button {
  color: #e6edf3;
}

body.procuro-pro .user-dropdown a:hover,
body.procuro-pro .user-dropdown button:hover {
  background: rgba(255,255,255,0.06);
}

/* ---------- CONTENT CARDS ---------- */

body.procuro-pro .procuro-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
  border-radius: 18px;
}

/* ---------- TEXT ---------- */

body.procuro-pro h1,
body.procuro-pro h2,
body.procuro-pro h3 {
  color: #ffffff;
  letter-spacing: -0.01em;
}

body.procuro-pro p,
body.procuro-pro .muted {
  color: #b9c6d3;
}

/* ---------- FOOTER ---------- */

body.procuro-pro footer {
  background: rgba(8, 15, 22, 0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
}

body.procuro-pro footer a {
  color: #9fb3c8;
}

body.procuro-pro footer a:hover {
  color: #ffffff;
}

body.procuro-pro .footer-copy {
  color: #7f93a8;
}


/* ======================================================
   PROCURO PRO – PAGE STYLES
   ====================================================== */

/* ── Tokeny PRO ── */
:root {
  --pro-blue:    #1fb6ff;
  --pro-green:   #3ddc97;
  --pro-grad:    linear-gradient(135deg, #1fb6ff, #3ddc97);
  --pro-surface: rgba(255,255,255,0.05);
  --pro-border:  rgba(255,255,255,0.08);
  --pro-text:    #e6edf3;
  --pro-muted:   #7f93a8;
}

body.procuro-pro { min-height: 100vh; }

/* ── Gradient text ── */
.grad-text {
  background: var(--pro-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────── HERO ─────────────────── */
.pro-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

.pro-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  translate: -50% 0;
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse,
    rgba(31,182,255,.14) 0%,
    rgba(61,220,151,.08) 45%,
    transparent 70%);
  pointer-events: none;
}

.pro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(31,182,255,.35);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pro-blue);
  margin-bottom: 32px;
}

.pro-hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pro-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.pro-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 auto 24px;
  max-width: 780px;
}

.pro-hero-desc {
  font-size: 1.1rem;
  color: var(--pro-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.pro-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PRO buttons ── */
.procuro-btn.pro-primary {
  background: var(--pro-grad);
  color: #04121c;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(31,182,255,.3);
}
.procuro-btn.pro-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(31,182,255,.45);
}
.procuro-btn.pro-outline {
  background: transparent;
  color: var(--pro-text);
  border: 1.5px solid var(--pro-border);
}
.procuro-btn.pro-outline:hover {
  background: var(--pro-surface);
  border-color: rgba(255,255,255,.25);
}

/* ─────────────── SCORE MOCKUP ─────────────── */
.score-section {
  padding: 80px 0;
  position: relative;
}

.score-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(31,182,255,.04) 50%,
    transparent 100%);
  pointer-events: none;
}

.score-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.score-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 16px;
}

.score-copy p {
  color: var(--pro-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 32px;
}

.score-factors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.score-factor {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--pro-text);
}

.score-factor-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}

.score-factor-bar {
  height: 100%;
  background: var(--pro-grad);
  border-radius: 4px;
}

.score-factor-label {
  min-width: 160px;
  font-weight: 500;
}

.score-factor-val {
  min-width: 36px;
  text-align: right;
  font-weight: 700;
  color: var(--pro-blue);
  font-size: 0.85rem;
}

/* ── Tender card mock ── */
.tender-mock {
  background: linear-gradient(180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.03));
  border: 1px solid var(--pro-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
  position: relative;
}

.tender-mock-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.tender-mock-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pro-blue);
  background: rgba(31,182,255,.12);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── Score ring ── */
.score-ring {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.score-ring svg {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.score-ring-bg   { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 6; }
.score-ring-fill {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 28;
}

.score-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.score-ring-label small {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--pro-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tender-mock-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.35;
}

.tender-mock-buyer {
  font-size: 0.82rem;
  color: var(--pro-muted);
  margin: 0 0 20px;
}

.tender-mock-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--pro-border);
  color: var(--pro-text);
}

.pill.match { background: rgba(61,220,151,.12); border-color: rgba(61,220,151,.3); color: #3ddc97; }

.tender-mock-score-breakdown {
  border-top: 1px solid var(--pro-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--pro-muted);
}

.breakdown-bar-wrap {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  overflow: hidden;
}

.breakdown-bar        { height: 100%; border-radius: 3px; }
.breakdown-bar.high   { background: #3ddc97; }
.breakdown-bar.mid    { background: #1fb6ff; }
.breakdown-bar.low    { background: #7f93a8; }

/* ─────────────── FEATURE GRID ─────────────── */
.pro-features-section {
  padding: 80px 0;
}

.pro-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pro-blue);
  margin-bottom: 12px;
}

.pro-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pro-feature-card {
  padding: 28px;
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  border-radius: 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pro-feature-card:hover {
  border-color: rgba(31,182,255,.25);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transform: translateY(-3px);
}

.pro-feature-card.featured {
  border-color: rgba(31,182,255,.3);
  background: linear-gradient(160deg,
    rgba(31,182,255,.1),
    rgba(61,220,151,.06));
}

.pro-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.pro-feature-card.featured .pro-feature-icon {
  background: linear-gradient(135deg, rgba(31,182,255,.2), rgba(61,220,151,.15));
  border-color: rgba(31,182,255,.3);
}

.pro-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.pro-feature-card p {
  font-size: 0.88rem;
  color: var(--pro-muted);
  line-height: 1.65;
  margin: 0;
}

.pro-soon-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pro-green);
  background: rgba(61,220,151,.1);
  border: 1px solid rgba(61,220,151,.2);
  padding: 3px 9px;
  border-radius: 999px;
}

/* ─────────────── HOW IT WORKS ─────────────── */
.how-section {
  padding: 80px 0;
  border-top: 1px solid var(--pro-border);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(31,182,255,.3), rgba(61,220,151,.3), transparent);
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pro-grad);
  color: #04121c;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(31,182,255,.3);
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--pro-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────── CTA BANNER ─────────────── */
.pro-cta-section {
  padding: 80px 0 100px;
}

.pro-cta-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(31,182,255,.12),
    rgba(61,220,151,.08));
  border: 1px solid rgba(31,182,255,.2);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.pro-cta-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  translate: -50% 0;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse,
    rgba(31,182,255,.12) 0%,
    transparent 70%);
  pointer-events: none;
}

.pro-cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 16px;
}

.pro-cta-card p {
  color: var(--pro-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.7;
}

.pro-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────── FEATURES HEADING ─────────────── */
.pro-features-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.pro-features-heading p {
  color: var(--pro-muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
}

.how-intro {
  text-align: center;
}

.how-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.how-intro p {
  color: var(--pro-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .score-layout        { grid-template-columns: 1fr; gap: 48px; }
  .pro-features-grid   { grid-template-columns: repeat(2, 1fr); }
  .how-steps           { grid-template-columns: 1fr; }
  .how-steps::before   { display: none; }
}

@media (max-width: 600px) {
  .pro-features-grid   { grid-template-columns: 1fr; }
  .pro-cta-card        { padding: 48px 24px; }
  .pro-hero            { padding: 72px 0 64px; }
  .pro-hero-actions    { flex-direction: column; align-items: center; }
  .pro-hero-actions .procuro-btn { width: 100%; max-width: 320px; }
  .pro-cta-actions     { flex-direction: column; align-items: center; }
  .pro-cta-actions .procuro-btn { width: 100%; max-width: 320px; }
  .score-section       { padding: 48px 0; }
  .pro-features-section { padding: 48px 0; }
  .how-section         { padding: 48px 0; }
  .how-steps           { gap: 24px; }
}

/* ── Breakdown rating labels ── */
.breakdown-label {
  font-weight: 700;
  font-size: 0.78rem;
}
.breakdown-label.high { color: #3ddc97; }
.breakdown-label.mid  { color: #1fb6ff; }
.breakdown-label.low  { color: #7f93a8; }

/* ── CTA badge spacing ── */
.pro-hero-badge.cta-badge { margin-bottom: 24px; }
